Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 233 Bytes

integer.md

File metadata and controls

15 lines (13 loc) · 233 Bytes
1:3
#> [1] 1 2 3
1L
#> [1] 1
-2147483647L
#> [1] -2147483647
as.integer(c("23", "456"))
#> [1]  23 456

NA_integer_
#> [1] NA

Created on 2020-03-03 by the reprex package (v0.3.0)