Skip to content
Advertisement

Increment the max rows of the pandas DataFrame

I have this python function to get financial data from some tickers

JavaScript

Then

JavaScript

So the number of rows of my DataFrame should be around 100k rows. But data.info() is returning: (just 10k rows)

JavaScript

How can I increment the max rows of the pandas DataFrame??

Advertisement

Answer

1)Appending the argument paginate=True will extend the limit to 1,000,000 rows.

JavaScript
Advertisement