I am plotting x and y based on coordinates, the color is a third continuous variable with 6 decimals.
ggplot(data, aes(x=x, y=y, color=continuous_variable)) +
geom_point()
Currently, the color is creating the gradient based on 3 decimals but I would like it to show 5.
Is there a way to increase the number of decimal places ggplot uses to create the gradient?