diff --git a/session_1/session_1.Rmd b/session_1/session_1.Rmd index 48a1b6a954d598cae4d1eb644c07e47d9076c4ce..a5995184ad45cb6598fe8e41d162a5f0c3e233e0 100644 --- a/session_1/session_1.Rmd +++ b/session_1/session_1.Rmd @@ -460,13 +460,13 @@ function (x, base = exp(1)) To know more about the `log` function we can read its manual. -```{r VandAstep8, include=TRUE} +```{r VandAstep8, include=TRUE, eval=FALSE} help(log) ``` or -```{r VandAstep9, include=TRUE} +```{r VandAstep9, include=TRUE, eval=FALSE} ?log ``` @@ -805,7 +805,7 @@ Check the documentation of this command <details><summary>Solution</summary> <p> -```{r VandAstep16, include=TRUE} +```{r VandAstep16, include=TRUE, eval=FALSE} ?rm ``` </p> diff --git a/session_2/session_2.Rmd b/session_2/session_2.Rmd index 3e7c2207fae9847b1d99b64ae6afe3295381128a..04e443e87bcaaabba5f1c5c58e04ea3aaf4df173 100644 --- a/session_2/session_2.Rmd +++ b/session_2/session_2.Rmd @@ -155,7 +155,7 @@ It contains only models which had a new release every year between 1999 and 2008 You can use the `?` command to know more about this dataset. -```{r mpg_inspect, include=TRUE} +```{r mpg_inspect, include=TRUE, eval=FALSE} ?mpg ``` diff --git a/session_6/session_6.Rmd b/session_6/session_6.Rmd index 387f5e6f9fa06c4e3b0d8f34bfdabfafccd64803..d7f621f4040d292b1de94f1f9fe77beaafed9cd7 100644 --- a/session_6/session_6.Rmd +++ b/session_6/session_6.Rmd @@ -52,7 +52,7 @@ Use the help to know more about `table1` dataset <details><summary>Solution</summary> -```{r} +```{r, eval=FALSE} ?table1 ```