Hi all,
I would like to be able to flag measurements that are not rounded to the decimal point- copying the dataframe below here.
data.frame(
weight = c(62.2, 18, 23, 58, 47),
height = c(174.9, NA, 109, 166, 152)
)
In the above example, I'd like to flag the weight observations of 18, 23, 58, and 47- not 62.2, because it includes a significant figure to the tenth.
For height, I'd like to flag height measurements 109, 166, and 152.
Thanks!