Mastery Check – Basics of R

See the course material for the code to create the dataset!

Here is the data set that we are using for this R session. Simply copy and paste this into an r script and run everything. This will create a df object for you to answer the questions with. Be sure to include the set.seed function.
set.seed(1234)
ID = 1:100
length_mm = rnorm(100,30,1)+ID/5
mass_g = length_mm + rnorm(100,5,.3)
habitat_type = c(rep("Urban",30),rep("Rural",10),rep("Suburban",60))

df <- data.frame(ID,mass_g,length_mm,habitat_type)

Scroll to Top