[1] -4
A vector in R is an ordered collection of values. The individual values in a vector may be referenced with an index value beginning with 1. The most basic way to create a vector is to use the c() function.
Note that a vector can only contain one type of value. R will “coerce” values to enforce this rule.
Larry Curly Moe
180 150 210
Alternatively
A number is not just a number, it’s a vector of length 1.