dx icon indicating copy to clipboard operation
dx copied to clipboard

Option to configure max_rows

Open dylanross3 opened this issue 6 years ago • 0 comments

It would be a nice addition to allow passing a max_rows parameter.

dx(df, max_rows=None)

This would essentially be a convenience mechanism so the user can avoid doing the following.

with pd.option_context('display.max_rows', None):
  dx(df)

The default value could potentially be None, but I think it's better to have users explicitly set that so they are more likely to realize the ramifications.

dylanross3 avatar Jun 07 '19 17:06 dylanross3