Python Pandas DataFrame
The type is fully specified as pandas.core.frame.DataFrame.
Example
Data Model
Attrbibutes
Methods
Method |
Meaning |
Example |
head |
return a new DataFrame of the first N rows |
df.head(5) |
squeeze |
return a Series representation of the frame |
|
tail |
return a new DataFrame of the last N rows |
df.tail(5) |
