Ch. 2 | Question 3

Chapter 2 | Question 3

Which code can you use if you want to create a numeric vector with your subjects’ reaction times 550, 466 and 683 ms?

v <- 550, 466, 683

v <- cbind(550, 466, 683)

v <- c(550, 466, 683)

v <- 550; 466; 683