Andrew Ramos
Andrew Ramos

Reputation: 33

How to view more rows of a column in pycharm console

How do I view the additional data that is not being displayed in the console?

I do not know where to find this

This is the output on the console., I want to view the data between lines 4 and 2135. How do I do that?

0 False 1 False 2 False 3 False 4 False ...
2135 False 2136 False 2137 False 2138 False 2139 False Name: Case_Date, Length: 2140, dtype: bool

No error messages. It just hides the print information behind ....

Upvotes: 2

Views: 800

Answers (1)

LegendofPedro
LegendofPedro

Reputation: 1414

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

Upvotes: 2

Related Questions