When working with Pandas’ specific column, you would have a new datatype called Series. A Series is a one-dimensional array of data. It can hold data of any type: string, integer, float, dictionaries, lists, booleans, and more.
The most commonly used methods for working with Series
1. Basic info checking:
1 |
|
2. Filter / select from a series:
1 |
|
3. Converting a Series data obj to DataFrame:
1 | #Convert Series to DataFrame. |