version 1.0.23

This commit is contained in:
Roope Astala
2019-04-08 15:34:51 -04:00
parent a956162114
commit c3ce932029
30 changed files with 5259 additions and 4148 deletions

File diff suppressed because one or more lines are too long

View File

@@ -661,7 +661,7 @@
"metadata": {
"authors": [
{
"name": "haining"
"name": "roastala"
}
],
"kernelspec": {
@@ -681,7 +681,7 @@
"pygments_lexer": "ipython3",
"version": "3.6.8"
},
"msauthor": "haining"
"msauthor": "roastala"
},
"nbformat": 4,
"nbformat_minor": 2

View File

@@ -592,7 +592,7 @@
"metadata": {
"authors": [
{
"name": "haining"
"name": "roastala"
}
],
"kernelspec": {

View File

@@ -60,7 +60,7 @@
"Use the following to install necessary packages if you don't already have them.\n",
"\n",
"```shell\n",
"pip install azureml-dataprep\n",
"pip install \"azureml-dataprep>=1.1.0,<1.2.0\"\n",
"```\n",
"\n",
"Import the SDK."
@@ -557,8 +557,7 @@
"import os\n",
"file_path = os.path.join(os.getcwd(), \"dflows.dprep\")\n",
"\n",
"package = dprep.Package([final_df])\n",
"package.save(file_path)"
"final_df.save(file_path)"
]
},
{

View File

@@ -137,8 +137,7 @@
"\n",
"file_path = os.path.join(os.getcwd(), \"dflows.dprep\")\n",
"\n",
"package_saved = dprep.Package.open(file_path)\n",
"dflow_prepared = package_saved.dataflows[0]\n",
"dflow_prepared = dprep.Dataflow.open(file_path)\n",
"dflow_prepared.get_profile()"
]
},