Answers for "pandas dataframe get last row"

5

print last n rows of dataframe

df1.tail(n)
Posted by: Guest on September-22-2020
1

location of last row dataframe

rows = df.iloc[-2:]
Posted by: Guest on December-04-2020
0

pandas show head and tail

#make 100 3d random numbers
df = pd.DataFrame(np.random.randn(100,3))

# sort them by their axis sum
df = df.loc[df.sum(axis=1).index]

with pd.option_context('display.max_rows',10):
    print(df)
Posted by: Guest on July-16-2020

Code answers related to "pandas dataframe get last row"

Python Answers by Framework

Browse Popular Code Answers by Language