I don't know why I'm finding this so difficult, but I'm trying increase the number of decimal places in my printed output.
The current output looks like this:
rating
0.98
0.99
0.87
I would like it to look as such:
rating
0.9800
0.9900
0.8700
I tried df %>% mutate(rating = round(rating, 4)
but that just returns the same results with only two decimal places.