Here are instructions/links for accessing the worksheets and example datasets in Posit Cloud RStudio or for downloading the worksheets and example datasets locally if you are using your own copy of RStudio.
I recommend saving a copy of the worksheets when you start to fill them out in case you want to start over again at some point. But if you need to, you can always download the unfilled worksheets again.
When you open the “Lessons” project, you will see folders called datasets
and worksheets
in the “Files” tab of the lower right pane of the RStudio window. You can click on those folders to browse through them and open the files. There is no need to download anything. (You still might want to save a separate copy of the worksheets when you start to fill them out.)
This is what the files tab should look like:
You will need to download the datasets and worksheets. Here they are as .zip files:
Unzip these two zip archives on your local filesystem. You will end up with a directory called datasets
and another called worksheets
.
You will need to modify the code in the lessons wherever it says
read_csv('datasets/file.csv')
to the location on your machine. For example if you unzipped thedatasets.zip
archive into the folderC:/Users/yourname/Documents/Rworkshop
, then you will need to enterread_csv('C:/Users/yourname/Documents/Rworkshop/datasets/file.csv')
. Notice that the forward slash/
is used even on Windows.