R Vetors
Vectors are a basic data object in R. There are six types of vectors, namely logical, integer, double, complex, character and raw. You can use a c() function to create vectors, and the following shows the examples. 1. Logical Vector Output: [1] TRUE FALSE [1] “logical” 2. Integer Vector Output: [1] 44 56 [1] “integer” … Read more