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/rtvs/check-for-update.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,4 +26,4 @@ For Visual Studio 2015, the most recent installer is available from [aka.ms/rtvs
26
26
27
27
See [Installation](installing-r-tools-for-visual-studio.md) for Visual Studio and Windows requirements.
28
28
29
-
For updates on Microsoft R Open and Microsoft R Server, see: [Microsoft R products.](http://aka.ms/rtvs-msft-r)
29
+
For updates on Microsoft R Open and Microsoft Machine Learning Server (formerly Microsoft R Server), see: [Microsoft R products.](http://aka.ms/rtvs-msft-r)
Copy file name to clipboardExpand all lines: docs/rtvs/faq.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -84,9 +84,9 @@ Q. **What is Remote Services in Visual Studio?**
84
84
85
85
A. Remote R Services for Visual Studio allows you to set up Windows or Linux machine and then connect to it from RTVS. See [Set up remote workspaces](setting-up-remote-r-workspaces.md).
86
86
87
-
Q. **Can RTVS connect to Microsoft R Server?**
87
+
Q. **Can RTVS connect to Microsoft Machine Learning Server?**
88
88
89
-
A. No, because Microsoft R Server is a different technology and does not provide same connectivity mechanism as required by RTVS.
89
+
A. No, because Microsoft ML Server is a different technology and does not provide same connectivity mechanism as required by RTVS.
90
90
91
91
Q. **Can RTVS connect to a VM created using the Data Science VM image on Azure?**
Copy file name to clipboardExpand all lines: docs/rtvs/getting-started-samples.md
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@ ms.workload:
14
14
15
15
# R Tools for Visual Studio sample projects
16
16
17
-
This collection of samples gets you started on R, R Tools for Visual Studio (RTVS), and Microsoft R Server:
17
+
This collection of samples gets you started on R, R Tools for Visual Studio (RTVS), and Microsoft Machine Learning Server:
18
18
19
19
1. Download the [samples zip file](https://github.com/Microsoft/RTVS-docs/archive/master.zip) and extract to a folder of your choice.
20
20
1. Open `examples/Examples.sln` to see two folders in the project:
21
21
22
22
-*A First Look at R* gives a gentle introduction for newcomers to R.
23
-
-*MRS and Machine Learning* gives examples of how to use R and Microsoft R Server for machine learning.
23
+
-*MRS and Machine Learning* gives examples of how to use R and Microsoft Machine Learning Server for machine learning.
24
24
25
25
## A First Look at R
26
26
@@ -34,52 +34,52 @@ This sample provides an in-depth introduction to R through the extensive comment
34
34
35
35

36
36
37
-
## Microsoft R Server and Machine Learning
37
+
## Microsoft Machine Learning Server and Machine Learning
38
38
39
-
This collection of examples shows how to use R to create machine learning models and to take advantage of [Microsoft R Server (MRS)](http://aka.ms/rtvs-msft-r). Install MRS to run scripts with `MRS` in the title and where noted.
39
+
This collection of examples shows how to use R to create machine learning models and to take advantage of [Microsoft Machine Learning Server](/machine-learning-server/what-is-machine-learning-server).
40
40
41
41
As with all examples, open the file, place the cursor at the top, and then step through the code line by line with **Ctrl**+**Enter**. The markdown files in each folder also contain additional details.
42
42
43
43
-`Benchmarks` runs a number of intensive, parallel linear algebra computations to show the performance gains that are possible through the use of Microsoft R Open and the Intel Math Kernel Library (MKL). With simulated data, the benchmarks specifically compare matrix calculations on one thread versus two.
-`Bike_Rental_Estimation_with_MRS` creates a demand prediction model for bike rentals based on a historical data set, using Microsoft R Server.
47
+
-`Bike_Rental_Estimation_with_MRS` creates a demand prediction model for bike rentals based on a historical data set, using Microsoft ML Server.
48
48
49
49
-`Data_Exploration` contains three scripts:
50
50
51
51
-`Import Data from URL.R` shows how to load a URL-identified data file into R.
52
-
-`Import Data from URL to xdf.R` shows how to load a URL-identified data file into Microsoft R Server as an xdf. (Requires MRS.)
52
+
-`Import Data from URL to xdf.R` shows how to load a URL-identified data file into Microsoft ML Server as an xdf.
53
53
-`Using ggplot2.R` is an extension of the `A First Look at R/2-Introduction to ggplot2.R` sample, giving a more extensive tour of ggplot2's functionality including interactive 3D plotting.
54
54
55
55

56
56
57
57
-`Datasets` contains three *.csv* files used by other samples
58
58
-`Flight_Delays_Prediction_with_R` and `Flight_Delays_Prediction_with_MRS` shows how to predict flight delays using R, machine learning, and historical on-time performance and weather data.
59
-
-`Machine learning` contains three samples for learning to predict flight delays, housing prices, and bike rentals. Together, these samples demonstrate the application of R and MRS to real-world problems. They also show you how to use several popular machine learning models and deploy them as an Azure Web Service using an [Azure Machine Learning](https://azure.microsoft.com/services/machine-learning/) workspace.
59
+
-`Machine learning` contains three samples for learning to predict flight delays, housing prices, and bike rentals. Together, these samples demonstrate the application of R and Microsoft ML Server to real-world problems. They also show you how to use several popular machine learning models and deploy them as an Azure Web Service using an [Azure Machine Learning](https://azure.microsoft.com/services/machine-learning/) workspace.
60
60
61
-
-`R_MRO_MRS_Comparison` is a six-part comparison that shows the similarities and differences of R, Microsoft R Open and Microsoft R Server with commands, syntax, constructs, and performance.
61
+
-`R_MRO_MRS_Comparison` is a six-part comparison that shows the similarities and differences of R, Microsoft R Open and Microsoft ML Server with commands, syntax, constructs, and performance.
62
62
63
-
## What's special about Microsoft R Open and Microsoft R Server?
63
+
## What's special about Microsoft R Open and Microsoft ML Server?
64
64
65
65
[Microsoft R Open](http://aka.ms/rtvs-r-open), Microsoft's distribution of R, is different from [CRAN R](https://cran.r-project.org/) in two important ways:
66
66
67
67
1.[Better computation performance](https://mran.revolutionanalytics.com/rro/#intelmkl1) when used with the [Intel Math Kernel Libraries](https://software.intel.com/intel-mkl). The libraries are available as a free download from Microsoft for use with Microsoft R Open.
68
68
69
69
1.[Reproducible R Toolkit](https://mran.revolutionanalytics.com/rro/#reproducibility) ensures that the libraries you used to build your R program are always available to others that want to reproduce your work.
70
70
71
-
[Microsoft R Server](http://aka.ms/rtvs-msft-r) is an extension of R that allows you to handle more data and handle it faster. It gives R two powerful capabilities:
71
+
[Microsoft ML Server (MLS)](/machine-learning-server/what-is-machine-learning-server) is an extension of R that allows you to handle more data and handle it faster. It gives R two powerful capabilities:
72
72
73
-
1. Larger data sets without RAM limitations. MRS can process out-of-memory data from a variety of sources including Hadoop clusters, databases, and data warehouses.
73
+
1. Larger data sets without RAM limitations. ML Server can process out-of-memory data from a variety of sources including Hadoop clusters, databases, and data warehouses.
74
74
75
-
1. Parallel, multi-core processing. MRS can efficiently distribute computation across all the computational resources it has available. On your personal workstation or a remote cluster, MRS gets an answer faster.
75
+
1. Parallel, multi-core processing. MLS can efficiently distribute computation across all the computational resources it has available. On your personal workstation or a remote cluster, MLS gets an answer faster.
76
76
77
-
The following comparison shows that MRS and MRO with MKL have significantly better computation performance related to certain matrix calculation than R and MRO without MKL. Simulated data is used in this calculation:
77
+
The following comparison shows that MLS and MRO with MKL have significantly better computation performance related to certain matrix calculation than R and MRO without MKL. Simulated data is used in this calculation:
78
78
79
-

79
+

80
80
81
-
For a technical comparison of R with MRO and MRS, check out [Lixun Zhang's detailed discussion](http://htmlpreview.github.io/?https://github.com/lixzhang/R-MRO-MRS/blob/master/Introduction_to_MRO_and_MRS.html) on the topic.
81
+
For a technical comparison of R with MRO and MLS, check out [Lixun Zhang's detailed discussion](http://htmlpreview.github.io/?https://github.com/lixzhang/R-MRO-MRS/blob/master/Introduction_to_MRO_and_MRS.html) on the topic.
82
82
83
-
The following figure then compares elapsed time in seconds used in building Logistic Regression models to predict flight delays greater than 15 minutes. Elapsed time used in CRAN R increases dramatically when increasing a small number of rows, while MRS increases only by approximately two times. For details of this benchmark, check out the *Benchmarks/rxGlm_benchmark.R* example.
83
+
The following figure then compares elapsed time in seconds used in building Logistic Regression models to predict flight delays greater than 15 minutes. Elapsed time used in CRAN R increases dramatically when increasing a small number of rows, while MLS increases only by approximately two times. For details of this benchmark, check out the *Benchmarks/rxGlm_benchmark.R* example.
0 commit comments