Pandas DataFrame: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://pandas.pydata.org/docs/user_guide/dsintro.html#dataframe * https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html#pandas.DataFrame =Internal=...") |
|||
Line 6: | Line 6: | ||
* [[Pandas_Concepts#DataFrame|Pandas Concepts]] | * [[Pandas_Concepts#DataFrame|Pandas Concepts]] | ||
=Overview= | |||
A DataFrame is a two-dimensional data structure with columns of potentially different types. Can be thought of as a dict-like container for [[#Series|Series]] objects. | A DataFrame is a two-dimensional data structure with columns of potentially different types. Can be thought of as a dict-like container for [[#Series|Series]] objects. | ||
=Shape= | =Shape= |
Revision as of 18:03, 8 October 2023
External
- https://pandas.pydata.org/docs/user_guide/dsintro.html#dataframe
- https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html#pandas.DataFrame
Internal
Overview
A DataFrame is a two-dimensional data structure with columns of potentially different types. Can be thought of as a dict-like container for Series objects.