Skip to content

Commit 14c8b3f

Browse files
authored
Merge pull request #78318 from nibaccam/dprep-updates
Dprep tutorial run
2 parents c9f47d0 + f006462 commit 14c8b3f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/service/tutorial-data-prep.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: seodec18
1717

1818
# Tutorial: Prepare data for regression modeling
1919

20-
In this tutorial, you learn how to prepare data for regression modeling by using the [data prep package for Azure Machine Learning](https://aka.ms/data-prep-sdk). You run various transformations to filter and combine two different NYC taxi data sets.
20+
In this tutorial, you learn how to prepare data for regression modeling by using the [data prep package](https://aka.ms/data-prep-sdk) from the [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py). You run various transformations to filter and combine two different NYC taxi data sets.
2121

2222
This tutorial is **part one of a two-part tutorial series**. After you complete the tutorial series, you can predict the cost of a taxi trip by training a model on data features. These features include the pickup day and time, the number of passengers, and the pickup location.
2323

@@ -35,15 +35,15 @@ In this tutorial, you:
3535
Skip to [Set up your development environment](#start) to read through the notebook steps, or use the instructions below to get the notebook and run it on Azure Notebooks or your own notebook server. To run the notebook you will need:
3636

3737
* A Python 3.6 notebook server with the following installed:
38-
* azureml-dataprep package from the Azure Machine Learning SDK for Python
38+
* The `azureml-dataprep` package from the Azure Machine Learning SDK
3939
* The tutorial notebook
4040

4141
* Use a [cloud notebook server in your workspace](#azure)
4242
* Use [your own notebook server](#server)
4343

4444
### <a name="azure"></a>Use a cloud notebook server in your workspace
4545

46-
It's easy to get started with your own cloud-based notebook server. The [Azure Machine Learning SDK for Python](https://aka.ms/aml-sdk) is already installed and configured for you once you create this cloud resource.
46+
It's easy to get started with your own cloud-based notebook server. The Azure Machine Learning SDK for Python is already installed and configured for you once you create this cloud resource.
4747

4848
[!INCLUDE [aml-azure-notebooks](../../../includes/aml-azure-notebooks.md)]
4949

@@ -53,8 +53,8 @@ It's easy to get started with your own cloud-based notebook server. The [Azure M
5353

5454
Use these steps to create a local Jupyter Notebook server on your computer. After you complete the steps, run the **tutorials/regression-part1-data-prep.ipynb** notebook.
5555

56-
1. Complete the installation steps in [Azure Machine Learning Python quickstart](setup-create-workspace.md#sdk) to create a Miniconda environment. Feel free to skip the **Create a workspace** section if you wish, but you will need it for [part 2](tutorial-auto-train-models.md) of this tutorial series.
57-
1. Install the azureml-dataprep in your environment using `pip install azureml-dataprep`.
56+
1. Complete the installation steps in [Azure Machine Learning Python quickstart](setup-create-workspace.md#sdk) to create a Miniconda environment and install the SDK. Feel free to skip the **Create a workspace** section if you wish, but you will need it for [part 2](tutorial-auto-train-models.md) of this tutorial series.
57+
1. The `azureml-dataprep` package is automatically installed when you install the SDK.
5858
1. Clone [the GitHub repository](https://aka.ms/aml-notebooks).
5959

6060
```
@@ -82,7 +82,7 @@ Use the following to install necessary packages if you don't already have them.
8282
pip install "azureml-dataprep[pandas]>=1.1.0,<1.2.0"
8383
```
8484

85-
Import the SDK.
85+
Import the package.
8686

8787
```python
8888
import azureml.dataprep as dprep

0 commit comments

Comments
 (0)