Pandas DataFrame: Difference between revisions

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


=Accessing Elements of a DataFrame=
=Accessing Elements of a DataFrame=
==<tt>[]</tt>==
==<tt>iloc[]</tt>==
==<tt>iloc[]</tt>==
==<tt>squeeze()</tt>==


=Operations on DataFrames=
=Operations on DataFrames=

Revision as of 18:24, 8 October 2023

External

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. The dimensionality of the DataFrame is given by its shape property.

Shape

shape is a property of the DataFrame, containing a tuple that returns the dimensionality of the DataFrame: rows, columns.

Create a DataFrame

Create a DataFrame from a CSV File

Accessing Elements of a DataFrame

[]

iloc[]

squeeze()

Operations on DataFrames