How can you change the class of an object in R? (forced coercion)
as.<desired class>()
e.g.
as.numeric("1")
as.character(1:3)