How to combine your data with a teammate:
- Down
load each students data on the same computer
- Each student
loads their data into R
- stresschill1
<- read.csv("user_data_download1.csv",head=T)
- stresschill2
<- read.csv("user_data_download2.csv",head=T)
- Use
the rbind command
- team
<- rbind(stresschill1, stresschill2)