display the number of rows in the training dataframe code example
Example 1: get number of rows pandas
number_of_rows = len(df)
Example 2: Returns the number of rows in this DataFrame
# Returns the number of rows in this DataFrame
df.count()
# 2