Skip to main content

Accessing Data

Return a tuple representing the dimensionality of the DataFrame.

df.get(column_name)

Return column(s) from DataFrame.

Return element of Series that corresponds to its row label.

Returns element contained in Series at the given position.

Returns the indices (row labels) of the DataFrame.

Returns the column labels of the DataFrame.

df.take(indices)

Return the elements in the given positional indices.