powered by
Change axis scale.
xscale: change x axis scale.
xscale
yscale: change y axis scale.
yscale
xscale(.scale, .format = FALSE)yscale(.scale, .format = FALSE)
yscale(.scale, .format = FALSE)
axis scale. Allowed values are one of c("none", "log2", "log10", "sqrt", "percent", "dollar", "scientific"); e.g.: .scale="log2".
ogical value. If TRUE, axis tick mark labels will be formatted when .scale = "log2" or "log10".
# Basic scatter plots data(cars) p <- ggscatter(cars, x = "speed", y = "dist") p # Set log scale p + yscale("log2", .format = TRUE)
Run the code above in your browser using DataLab