Skip to content

Commit

Permalink
correct use of data profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaldo committed Sep 6, 2024
1 parent bca0857 commit d79f636
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terra-jupyter-python/tests/smoke_test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -248,14 +248,14 @@
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"import ydata_profiling\n",
"from ydata_profiling import ProfileReport\n",
"\n",
"df = pd.DataFrame(\n",
" np.random.rand(100, 5),\n",
" columns=['a', 'b', 'c', 'd', 'e']\n",
")\n",
"\n",
"profile = ydata_profiling(df, title='Pandas Profiling Report')\n",
"profile = ProfileReport(df, title='Pandas Profiling Report')\n",
"profile"
]
},
Expand Down

0 comments on commit d79f636

Please sign in to comment.