一般来说,您可以通过以下方式将任何转换应用于比例
trans=
争论。当您有特定需求并且值得付出努力时,您可以创建自定义转换。但是,作为第一步,您可以考虑使用内置转换之一,例如。
scales::transform_modulus
(Box-Cox变换的概括)似乎接近你的想法:
library(ggplot2)
library(scales)
set.seed(123)
dat <- data.frame(cat = "A", result = rnorm(87, 0.26, 0.19))
new_values <- data.frame(cat = "A", result = c(3.4, 3.2))
dat <- rbind(dat, new_values)
ggplot(dat, aes(x = cat, y = result)) +
geom_boxplot(outliers = FALSE) +
geom_jitter() +
scale_y_continuous(
trans = scales::transform_modulus(-1),
breaks = c(0, .5, 1.75, 3.5)
)