求大神 关于 pandas请帮我看下 线面这段代码 我用 jupyter notebook 运行 显示 错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求大神 关于 pandas请帮我看下 线面这段代码 我用 jupyter notebook 运行 显示 错误相关的知识,希望对你有一定的参考价值。
import pandas as pd
import pandas_datareader.data as web
all_data =
for ticker in ['aapl', 'ibm', 'msft', 'goog']:
all_data[ticker] = web.DataReader(ticker, '1/1/2000', '1/1/2010')
price = pd.DataFrame(tic: data['adj close']
for tic, data in all_data.iteritems())
volume = pd.DataFrame(tic: data['volume']
for tic, data in all_data.iteritems())
returns = price.pct_change()
returns.tail()
显示的错误是NotImplementedError: data_source='1/1/2000' is not implemented
怎么修改
当你老了,头发白了,然后头发没了
改成
for ticker in ['aapl', 'ibm', 'msft', 'yahoo']:
not implemented 表示google不提供数据服务了 参考技术D 春怨(刘方平)
JAVA程序的几个小问题,有空的大神帮我看下谢谢啦~也可以让我给你发程序帮忙调一下万分感谢3QQQQQQ
报错:
Description Resource Path Location Type
The operator + is undefined for the argument type(s) Integer, int LoginAction.java /MyOA/src/com/oa/struts/actions line 72 Java Problem
报错:The method setAccessTime(Integer) in the type AbstractUser is not applicable for the arguments (int)
报错:The method inttostr(int) in the type Change is not applicable for the arguments (Integer) UpfileAction.java
setAccessTime(Integer) 参数必须是Integer, 不能是int; 必须先转换
Change.inttostr(int) 参数必须是int, 不能是Integer; 也必须先转换
转换方法:
//int到Integer:
Integer A=new Integer(int value);
或者Integer A=Integer.valueOf(a);
//Integer到int:
Integer A=new Integer(5);
int a=A.intValue();追问
谢谢你啦 只差这一个问题了
The operator + is undefined for the argument type(s) Integer, int LoginAction.java /MyOA/src/com/oa/struts/actions line 72 Java Problem
把user.setAccessTime 定义的参数类型列出来看下.
追问public void setAccessTime(java.lang.Integer accessTime)
this.accessTime = accessTime;
user.setAccessTime(new Integer(user.getAccessTime().intValue()+1));
int和Integer是两种类型, 不能直接加减.
明显是错在这里,你想的太容易了追问
The operator + is undefined for the argument type(s) Integer, int LoginAction.java /MyOA/src/com/oa/struts/actions line 72 Java Problem
能帮我看看怎么改么、?谢啦
以上是关于求大神 关于 pandas请帮我看下 线面这段代码 我用 jupyter notebook 运行 显示 错误的主要内容,如果未能解决你的问题,请参考以下文章
求助各位大神帮我看下 Unity3d 与 Android 交互的问题