使用embed_notebook时出错,在Jupyter

时间:2016-02-24 18:09:00

标签: r plotly jupyter-notebook

我试图在Jupyter中嵌入R图表

我正在关注https://plot.ly/r/using-r-in-jupyter-notebooks/

但坚持"确保pandoc.exe和pandoc-citeproc在本地python安装文件夹(或Jupyter环境,如果你已经设置了一个单独的环境)中可用。"

我找到了pandoc.exe和pandoc-citeproc。但不确定复制这些文件的位置。

基于Anaconda Prompt我的环境是C:\ Users \ myname \ AppData \ Local \ Continuum \ Anaconda2 \ 但即使在复制文件后,我仍然会收到错误:" embed_notebook(gg)中的错误:x必须是一个阴谋图"

我还运行了命令.libPaths() 并将文件添加到该位置并获得相同的错误

Jupyter正在工作,我可以定期制作ggplot2情节

p <- ggplot(data = test_df, aes(x = day, y = spend)) +
geom_point(aes(text = paste("Country:",country_level)), size = 4) +
geom_smooth(aes(colour = affiliate_country_level_3_name, fill = country_level)) + facet_wrap(~ country_level)

(gg <- ggplotly(p))


embed_notebook(gg)

我可以使用ggplot绘制p

test_df是data.frame,day:Date; country_level:因子;花钱是

我使用Anaconda安装了Python。 请告知并让我知道我还能提供什么

谢谢

0 个答案:

没有答案