Skip to content

Commit 6c9636b

Browse files
committed
fix: notebook config new usage of sort parameter
1 parent b3dc4d3 commit 6c9636b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/meteorites/meteorites.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"outputs": [],
134134
"source": [
135135
"report = df.profile_report(\n",
136-
" sort=\"None\", html={\"style\": {\"full_width\": True}}, progress_bar=False\n",
136+
" sort=None, html={\"style\": {\"full_width\": True}}, progress_bar=False\n",
137137
")\n",
138138
"report"
139139
]

examples/titanic/titanic.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"source": [
8484
"# Generate the Profiling Report\n",
8585
"profile = ProfileReport(\n",
86-
" df, title=\"Titanic Dataset\", html={\"style\": {\"full_width\": True}}, sort=\"None\"\n",
86+
" df, title=\"Titanic Dataset\", html={\"style\": {\"full_width\": True}}, sort=None\n",
8787
")"
8888
]
8989
},

0 commit comments

Comments
 (0)