Skip to content

Commit bad0fd1

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into rolyon-rbac-custom-roles-format
2 parents 0a85278 + 1af1ba6 commit bad0fd1

File tree

2 files changed

+14
-21
lines changed

2 files changed

+14
-21
lines changed

articles/machine-learning/studio/interpret-model-results.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@ ms.topic: conceptual
99

1010
author: likebupt
1111
ms.author: keli19
12-
ms.custom: previous-author=heatherbshapiro, previous-ms.author=hshapiro
1312
ms.date: 11/29/2017
1413
---
1514
# Interpret model results in Azure Machine Learning Studio (classic)
1615

1716
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
1817
This topic explains how to visualize and interpret prediction results in Azure Machine Learning Studio (classic). After you have trained a model and done predictions on top of it ("scored the model"), you need to understand and interpret the prediction result.
1918

20-
21-
2219
There are four major kinds of machine learning models in Azure Machine Learning Studio (classic):
2320

2421
* Classification
@@ -32,11 +29,11 @@ The modules used for prediction on top of these models are:
3229
* [Assign to Clusters][assign-to-clusters] module for clustering
3330
* [Score Matchbox Recommender][score-matchbox-recommender] for recommendation systems
3431

35-
This document explains how to interpret prediction results for each of these modules. For an overview of these modules, see [How to choose parameters to optimize your algorithms in Azure Machine Learning Studio (classic)](algorithm-parameters-optimize.md).
32+
Learn how to [choose parameters to optimize your algorithms in ML Studio (classic)](algorithm-parameters-optimize.md).
3633

37-
This topic addresses prediction interpretation but not model evaluation. For more information about how to evaluate your model, see [How to evaluate model performance in Azure Machine Learning Studio (classic)](evaluate-model-performance.md).
34+
To learn how to evaluate your models, see [How to evaluate model performance](evaluate-model-performance.md).
3835

39-
If you are new to Azure Machine Learning Studio (classic) and need help creating a simple experiment to get started, see [Create a simple experiment in Azure Machine Learning Studio (classic)](create-experiment.md).
36+
If you are new to ML Studio (classic), [learn how to create a simple experiment](create-experiment.md).
4037

4138
## Classification
4239
There are two subcategories of classification problems:

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)