我试图在ggplot2库中绘制一个图形,并添加了ggrepel:
set.seed(42)
ggplot(mtcars) +
geom_point(aes(wt, mpg), size = 5, color = 'grey') +
geom_label_repel(aes(wt, mpg, fill = factor(cyl), label = rownames(mtcars)),
fontface = 'bold', color = 'white',
box.padding = 0.35, point.padding = 0.5,
segment.color = 'grey50') +
theme_classic(base_size = 16)
但是我收到了以下错误:
Error in convertUnit(x, unitTo, "x", "dimension", "x", "dimension", valueOnly = valueOnly) : 'x' argument must be a unit object
感谢?
答案 0 :(得分:3)
错误是由以下原因引起的:
box.padding = 0.35, point.padding = 0.5
ggrepel version 0.6.11已更改为接受0.35
等数字或unit(0.35, "lines")
返回的值。
如果您在版本0.6.11之前使用ggrepel,请尝试使用:
unit(0.35, "lines"), unit(0.5, "lines")
我的猜测是你可能正在使用CRAN的ggrepel 0.6.5。您可以考虑从CRAN更新到最新版本,即0.7.0。