update samples from Release-141 as a part of 1.0.57 SDK release

This commit is contained in:
vizhur
2019-08-19 23:33:44 +00:00
parent 8f418b216d
commit 44a7481ed1
158 changed files with 32395 additions and 619 deletions

View File

@@ -90,10 +90,9 @@
"outputs": [],
"source": [
"from IPython.display import display\n",
"dataset_root = \"https://dprepdata.blob.core.windows.net/demo\"\n",
"\n",
"green_path = \"/\".join([dataset_root, \"green-small/*\"])\n",
"yellow_path = \"/\".join([dataset_root, \"yellow-small/*\"])\n",
"green_path = \"https://dprepdata.blob.core.windows.net/demo/green-small/*\"\n",
"yellow_path = \"https://dprepdata.blob.core.windows.net/demo/yellow-small/*\"\n",
"# (optional) Download and view a subset of the data: https://dprepdata.blob.core.windows.net/demo/green-small/green_tripdata_2013-08.csv\n",
"\n",
"green_df_raw = dprep.read_csv(path=green_path, header=dprep.PromoteHeadersMode.GROUPED)\n",
"# auto_read_file automatically identifies and parses the file type, which is useful when you don't know the file type.\n",