DataFrame

class mipylib.dataframe.dataframe.DataFrame

Two-dimensional size-mutable, potentially heterogeneous tabular data structure with labeled axes (rows and columns). Arithmetic operations align on both row and column labels. Can be thought of as a dict-like container for Series objects.

Parameters
  • data – (array_like) Two-dimensional array data or list of one-dimensional arrays.

  • index – (list) Data index list. Values must be unique and hashable, same length as data.

  • columns – (list) Column labels to use for resulting frame. Will default to arange(n) if no column labels are provided

Attributes:

Methods: