如何在Jupyter R Notebook中使用quantmod库?

时间:2016-12-06 16:52:14

标签: r jupyter-notebook quantmod jupyter-irkernel

我需要调用quantmod :: getSymbols。该功能在Rstudio中完美运行,但在Jupyter R Notebook中不起作用:

enter image description here

就Jupyter而言,我使用的是Anaconda环境(https://www.continuum.io/downloads)和Python 2.7。

1 个答案:

答案 0 :(得分:0)

此系列的缺失值写为.(句号),可能会导致Jupiter出现问题。但您始终可以使用read.csv从Jupyter中下载数据,并将问题值替换为NAna.locf

url <- "https://fred.stlouisfed.org/graph/fredgraph.csv?id=USD1MTD156N"
tail(read.csv(url, header = T, stringsAsFactors = FALSE))
           DATE USD1MTD156N
8059 2016-11-22     0.58422
8060 2016-11-23       0.592
8061 2016-11-24     0.60256
8062 2016-11-25     0.60589
8063 2016-11-28     0.60561
8064 2016-11-29     0.61672