0

Does anybody know how I visualize all values?

enter image description here

martineau
  • 119,623
  • 25
  • 170
  • 301
Victor Castro
  • 105
  • 1
  • 6
  • 1
    `pd.set_option('display.max_rows', 5000)` – not_speshal Jul 07 '21 at 18:44
  • Does this answer your question? [How do I expand the output display to see more columns of a Pandas DataFrame?](https://stackoverflow.com/questions/11707586/how-do-i-expand-the-output-display-to-see-more-columns-of-a-pandas-dataframe) – Henry Ecker Jul 07 '21 at 20:05

1 Answers1

1

According to pandas set_option docs, display.max_rows is the value you need to modify. Try this:

import pandas as pd
pd.set_option('display.max_rows', None)

To display unlimited rows.

miravalls
  • 365
  • 1
  • 7