2

我刚刚在 Windows 10、Python 2.7 系统上使用conda. 当我尝试使用 中的函数fetch_csvzipline.api,出现错误

AttributeError: 'NoneType' object has no attribute 'fetch_csv'

为什么我不能加载函数fetch_csv

from zipline.api import fetch_csv

fetch_csv('./test.csv')
4

1 回答 1

0

Zipline API 参考说这种方法是“从远程 url 获取 csv” 。对于本地文件,我建议pandas

pandas.read_csv('./test.csv')
于 2016-10-16T19:32:04.420 回答