Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2024-01-15 22:31:01
Size: 669
Comment: Clarify that squeeze returns a view
Revision 7 as of 2025-12-23 05:17:40
Size: 0
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Python Pandas DataFrame =

The [[Python/Pandas/Types|type]] is fully specified as `pandas.core.frame.DataFrame`.

<<TableOfContents>>

----



== Example ==

----



== Data Model ==

----



== Attrbibutes ==

----



== Methods ==

||'''Method'''||'''Meaning''' ||'''Example'''||
||`head` ||return a new `DataFrame` of the first N rows ||`df.head(5)` ||
||`squeeze` ||return a [[Python/Pandas/Series|Series]] view of the frame|| ||
||`tail` ||return a new `DataFrame` of the last N rows ||`df.tail(5)` ||



----
CategoryRicottone