Using Data from Environment in R Markdown [duplicate]

扶醉桌前 提交于 2020-05-12 01:52:57

问题


I'm trying to use data from Global Environment in R Markdown. When I call a 'summary(mydata)' it gives me this error:

object 'mydata' not found

I got all my work in many different scripts, so that is not easy for me to create a .R file for each result.

So, can I call data defined on Global Environment in R Markdown?

Thank You.


回答1:


There are 2 ways to load the data myData to your .RMD file:

  1. Don't knit your file with the Rstudio "knit" button:

    library(knitr)
    knit('your_file.Rmd')
    

This will take your recent environment into account and the error should be gone.

  1. Store your myData as "myData.RData" and load it manually in your RMD file

    ```{r load myData, include=FALSE}
    load("myData.RData")
    

    If you do it this way you can use the "knit" button from RStudio.

I hope one of this ways is a good solution for you.



来源:https://stackoverflow.com/questions/39368928/using-data-from-environment-in-r-markdown

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!