what does <dbl> in R stand for?

It is a data type defined to hold numeric values with decimal points (dbl came from double). The alternative, integer, is defined for integer numbers.
Not so relevant nowadays for most situations (and most numeric values can be treated as double, even if integers), but in the past there could a big difference in performance and memmory use depending on wich type was choosen.

2 Likes