how can i determine type of variable in R?
t <- seq(from=0, to=10, by=2)
p <- 2
t and p are both: is.numeric, is.atomic, is.vector, not is.list, typeof double, class numeric.
How to determine that p is just only a number and that t is something more?