From 324643917dc5d25223df1d5bb7dbdcd4984f5248 Mon Sep 17 00:00:00 2001 From: Stephen Goodrich <140849422+goodrs02@users.noreply.github.com> Date: Fri, 21 Feb 2025 10:31:38 -0500 Subject: [PATCH] Update MiniProject10.Rmd Update the names of objects described in line 33 to match the content of the image. Update image file names for "MiniProject10_Cleaning Environment.PNG" (line 35) and "MiniProject10_Global options.PNG" (line 43) to match the contents of "img" folder. --- MiniProject10.Rmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MiniProject10.Rmd b/MiniProject10.Rmd index 0436db5..1948e63 100644 --- a/MiniProject10.Rmd +++ b/MiniProject10.Rmd @@ -30,9 +30,9 @@ Over time your collection of STUFF in R will grow. The problem is that if you do The easiest way to spring clean your R session is to clean out the Environment and restart R. -![R Global Environment with four objects: Data called "adsl", vectors "ALTmax" and "ALTmin" and a function called "uniqueVal"](img/MiniProject10_Environment.PNG) +![R Global Environment with four objects: Data called "myData", vectors "bar" and "foo" and a function called "myFunction"](img/MiniProject10_Environment.PNG) -![R Global Environment with popup dialogue that appears when you click on the "broom" icon](img/MiniProject10_CleaningEnvironment.PNG) +![R Global Environment with popup dialogue that appears when you click on the "broom" icon](img/MiniProject10_Cleaning Environment.PNG) This will clean out the Environment and start "fresh". REMEMBER TO SAVE ANYTHING YOU MIGHT NEED TO KEEP BEFORE YOU DO THIS!! @@ -40,7 +40,7 @@ For reasons of reproducibility, it's a good idea to start with a "clean" environ When I start an R session, I like to start with this "clean page". If you go to the General tab of the "Global Options" in RStudio IDE there's an option which never reloads existing workspaces (Environment) when you start R and never asks if you would like to save the workspace on exit. If you really want to be clean and tidy (and reproducible) then you should uncheck the "Restore" option and select "Never" for the "Save" option. This ensures that every R session is completely clean when you start it. Every time. -![Global Options (in RStudio IDE) to neither save nor restore objects in a Workspace](img/MiniProject10_GlobalOptions.PNG) +![Global Options (in RStudio IDE) to neither save nor restore objects in a Workspace](img/MiniProject10_Global options.PNG) ## Turn it off then turn it on again.