What does ```{r, eval=F, echo=F} mean?

What is the meaning of ```{r, eval=F, echo=F}?

this is rmarkdown syntax. What you show defines the start of a code chunk.

The r means its r language (not pythong or others...)
echo - Display code in output document (default =TRUE)
eval - Run code in chunk (default = TRUE)

Useful cheat sheet is
https://rmarkdown.rstudio.com/lesson-15.html

1 Like

then what does eval=F, echo=F mean?

Eval parameter is whether to evaluate/run your chunk of code
Echo parameter is whether to print the code

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.