R_Code-2.r (193B)
1 # How do you declare an explicitly integer variable (e.g., the number 14) 2 # so that its class returns "integer" instead of the default floating-point "numeric"? 3 4 num <- 12L 5 print(class(num))
bscComprehensive codebase and cou... | |
| Log | Files | Refs | Activity | README | LICENSE |
R_Code-2.r (193B)
1 # How do you declare an explicitly integer variable (e.g., the number 14) 2 # so that its class returns "integer" instead of the default floating-point "numeric"? 3 4 num <- 12L 5 print(class(num))