Contact: aviboots(AT)netvision.net.il
39,850 questions
51,771 answers
573 users
vec <- c(4, 6, 8, 1, 5) print(typeof(vec)) # run: # # [1] "double" #
vec <- c(9, 8, 3.14, TRUE, "r programming") print(typeof(vec)) # run: # # [1] "character" #
vec <- c(4L, 6L, 8L, 1L, 5L) print(typeof(vec)) # run: # # [1] "integer" #