From 90c526f81b1a147ed8299bd7ee2167be0742665d Mon Sep 17 00:00:00 2001 From: Erin Becker Date: Fri, 8 Mar 2024 15:36:29 -0800 Subject: [PATCH] Update episodes/01-starting-with-data.Rmd --- episodes/01-starting-with-data.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/01-starting-with-data.Rmd b/episodes/01-starting-with-data.Rmd index 13b7584a..cb8cf0ed 100644 --- a/episodes/01-starting-with-data.Rmd +++ b/episodes/01-starting-with-data.Rmd @@ -180,7 +180,7 @@ Once a variable is created, we can use the variable name to refer to the value i Variables as Tags -To see the value of a variable, we can print it by typing the name of the variable and hitting CTRL + Return (or CTRL + Enter) while working in the `script.R` file in the editor which is recommended. If we are working in the console directly, we need to hit Return (or Enter). +To see the value of a variable, we can print it by typing the name of the variable and hitting CTRL + Return (or CTRL + Enter) while working in the "`script.R`" file in the editor which is recommended. If we are working in the console directly, we need to hit Return (or Enter). In general, R will print to the console any object returned by a function or operation *unless* we assign it to a variable. ```{r}