Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the import of the pandas_profiling package #115

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 4 additions & 16 deletions overviews/AndreMachado/main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,11 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"C:\\Users\\UR8D\\Anaconda3\\envs\\3W\\lib\\site-packages\\tslearn\\bases\\bases.py:15: UserWarning:\n",
"\n",
"h5py not installed, hdf5 features will not be supported.\n",
"Install h5py to use hdf5 features: http://docs.h5py.org/\n",
"\n"
]
}
],
"outputs": [],
"source": [
"import warnings\n",
"warnings.simplefilter(\"ignore\", FutureWarning)\n",
Expand All @@ -73,7 +61,7 @@
"import pandas as pd\n",
"# from tslearn.preprocessing import TimeSeriesScalerMeanVariance, TimeSeriesScalerMinMax\n",
"import matplotlib.pyplot as plt \n",
"import pandas_profiling\n",
"from ydata_profiling import ProfileReport\n",
"\n",
"%matplotlib inline\n",
"%config InlineBackend.figure_format = 'svg'"
Expand Down Expand Up @@ -63666,7 +63654,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.6"
"version": "3.9.13"
},
"toc": {
"base_numbering": 1,
Expand Down
Loading