ggplot2中有最小垂直间距吗?

问题描述 投票:0回答:1

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"))
r ggplot2
1个回答
0
投票
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

© www.soinside.com 2019 - 2024. All rights reserved.