How is Series data structure different from a DataFrame data structure?
Question :
How is Series data structure different from a DataFrame data structure?
A Series is a one-dimensional object that can hold any data ype such as integer, float and strings. It has only one axis(0).
A DataFrame is a two dimensional object that can have columns with potential different types. It has two axis(axis 0 and 1).