Metadata-Version: 2.1
Name: azureml-dataprep
Version: 1.9.2
Summary: Azure ML Data Preparation SDK
Home-page: http://aka.ms/data-prep-sdk
Author: Microsoft Corporation
Author-email: msdataprep@microsoft.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
Requires-Dist: dotnetcore2 (>=2.1.14)
Requires-Dist: azureml-dataprep-native (<15.0.0,>=14.2.1)
Requires-Dist: cloudpickle (>=1.1.0)
Requires-Dist: azure-identity (<1.3.0,>=1.2.0)
Provides-Extra: fuse
Requires-Dist: fusepy (>=3.0.1) ; extra == 'fuse'
Provides-Extra: pandas
Requires-Dist: numpy (>=1.14.0) ; extra == 'pandas'
Requires-Dist: pandas (>=0.23.4) ; extra == 'pandas'
Requires-Dist: pyarrow (>=0.15.*) ; extra == 'pandas'
Provides-Extra: parquet
Requires-Dist: pyarrow (>=0.15.*) ; extra == 'parquet'
Provides-Extra: pyspark
Requires-Dist: pyspark (==2.3.0) ; extra == 'pyspark'
Provides-Extra: scipy
Requires-Dist: scipy (>=1.1.0) ; extra == 'scipy'

# Azure Machine Learning Data Prep SDK for Python

The Azure Machine Learning Data Prep SDK is used to load, transform, and write data for machine learning workflows. You can interact with the SDK in any Python environment, including Jupyter Notebooks or your favorite Python IDE.

This python SDK includes the following functionality to help prepare your data for modeling:
- [Intelligent time-saving transformations](https://docs.microsoft.com/en-us/python/api/overview/azure/dataprep/intro?view=azure-dataprep-py#intelligent) such as:
  - [Derived column by example](https://docs.microsoft.com/en-us/python/api/azureml-dataprep/azureml.dataprep.api.builders.derivecolumnbyexamplebuilder?view=azure-dataprep-py)
  - [Automatic split columns by example](https://docs.microsoft.com/en-us/python/api/azureml-dataprep/azureml.dataprep.api.builders.splitcolumnbyexamplebuilder?view=azure-dataprep-py)
  - [Impute missing values](https://docs.microsoft.com/en-us/python/api/azureml-dataprep/azureml.dataprep.api.builders.imputemissingvaluesbuilder?view=azure-dataprep-py)
- [Automatic file type detection](https://docs.microsoft.com/en-us/python/api/overview/azure/dataprep/intro?view=azure-dataprep-py#auto). The SDK can automatically detect any of the supported file types. You don’t need to use special file readers for CSV, text, Excel, etc., or to specify delimiter, header, or encoding parameters.
- [Cross-platform functionality](https://docs.microsoft.com/en-us/python/api/overview/azure/dataprep/intro?view=azure-dataprep-py#cross) with a single code artifact. The SDK also allows for dataflow objects to be serialized and opened in any Python environment. Write to a single SDK and run it on Windows, macOS, Linux, or Spark in a scale-up or scale-out manner. When running in scale-up, the engine attempts to utilize all hardware threads available, when running scale-out the engine allows the distributed scheduler to optimize execution.
- [Summary statistics](https://docs.microsoft.com/en-us/python/api/overview/azure/dataprep/intro?view=azure-dataprep-py#summary) can be generated quickly for a dataflow with a single line of code.
- Scale through streaming. Instead of loading all the data into memory, the SDK engine streams data for better scale and performance on large datasets.

## Install the SDK

To install the Azure Machine Learning Data Prep SDK for Python, use the following command:

```bash
pip install --upgrade azureml-dataprep
```

## Learn how to use it

Here are some resources to help you learn more about the Azure Machine Learning Data Prep SDK for Python:

- See the Azure Machine Learning service documentation to learn how to [load, transform, and write data with the SDK](http://aka.ms/data-prep-sdk).
- Review a [getting started notebook in GitHub](https://aka.ms/aml-data-prep-getting-started-nb) of data preparation using the SDK.
- Use the [API Reference](https://aka.ms/aml-data-prep-apiref) to look up classes and modules.


