Types de vecteurs en r

#Vectors are the most basic R data objects and there are six types of 
# atomic vectors. They are logical, integer, double, complex, character and raw.
#Logical (True, False)
#Double - floats or decimal numbers
#Integer - numbers
#Character - strings
Kwams