Course Name: Python for Trading: Basic, Section : Series
Under what cases we will be using Series since it has only one column and one index? We have Data Frames that can hold data as per the user convenience right?
Course Name: Python for Trading: Basic, Section : Series
Under what cases we will be using Series since it has only one column and one index? We have Data Frames that can hold data as per the user convenience right?
Hi Jeyaraman,
You are right when you mention that dataframes are much more convenient when you want to store and manipulate data. We store OHLCV data in a dataframe itself. The idea of introducing Series first is to give a logical step in explaining data structures to the user. In this manner, you get a smooth learning curve for the learner.
Hope this helps.