Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Data from Environment in R Markdown [duplicate]

Tags:

r

r-markdown

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.

like image 761
DarkSide Avatar asked Sep 07 '16 11:09

DarkSide


Video Answer


1 Answers

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.

like image 81
J_F Avatar answered Sep 19 '22 14:09

J_F