I am trying to read in a csv file of stock data which is set out as follows:
Date "Open "High "Low "Close "Volume "Open Interest "Ticker
1999-1-21" 33.07198" 33.60028" 32.96632" 33.07198" 36201" 39" CS
1999-1-22" 32.01537" 32.22669" 32.01537" 32.01537" 3667" 38" CS
1999-1-25" 32.12103" 32.75499" 32.12103" 32.12103" 2366" 38" CS
1999-1-26" 32.01537" 32.01537" 32.01537" 32.01537" 14315" 38" CS
etc
The delimiter is clearly " but when I run the below code it just reads it in as one column and includes the " in the data.
import pandas as pd
stock1 = 'CS.csv'
x = pd.read_csv(stock1, delimiter='"')
Any help would be appreciated.