How to combine your data with a teammate:

 

  1. Down load each students data on the same computer
  2. Each student loads their data into R
    1. stresschill1 <- read.csv("user_data_download1.csv",head=T)
    2. stresschill2 <- read.csv("user_data_download2.csv",head=T)
  3. Use the rbind command
    1. team <- rbind(stresschill1, stresschill2)