Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Labelling Columns in DataFrame CSV

I am trying to use data from a DataFrame stored as a CSV in an algorithm. I have no problem labeling the column consisting of dates as "date" so that fetch_csv knows which column holds the dates. But I don't understand how to provide a column called "symbol", something that fetch_csv requires, because the symbols in my DataFrame are stored in a row (isn't that normal?); they aren't stored in a column! How can I meet the requirements of fetch_csv?