# Create a numeric vector with the c (which means combine or concatenate) function. # We will learn about functions soon! > num_vector <- c(1, 4, 3, 98, 32, -76, -4) # Create a character vector. Always use "" to delimit text strings! > char_vector <- c("blue", "red", "green") # Create a logical or boolean vector. Don't use "" or R will consider this as text strings. > bool_vector <- c(TRUE, TRUE, FALSE) #It is also possible to use abbreviations for logical vectors. > bool_vector2 <- c(T, T, F)