You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/machine-learning/install/sql-machine-learning-standalone-windows-install.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -217,7 +217,7 @@ On disconnected servers, extra steps are required. You must obtain the cumulativ
217
217
218
218
## Development tools
219
219
220
-
A development IDE is not installed as part of setup. For more information about configuring a development environment, see [Set up R tools](../r/set-up-a-data-science-client.md) and [Set up Python tools](../python/setup-python-client-tools-sql.md).
220
+
A development IDE is not installed as part of setup. For more information about configuring a development environment, see [Set up R tools](../r/set-up-data-science-client.md) and [Set up Python tools](../python/setup-python-client-tools-sql.md).
Copy file name to clipboardExpand all lines: docs/machine-learning/r/ref-r-microsoftml.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ The **MicrosoftML** package is based on R 3.5.2 and available only when you inst
24
24
25
25
+[SQL Server 2016 R Services](../install/sql-r-services-windows-install.md)
26
26
+[SQL Server Machine Learning Services](../install/sql-machine-learning-services-windows-install.md)
27
-
+[Microsoft R client](set-up-a-data-science-client.md)
27
+
+[Microsoft R client](set-up-data-science-client.md)
28
28
29
29
> [!NOTE]
30
30
> Full product release versions are Windows-only in SQL Server 2017. Both Windows and Linux are supported for **MicrosoftML** in [SQL Server 2019](../../linux/sql-server-linux-setup-machine-learning.md).
Copy file name to clipboardExpand all lines: docs/machine-learning/r/ref-r-revoscaler.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ The **RevoScaleR** package is based on R 3.4.3 and available only when you insta
31
31
32
32
+[SQL Server 2016 R Services](../install/sql-r-services-windows-install.md)
33
33
+[SQL Server Machine Learning Services](../install/sql-machine-learning-services-windows-install.md)
34
-
+[Microsoft R client](set-up-a-data-science-client.md)
34
+
+[Microsoft R client](set-up-data-science-client.md)
35
35
36
36
> [!NOTE]
37
37
> Full product release versions are Windows-only in SQL Server 2017. Both Windows and Linux are supported for **RevoScaleR** in [SQL Server 2019](../../linux/sql-server-linux-setup-machine-learning.md).
Copy file name to clipboardExpand all lines: docs/machine-learning/r/sql-server-r-services.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ There are two ways to execute R scripts in R Services:
51
51
52
52
+ The most common way is to use the T-SQL stored procedure [sp_execute_external_script](../../relational-databases/system-stored-procedures/sp-execute-external-script-transact-sql.md).
53
53
54
-
+ You can also use your preferred R client and write scripts that push the execution (referred to as a *remote compute context*) to a remote SQL Server. See how to [set up a data science client R development](../r/set-up-a-data-science-client.md) for more information.
54
+
+ You can also use your preferred R client and write scripts that push the execution (referred to as a *remote compute context*) to a remote SQL Server. See how to [set up a data science client R development](../r/set-up-data-science-client.md) for more information.
55
55
56
56
<aname="version"></a>
57
57
@@ -79,7 +79,7 @@ You can use open-source packages and frameworks, in addition to Microsoft's ente
79
79
|[RevoScaleR](../r/ref-r-revoscaler.md)| The primary package for scalable R. Data transformations and manipulation, statistical summarization, visualization, and many forms of modeling. Additionally, functions in this package automatically distribute workloads across available cores for parallel processing. |
80
80
|[MicrosoftML (R)](../r/ref-r-microsoftml.md)| Adds machine learning algorithms to create custom models for text analysis, image analysis, and sentiment analysis. |
81
81
|[olapR](../r/ref-r-olapr.md)| R functions used for MDX queries against a SQL Server Analysis Services OLAP cube. |
82
-
|[sqlrutils](../r/ref-r-sqlrutils.md)| A mechanism to use R scripts in a T-SQL stored procedure, register that stored procedure with a database, and run the stored procedure from an [R development environment](../r/set-up-a-data-science-client.md). |
82
+
|[sqlrutils](../r/ref-r-sqlrutils.md)| A mechanism to use R scripts in a T-SQL stored procedure, register that stored procedure with a database, and run the stored procedure from an [R development environment](../r/set-up-data-science-client.md). |
83
83
|[Microsoft R Open](https://mran.microsoft.com/rro)| Microsoft R Open (MRO) is the enhanced distribution of R from Microsoft. It is a complete open-source platform for statistical analysis and data science. It is based on and 100% compatible with R, and includes additional capabilities for improved performance and reproducibility. |
84
84
85
85
## How do I get started with R Services?
@@ -89,7 +89,7 @@ You can use open-source packages and frameworks, in addition to Microsoft's ente
89
89
1. Configure your development tools. You can use:
90
90
91
91
+[Azure Data Studio](../../azure-data-studio/what-is-azure-data-studio.md) or [SQL Server Management Studio (SSMS)](../../ssms/sql-server-management-studio-ssms.md) to use T-SQL and the stored procedure [sp_execute_external_script](../../relational-databases/system-stored-procedures/sp-execute-external-script-transact-sql.md) to execute your R script.
92
-
+ R on your own development laptop or workstation to execute scripts. You can either pull data down locally or push the execution remotely to SQL Server with [RevoScaleR](../r/ref-r-revoscaler.md). See how to [set up a data science client R development](../r/set-up-a-data-science-client.md) for more information.
92
+
+ R on your own development laptop or workstation to execute scripts. You can either pull data down locally or push the execution remotely to SQL Server with [RevoScaleR](../r/ref-r-revoscaler.md). See how to [set up a data science client R development](../r/set-up-data-science-client.md) for more information.
93
93
94
94
1. Write your first R script
95
95
@@ -101,4 +101,4 @@ You can use open-source packages and frameworks, in addition to Microsoft's ente
101
101
## Next steps
102
102
103
103
+[Install SQL Server 2016 R Services](../install/sql-r-services-windows-install.md)
104
-
+[Set up a data science client for R development](../r/set-up-a-data-science-client.md)
104
+
+[Set up a data science client for R development](../r/set-up-data-science-client.md)
Copy file name to clipboardExpand all lines: docs/machine-learning/sql-server-machine-learning-services.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ You can use open-source packages and frameworks, in addition to Microsoft's ente
95
95
| R |[RevoScaleR](r/ref-r-revoscaler.md)| The primary package for scalable R. Data transformations and manipulation, statistical summarization, visualization, and many forms of modeling. Additionally, functions in this package automatically distribute workloads across available cores for parallel processing. |
96
96
| R |[MicrosoftML (R)](r/ref-r-microsoftml.md)| Adds machine learning algorithms to create custom models for text analysis, image analysis, and sentiment analysis. |
97
97
| R |[olapR](r/ref-r-olapr.md)| R functions used for MDX queries against a SQL Server Analysis Services OLAP cube. |
98
-
| R |[sqlrutils](r/ref-r-sqlrutils.md)| A mechanism to use R scripts in a T-SQL stored procedure, register that stored procedure with a database, and run the stored procedure from an [R development environment](r/set-up-a-data-science-client.md). |
98
+
| R |[sqlrutils](r/ref-r-sqlrutils.md)| A mechanism to use R scripts in a T-SQL stored procedure, register that stored procedure with a database, and run the stored procedure from an [R development environment](r/set-up-data-science-client.md). |
99
99
| R |[Microsoft R Open](https://mran.microsoft.com/rro)| Microsoft R Open (MRO) is the enhanced distribution of R from Microsoft. It is a complete open-source platform for statistical analysis and data science. It is based on and 100% compatible with R, and includes additional capabilities for improved performance and reproducibility. |
100
100
101
101
For more information on which packages are installed with Machine Learning Services and how to install other packages, see:
Copy file name to clipboardExpand all lines: docs/machine-learning/tutorials/deepdive-create-sql-server-data-objects-using-rxsqlserverdata.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ From R, connect to SQL Server and use **RevoScaleR** functions to perform the fo
26
26
27
27
Sample data is simulated credit card fraud data (the ccFraud dataset), partitioned into training and scoring datasets. The data file is included in **RevoScaleR**.
28
28
29
-
Use an R IDE or **Rgui** to complete these taks. Be sure to use the R executables found at this location: C:\Program Files\Microsoft\R Client\R_SERVER\bin\x64 (either Rgui.exe if you are using that tool, or an R IDE pointing to C:\Program Files\Microsoft\R Client\R_SERVER). Having an [R client workstation](../r/set-up-a-data-science-client.md) with these executables is considered a prerequisite of this tutorial.
29
+
Use an R IDE or **Rgui** to complete these taks. Be sure to use the R executables found at this location: C:\Program Files\Microsoft\R Client\R_SERVER\bin\x64 (either Rgui.exe if you are using that tool, or an R IDE pointing to C:\Program Files\Microsoft\R Client\R_SERVER). Having an [R client workstation](../r/set-up-data-science-client.md) with these executables is considered a prerequisite of this tutorial.
0 commit comments