Variable types of vectors are deducted



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