We will ignore everything above this

Before starting the activity

  1. In the space below create an R code chunk that saves the value 15 to a variable called b.
b <- 15
  1. Create a new code chunk below and type code that will calculate b to the 10th power.
b^10
## [1] 576650390625
  1. Now review the code chunk below. It lists the calories for the meals I ate yesterday and then adds up my calories for the day. In the empty code chunk write code that will save a list called scores with the values 25,65,33 and find the sum of those values.
calories <- c(550,920,1000)
sum(calories)
## [1] 2470
# Delete this comment and write code that creates a list of scores: 25,65,33 and finds the sum of that list
scores <- c(25,65,33)
sum(scores)
## [1] 123
  1. Create two lists of numbers of the same size. Try adding the two lists, explain what is happening in the output. Try multiplying lists also. What happens if you try this but the lists aren’t the same size?
list1 <- c(6,3,2,1)
list2 <- c(0,3,1,2)
list3 <- c(1,2,4)
list4 <- c(5,8)

list1+list2
## [1] 6 6 3 3
# this adds each piece of the lists together to make a new list

list1*list2
## [1] 0 9 2 2
# this multiplies each piece of the lists together to make a new list

list1+list3
## Warning in list1 + list3: longer object length is not a multiple of shorter
## object length
## [1] 7 5 6 2
# this provides an error because they are not the correct length

list1+list4
## [1] 11 11  7  9
# even though the lists are not the same size, list1 is exactly double the size of list 4. So, R just repeats list4 twice (so that it is now the same length of list1) and adds it to list1
  1. Type mpg into the console below. Describe the output.

The console is the pane below this pane. We are currently in the workspace, the pane below this is where coding happens. So, type mpg down there. It will output a large data set about cars

  1. You can’t see all of the output from the previous line of code and the data is not in your environment. To add the data to your environment, save mpg to some variable name, just like you did with 15 in problem 1
car_data <- mpg
  1. Click on the new thing in your environment which has the mpg data, describe what happens

This opens up a data set in the R workspace that looks way nicer and allows you to scroll around to explore.