SyntaxFix
Write A Post
Hire A Developer
Questions
To see the first n rows of DataFrame:
df.head(n) # (n=5 by default)
To see the last n rows:
df.tail(n)