This web page is available as a PDF file
As you read these chapters, you should type some of the examples into your console for practice.
R4ds: Chapter 4 covers material related to the assignment. A few things to note:
4.1: Mac users should use the option
key instead of the Alt
key. For example, to type the <-
assignment operator, Mac users will hold down the option
key and then press the -
key (the minus sign). PC users will hold down the Alt
key and then press the -
key (the minus sign). Remember this throughout the course: the option and alt keys are for Mac and PC computers, respectively.
4.2: Pay careful attention to object names. Like the authors of the text, i_use_snake_case
with lowercase letters and underscores for spacing. Never use actual spaces. Numbers are okay, too.
4.2: Case matters. A
and a
are two different things (objects) in R.
4.4: Try to answer questions 1 and 3. Question 2 might not make sense until after we finish Chapter 3. You do not have to turn in answers for these questions but you should do them to learn an important point (question 1) and an important feature of RStudio (question 3).
R4ds: Chapter 6 where you can practice some of your new-found R skills in RStudio. Practice some of the code from Chapter 4 in RStudio. Find some other code online and practice with it. I stress again that typing code again and again is the best way to learn it.
install.packages()
commands in your scripts. Use the command in the console window or from the Tools
menu. Otherwise, RStudio will try install the package(s) every time you run your script. You’ll probably forget once or twice but you’ll soon remember after you realize you are wasting time.Remember in Notes 01, I said to “save that which is real?” R4ds: Chapter 8 ties that philosophy to R Projects and organization of your R scripts. Study this chapter carefully and follow it closely.
Homework 02 has six parts. The first three parts have one due date and the last three parts follow on the next due date. Please see the assignment schedule for due dates.
On to the assignment!