|
⇤ ← Revision 1 as of 2024-01-15 21:19:26
Size: 384
Comment: Initial commit
|
Size: 625
Comment: Added methods
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 2: | Line 2: |
The type is fully specified as `pandas.core.frame.DataFrame`. |
|
| Line 30: | Line 32: |
| ||`head` ||return a new `DataFrame` of the first N rows || | |
| Line 31: | Line 34: |
| ||`tail` ||return a new `DataFrame` of the last N rows || |
Python Pandas DataFrame
The type is fully specified as pandas.core.frame.DataFrame.
Example
Data Model
Attrbibutes
Methods
Method |
Meaning |
head |
return a new DataFrame of the first N rows |
squeeze |
return a Series representation of the frame |
tail |
return a new DataFrame of the last N rows |
