Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 183 Bytes

Typecasting.md

File metadata and controls

21 lines (16 loc) · 183 Bytes

Typecasting

> x <- "4"
> typeof(x)
[1] "character"

as.numeric

> typeof(as.numeric(x))
[1] "double"

as.integer

> typeof(as.integer(x))
[1] integer