How can I subset this pandas data frame?

Viewed 41

This is the head of my dataframe

I am trying to understand how I can certain column of NFLX, and generally how the data frame is actually constructed. Are NFLX, AAPL, GOOG, etc. groupings, or are they labels for certain columns/rows?

Thank you in advance for any help you can provide me.

This is a pandas data frame, using following code to create: data = yf.download(['MSFT', 'AAPL', 'AMZN', 'GOOG', 'NFLX', 'ACLS', 'TSLA'], start=start, end=end, group_by ='ticker')

0 Answers
Related