Social Media Research

02 R Data Analysis


Question

create a vector with the numbers 15 to 20


Answer

without variable storage a) c(15:20) b) 15:20 c) c(15,16,17,18,19,20)

with storage a) v <- c(15:20)

usw.




Comments