作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 python 新手,但遇到了一些问题。我搜索了一些以前问过的类似问题。我阅读了答案和一些解决方案,但我仍然无法解决问题。
对此问题有任何指导吗?
import FinanceDataReader as fdr
import pyfolio as pf
import numpy as np
from datetime import datetime, timedelta
df = fdr.DataReader('AAPL')
return_series = df['Close'].pct_change().fillna(0)
pf.create_full_tear_sheet(return_series)
AttributeError: 'numpy.int64' object has no attribute 'to_pydatetime'
最佳答案
有一些open issues在 pyfolio
的 GitHub 存储库中了解它。显然,他们在他们的存储库中修复了这个问题,但它在 Python 包索引 (pip) 中不是最新的。
我尝试了来自 second issue 的建议,它为我解决了:
# remove your installed pyfolio library
pip uninstall pyfolio
# Install it again from its github repo
pip install git+https://github.com/quantopian/pyfolio
关于python - Pyfolio - AttributeError : 'numpy.int64' object has no attribute 'to_pydatetime' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65418898/
我在使用 pyfolio 时遇到了这个问题,我只想尝试一下他们的 github 上的示例:https://quantopian.github.io/pyfolio/notebooks/bayesian
我是 python 新手,但遇到了一些问题。我搜索了一些以前问过的类似问题。我阅读了答案和一些解决方案,但我仍然无法解决问题。 对此问题有任何指导吗? import FinanceDataReader
我是一名优秀的程序员,十分优秀!