Pandas Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:


=Series=
=Series=
{{External|https://pandas.pydata.org/docs/user_guide/dsintro.html#series}}
{{Internal|Panda Series|Series}}
{{External|https://pandas.pydata.org/docs/reference/api/pandas.Series.html#pandas.Series}}
==Index==
{{External|https://pandas.pydata.org/docs/reference/api/pandas.Series.index.html}}

Revision as of 17:00, 8 October 2023

Internal

Overview

DataFrame

https://pandas.pydata.org/docs/user_guide/dsintro.html#dataframe
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html#pandas.DataFrame

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.

Shape

Series

Series