0

I want to show content of a dataframe that I created. The problem is that it shows only part of the column content:

enter image description here

Is there an option to see all the columns' content?

petezurich
  • 9,280
  • 9
  • 43
  • 57
eliad choen
  • 71
  • 1
  • 10

1 Answers1

0

You can try using dataframe.head(n=100). Just change the value of n to how many items you want to display

Austen Novis
  • 444
  • 1
  • 12
  • 30