Skip to content

Instantly share code, notes, and snippets.

@janbenetka
Created October 3, 2020 22:23
Show Gist options
  • Save janbenetka/e642568aae43857d9101a75fc3eb3e99 to your computer and use it in GitHub Desktop.
Save janbenetka/e642568aae43857d9101a75fc3eb3e99 to your computer and use it in GitHub Desktop.
[Pandas settings/options] Setting display options in pandas #pandas #dataframes
import pandas as pd
pd.options.display.max_columns = 50 # None -> No Restrictions
pd.options.display.max_rows = 200 # None -> Be careful with this
pd.options.display.max_colwidth = 100
pd.options.display.precision = 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment