A Practical Introduction to Pandas Series

All you need to know about Pandas Series — the basic building blocks of a DataFrame.

B. Chen
Towards Data Science
8 min readFeb 6, 2021

--

A practical introduction to Pandas Series (Image by Author using canva.com)

DataFrame and Series are two core data structures in Pandas. DataFrame is a 2-dimensional labeled data with rows and columns. It is like a spreadsheet or SQL table. Series is a 1-dimensional labeled array. It is sort of like a more powerful version of…

--

--