2

As I learned here, there is an extension for the IPython notebook, that lets you specify the number of lines that are plotted before enabling scroll bars on the output cell. This does not work for Pandas data frames, because the div inside the .output_subarea has the style

max-height:1000px;max-width:1500px;overflow:auto;

even if I set the AutoScrollLimit to no-scroll. How to plot the data frames always without scroll bars?

Community
  • 1
  • 1
Milla Well
  • 3,193
  • 3
  • 35
  • 50

1 Answers1

3

This was changed for 0.16.2, see here

For ipython >= 3.0.0 will now use the notebook display controls

Jeff
  • 125,376
  • 21
  • 220
  • 187