ggplot2 中的项目之间是否有最小垂直间距?与我的出版商相关的排版书呆子们很不高兴。 这段代码似乎表明存在绝对最小值。
library(ggplot2)
ggplot(mtcars, aes(x = hp, y = mpg, col = as.factor(cyl))) +
geom_point() +
theme(legend.key.spacing.y = unit(0.001, "pt"))
ggplot(mtcars, aes(x = hp, y = mpg, col = as.factor(cyl))) +
geom_point() +
theme(legend.key.spacing.y = unit(0.001, "pt"))
library(ggplot2)
ggplot(mtcars, aes(x = hp, y = mpg, col = as.factor(cyl))) +
geom_point() +
theme(legend.key.spacing.y = unit(-6, "pt"))
创建于 2025-01-08,使用 reprex v2.0.2