I just want to add a trick that helps me visualize dataframes with many rows in the debug console
By default, the debug console does not display all dataframe rows and substitutes some of them with ... as seen below

You can bypass this by changing the pandas settings in the debug console
import pandas as pd
pd.set_option('display.max_rows', None) # Display all rows
Then you will be able to view all the rows of the dataframe 🍺

In addition if you have a dataframe with many columns you can use the following options to view them
import pandas as pd
pd.set_option('display.max_columns', None) # Display all columns
pd.set_option('display.width', 1000) # Set the width to a high number of chars so that a row is displayed in one line
For the different options and what they do see the pandas user guide