Hi,
I have a number of tickers for which I'm grabbing a time series via the following (as an example):
Ticker1_df=ds.get_data (tickers=Ticker1, fields=[Field1], start=start_date_qtr, end=end_date, kind=1)
The specific tickers/fields don't really matter at this point, but my main question is regarding the resultant dataframe. In the dataframe, there are two descriptive rows included ("Instrument" and "Field") and I'm not sure how to remove them (i.e., "Fields"). Bottom line is I'm trying to plot a combined dataframe downstream and can't seem to do so in the default dataframe. How should I go about transforming the dataframe that includes "Instrumenet" and "Field" so that it can be charted?
Thanks.