We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc7065 commit a515f4dCopy full SHA for a515f4d
examples/Generic Branch Example.ipynb
@@ -632,11 +632,10 @@
632
")\n",
633
"\n",
634
635
- "pd.set_option(\"display.max_columns\", None)\n",
636
- "pd.set_option(\"display.max_rows\", None)\n",
637
- "pd.set_option(\"display.expand_frame_repr\", False)\n",
638
639
- "pd.set_option(\"display.max_colwidth\", None)\n",
+ "pd.options.display.max_columns = None\n",
+ "pd.options.display.max_rows = None\n",
+ "pd.options.display.expand_frame_repr = False\n",
+ "pd.options.display.max_colwidth = None\n",
640
641
642
"def e3(x):\n",
0 commit comments