Open mwillumz opened 9 years ago
df <- data.frame(id = 1:10, number = runif(10,0,0.01))
The following is not a satisfactory way to format small percentage values due to the rounding of the y axis:
df %>% ggvis(~id, ~number) %>% layer_points() %>% add_axis("y", format = "%")
If I use the following approach I consistently get a rounding precision error for one or more of the axis labels.
df %>% ggvis(~id, ~number) %>% layer_points() %>% add_axis("y", format = "p")
I have also seen this happening. Is there any current working solution?
The following is not a satisfactory way to format small percentage values due to the rounding of the y axis:
If I use the following approach I consistently get a rounding precision error for one or more of the axis labels.