folders in your R Project 2. Add R Script to your folder for homework. The presentation assumes you already setup your R Project for your course and you opened it and are working in it
for Homework #2 4. Add your name at the end of all your material to help the instructor (we need to know who it belongs to when you turn it in!) 2. Save it the HW folder
to type notes to yourself. It’s a way of commenting to yourself and also to anyone reviewing your code (like your instructor). 2. You only need one # to make a comment 4. You can use a lot of “#” to add structure to the document like what was done above 5. I recommend to use “#” and make comments profusely. The more you tell yourself what you’re doing the better.
Always load your libraries at the top of the script 2. tidyverse is a package that we will use a lot. 3. By calling “library(tidyverse)” we are opening the library which assumes it has already been installed in the console using: install.packages(“tidyverse”)