Skip to content

Commit

Permalink
changing autonormalize imports in demos
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonportis committed Aug 16, 2019
1 parent c7901a1 commit 6ad9825
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
Binary file modified .DS_Store
Binary file not shown.
Expand Up @@ -21,7 +21,7 @@
"outputs": [],
"source": [
"%matplotlib inline\n",
"import autonormalize as an\n",
"from featuretools.autonormalize import autonormalize as an\n",
"import composeml as cp\n",
"import featuretools as ft\n",
"import pandas as pd\n",
Expand Down
2 changes: 1 addition & 1 deletion autonormalize/demos/Editing Dependnecies Demo.ipynb
Expand Up @@ -21,7 +21,7 @@
"outputs": [],
"source": [
"import pandas as pd\n",
"import autonormalize as an"
"from featuretools.autonormalize import autonormalize as an"
]
},
{
Expand Down
7 changes: 2 additions & 5 deletions autonormalize/demos/Kaggle Food Dataset Demo.ipynb
Expand Up @@ -14,13 +14,10 @@
"metadata": {},
"outputs": [],
"source": [
"import sys, os\n",
"import os\n",
"\n",
"import pandas as pd\n",
"\n",
"sys.path.append(os.path.abspath(os.path.join('..', '..',)))\n",
"\n",
"import autonormalize as an"
"from featuretools.autonormalize import autonormalize as an"
]
},
{
Expand Down
7 changes: 2 additions & 5 deletions autonormalize/demos/Kaggle Liquor Sales Dataset Demo.ipynb
Expand Up @@ -14,14 +14,11 @@
"metadata": {},
"outputs": [],
"source": [
"import sys, os\n",
"import os\n",
"import time\n",
"\n",
"import pandas as pd\n",
"\n",
"sys.path.append(os.path.abspath(os.path.join('..', '..',)))\n",
"\n",
"import autonormalize as an"
"from featuretools.autonormalize import autonormalize as an"
]
},
{
Expand Down

0 comments on commit 6ad9825

Please sign in to comment.