我正在使用R markdown将我的代码编入word文档
我对R以及R markdown都很陌生 我有以下代码:
{r, eval=TRUE, fig.height=7, fig.width=5, message=FALSE, warning=FALSE}
lifeExpectancy <- rename(lifeExpectancy, Incomegroup= WORLDBANKINCOMEGROUP)
plife <- ggplot(lifeExpectancy, aes(x= LifeExpectancy))
plife1 <- plife + geom_histogram(fill="white", aes(color= Incomegroup))
plife1 <- plife1 +facet_grid(SEX~Incomegroup) + xlab("average life
expectancy")
plife1
这是它返回的警告信息:
Quitting from lines 32-38 (Termpaper_Franziska.Rmd)
error in rename_(.data, .dots = lazyeval::lazy_dots(...)) :
Object 'lifeExpectancy' not found
calls : <Anonymous> ... withCallingHandlers -> withVisible -> eval -> eval
> rename -> rename_
stopped`
我已经做了什么:
我为R markdown和原始脚本正确设置了工作目录
我用过
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_knit$set(root.dir =
"C:/Users/Maxi/Desktop/PrettyPlots2016/Termpaper")
设置工作目录,但也没有帮助。
最后但并非最不重要的是我也设置了
eval=FALSE
然后我当然没有得到我的情节,这对我也没有帮助。
如果有人能解决我的困境,我会很高兴听到它!
非常感谢你!