Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

knitr: object cannot be found when converting markdown file into html

Tags:

r

knitr

Hi I am using R studio and the "knitHTML" button to convert my Rmd file into a html file. However, even thought the code runs fine, when using knitHTML it cannot find any of my objects previously created:

## Error: object 'cbt_2010' not found

however if I type cbt_2010 at the terminal - it is there. Bascially knit cannot find any of the objects in the workspace.

what am I doing wrong? it just seems any data produced in each chunk is lost in memory when using knit!

like image 645
brucezepplin Avatar asked Feb 02 '26 18:02

brucezepplin


1 Answers

As already mentioned by @BenBolker , you can use knit2html( Note that it is different from the Rstudio button, Rstudio use its own function to process document) from knitr:

 x <- 10
 writeLines(c("# hello markdown",
          "```{r hello-random, echo=TRUE}", 
               "rnorm(x)", "```"), ## note the use of x
 "test.Rmd")
 library(knitr)
 knit2html("test.Rmd")
like image 164
agstudy Avatar answered Feb 05 '26 06:02

agstudy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!