Variable types of vectors are deducted
- We'll learn a lot more about vectors later
- TODO: Mixed data?
examples/vectors/data_types_vectors.R
y = c(2, 7, 3) class(y) # numeric the_truth = c(TRUE, FALSE, TRUE, TRUE, FALSE) class(the_truth) # logical length(the_truth) # 5