description |
---|
Its good practice to check that you are dealing with
you should use a class function(). here are some examples
x <- 2
class(x)
# should display "numeric"
y <- "2"
class(y)
# should display "character"
description |
---|
Its good practice to check that you are dealing with
you should use a class function(). here are some examples
x <- 2
class(x)
# should display "numeric"
y <- "2"
class(y)
# should display "character"