在处理 google 财务时,我应该分配给 parse_dates 哪一列?
What column should I assign to parse_dates while working with google finance?
我写了一个代码来显示来自 google 财务的图表,但我得到了这个错误:
ValueError: Missing column provided to 'parse_dates': 'Date'
这是我的代码:
from bokeh.plotting import Figure, output_file, show
data = pandas.read_csv('http://www.google.com/finance/historical?q=NASDAQ:AAPL&startdate=Jan+01%2C+2000&output=csv',parse_dates = ["Date"])
f = figure(height = 800,width = 600,x_axis_type = 'datetime')
f.line(data["Date"],data["Close"],color = "orange",alpha = 0.5)
output_file("History.html")
show(f)
我应该分配哪一列才能使我的代码正常工作?
您的 html
路径 'http://www.google.com/finance/historical?q=NASDAQ:AAPL&startdate=Jan+01%2C+2000&output=csv'
不是 return 正确的 csv
文件并且 pd.read_csv()
无法解析它。此外,没有名为 Date
.
的列
内部 pd.read_csv()
调用 pd_read_html()
和此 returns
[ (USD) \
0 Revenue
1 Net income
2 Diluted EPS
3 Net profit margin
4 Operating income
5 Net change in cash
6 Cash and equivalents
7 Cost of revenue
Dec 2021infoFiscal Q1 2022 ended 12/25/21. Reported on 1/27/22. \
0 123.94B
1 34.63B
2 2.10
3 27.94%
4 41.49B
5 2.70B
6 37.12B
7 69.70B
Year/year change
0 11.22%
1 20.43%
2 25.00%
3 8.29%
4 23.72%
5 230.48%
6 3.08%
7 3.86% ]
这不是你想要的。其他 posts are using pandas_datareader
.
我写了一个代码来显示来自 google 财务的图表,但我得到了这个错误:
ValueError: Missing column provided to 'parse_dates': 'Date'
这是我的代码:
from bokeh.plotting import Figure, output_file, show
data = pandas.read_csv('http://www.google.com/finance/historical?q=NASDAQ:AAPL&startdate=Jan+01%2C+2000&output=csv',parse_dates = ["Date"])
f = figure(height = 800,width = 600,x_axis_type = 'datetime')
f.line(data["Date"],data["Close"],color = "orange",alpha = 0.5)
output_file("History.html")
show(f)
我应该分配哪一列才能使我的代码正常工作?
您的 html
路径 'http://www.google.com/finance/historical?q=NASDAQ:AAPL&startdate=Jan+01%2C+2000&output=csv'
不是 return 正确的 csv
文件并且 pd.read_csv()
无法解析它。此外,没有名为 Date
.
内部 pd.read_csv()
调用 pd_read_html()
和此 returns
[ (USD) \
0 Revenue
1 Net income
2 Diluted EPS
3 Net profit margin
4 Operating income
5 Net change in cash
6 Cash and equivalents
7 Cost of revenue
Dec 2021infoFiscal Q1 2022 ended 12/25/21. Reported on 1/27/22. \
0 123.94B
1 34.63B
2 2.10
3 27.94%
4 41.49B
5 2.70B
6 37.12B
7 69.70B
Year/year change
0 11.22%
1 20.43%
2 25.00%
3 8.29%
4 23.72%
5 230.48%
6 3.08%
7 3.86% ]
这不是你想要的。其他 posts are using pandas_datareader
.