Vector | R Documentation |
A symbolic vector is represented by VecBasic
S4 class.
Vector
and V
are constructors of VecBasic
.
Vector(x, ...) V(...)
x, ... |
R objects. |
There are some differences between Vector
and V
.
For double values, V
will check whether they are
whole number, and convert them to integer if so.
Vector
will not.
V
does not accept "non-scalar" arguments,
like Vector(c(1,2,3))
.
A VecBasic
.
a <- S("a") b <- S("b") Vector(a, b, a + b, 42L) Vector(list(a, b, 42L)) Vector(1,2,a) V(1,2,a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.