if(is.waive(data)|| empty(data))返回时出错(cbind(data,PANEL = integer(0))):#missing value需要TRUE / FALSE

时间:2017-10-04 13:39:17

标签: r markdown r-markdown

我在facebook页面的这个数据框中:

enter image description here

我运行此代码

ggplot(week, aes(x = week, y = likes)) + geom_col(fill = "cadetblue3", size =1, width = 0.5) + ggtitle('week Total Likes') + theme(plot.title = element_text(size = , face = "bold")) + theme_bw() + geom_text(aes(label = likes))

并且它正确运行

但是当我将Rmarkdown编织成html或pdf时,

R gives me this ERROR

问题出在哪里?

1 个答案:

答案 0 :(得分:2)

尝试在干净的环境中运行代码。块可能依赖于.Rmd中较早的其他代码块中的变量,这些变量已经意外地设置为eval = FALSE。