
Scale Y-axis with Formatted Percent
scale_y_percent.Rd
This function creates a continuous y-axis scale with numbers formatted according to the current language setting.
Usage
scale_y_percent(..., expand = c(0, 0))
Examples
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
scale_y_number()