
Robert S. answered 11/22/19
R Developer and Analyst
The "L" next to a whole number denotes an integer type.
For comparisons, run the following in R:
```
is.integer(1) # Outputs to FALSE. This is because it is a double type (run typeof(1)).
is.integer(1L) # Outputs to TRUE.
```
It looks off-putting, I agree: it is a strange way for R to differentiate between an integer "1" and a double "1" even though they're the same value!