Skip to content

Commit f628625

Browse files
authored
Update r-get-started.md
1 parent 9a96456 commit f628625

File tree

1 file changed

+11
-15
lines changed

1 file changed

+11
-15
lines changed

articles/machine-learning/studio/r-get-started.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,25 @@ ms.date: 03/01/2019
1616
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
1717

1818
<!-- Stephen F Elston, Ph.D. -->
19-
This tutorial helps you start extending Azure Machine Learning Studio (classic) by using the R programming language. Follow this R programming tutorial to create, test and execute R code within Studio (classic). As you work through tutorial, you will create a complete forecasting solution by using the R language in Studio (classic).
19+
In this tutorial, you learn how to use ML Studio (classic) to create, test and execute R code. In the end, you will have a complete forecasting solution.
2020

21-
Azure Machine Learning Studio (classic) contains many powerful machine learning and data manipulation modules. The powerful R language has been described as the lingua franca of analytics. Happily, analytics and data manipulation in Studio (classic) can be extended by using R. This combination provides the scalability and ease of deployment of Studio (classic) with the flexibility and deep analytics of R.
21+
> [!div class="checklist"]
22+
> * Create code for data cleaning and transformation.
23+
> * Analyze the correlations between several of the variables in our dataset.
24+
> * Create a seasonal time series forecasting model for milk production.
2225
23-
### Forecasting and the dataset
2426

25-
Forecasting is a widely employed and quite useful analytical method. Common uses range from predicting sales of seasonal items, determining optimal inventory levels, to predicting macroeconomic variables. Forecasting is typically done with time series models.
27+
Azure Machine Learning Studio (classic) contains many powerful machine learning and data manipulation modules. And with the R programming language, this combination provides the scalability and ease of deployment of Studio (classic) with the flexibility and deep analytics of R.
2628

27-
Time series data is data in which the values have a time index. The time index can be regular, e.g. every month or every minute, or irregular. A time series model is based on time series data. The R programming language contains a flexible framework and extensive analytics for time series data.
29+
Forecasting is a widely employed and quite useful analytical method. Common uses range from predicting sales of seasonal items, determining optimal inventory levels, to predicting macroeconomic variables. Forecasting is typically done with time series models. Time series data is data in which the values have a time index. The time index can be regular, e.g. every month or every minute, or irregular. A time series model is based on time series data. The R programming language contains a flexible framework and extensive analytics for time series data.
2830

29-
In this guide we will be working with California dairy production and pricing data. This data includes monthly information on the production of several dairy products and the price of milk fat, a benchmark commodity.
31+
## Get the data
3032

31-
The data used in this article, along with R scripts, can be downloaded from [MachineLearningSamples-Notebooks/studio-samples](https://github.com/Azure-Samples/MachineLearningSamples-Notebooks/tree/master/studio-samples). Data in the file `cadairydata.csv` was originally synthesized from information available from the University of Wisconsin at [https://dairymarkets.com](https://dairymarkets.com).
33+
In this tutorial, you use the California dairy production and pricing data, which includes monthly information on the production of several dairy products and the price of milk fat, a benchmark commodity.
3234

33-
### Organization
35+
The data used in this article, along with R scripts, can be downloaded from [MachineLearningSamples-Notebooks/studio-samples](https://github.com/Azure-Samples/MachineLearningSamples-Notebooks/tree/master/studio-samples). Data in the file `cadairydata.csv` was originally synthesized from information available from the University of Wisconsin at [https://dairymarkets.com](https://dairymarkets.com).
3436

35-
We will progress through several steps as you learn how to create, test and execute analytics and data manipulation R code in the Azure Machine Learning Studio (classic) environment.
3637

37-
* First we will explore the basics of using the R language in the Azure Machine Learning Studio (classic) environment.
38-
* Then we progress to discussing various aspects of I/O for data, R code and graphics in the Azure Machine Learning Studio (classic) environment.
39-
* We will then construct the first part of our forecasting solution by creating code for data cleaning and transformation.
40-
* With our data prepared we will perform an analysis of the correlations between several of the variables in our dataset.
41-
* Finally, we will create a seasonal time series forecasting model for milk production.
4238

4339
## <a id="mlstudio"></a>Interact with R language in Machine Learning Studio (classic)
4440

@@ -138,7 +134,7 @@ In this section we will discuss how you get data into and out of the [Execute R
138134

139135
The complete code for this section is in [MachineLearningSamples-Notebooks/studio-samples](https://github.com/Azure-Samples/MachineLearningSamples-Notebooks/tree/master/studio-samples).
140136

141-
### Load and check data in Machine Learning Studio (classic)
137+
### Load and check data
142138

143139
#### <a id="loading"></a>Load the dataset
144140

0 commit comments

Comments
 (0)