I need guidance on the time series problem below. I tried to do on my own as mentioned below but it is not working. I want to know how can I update the line ‘close_AA=’
import pandas as pd
dataFrame = pd.read_csv(‘dow_jones_index.data’,parse_dates=[“date”], index_col=“date”)
dataFrame.head()
closeTS = dataFrame[(dataFrame.stock == ‘AA’)].close.str.replace(’$’,’ ').astype(float)
#Using the data filtered in the above step list all the closing price from jan to march assign the resulting series to variable ‘close_AA’
###Start code here
tried with ps.series(closeTS) but it is not working
close_AA =
print (close_AA)
###End code(approx 1 line)
close_AA.to_csv(“output.txt”)