How to get last row of Pandas DataFrame
Use .iloc[-1]
to get the last row (all columns) of a pandas
DataFrame, for example:
my_dataframe.iloc[-1]
Use .iloc[-1]
to get the last row (all columns) of a pandas
DataFrame, for example:
my_dataframe.iloc[-1]