Pandas Data Types¶
| Type | Dimension | Size | Value | Constructor |
|---|---|---|---|---|
| Series | 1 | Immutable | Mutable | pandas.DataFrame( data, index, dtype, copy) |
| DataFrame | 2 | Mutable | Mutable | pandas.DataFrame( data, index, columns, dtype, copy) |
| Panel | 3 | Mutable | Mutable |
data can be ndarray, list, constants index must be unique and same length as data. Can be integer or string dtype if none, it will be inferred copy copy data. Default false