You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#----Vectors---- # A vector is a one-dimensional array. # We can create a vector with all the basic data type # The simplest way to build a vector is to use the c command. # Creating a Numerical Vector: vec_num <- c(1, 10, 49) vec_num class(vec_num) # Creating a Character Vector: vec_chr <- c("a", "b", "c") vec_chr class(vec_chr) # Creating a Bo…