powered by
The set of functions return names of objects directly cast to numeric values.
nums(x)colnums(x)rownums(x)
colnums(x)
rownums(x)
Numeric vector.
Object with names, colnames or rownames attributes.
# base R object a <- 1:10 names(a) <- seq(10, 100, 10) nums(a) # XArray data(exemplar) colnums(exemplar) rownums(exemplar)
Run the code above in your browser using DataLab