我对 R 还是比较陌生,所以非常感谢这里的任何帮助。
我创建了一个李克特条形图,但图中显示的一些百分比重叠。我想知道如何防止这种重叠发生?我阅读了有关 ggrepel 的信息,并尝试合并 ggrepel 代码,但没有成功。有谁知道是否存在代码来询问绘图上显示的百分比(即来自 plot.percents=TRUE)不重叠?
这是我的代码,没有尝试合并ggrepel:
likert.bar.plot(likert_Prevention.ALL, plot.percents=TRUE, plot.percent.high= FALSE, plot.percent.low=FALSE,
center = 3, low.color = "grey72", high.color = "red3", neutral.color = "lightsalmon",
legend.position = "bottom", text.size=3.5)
和我尝试合并ggrepel:
likert.bar.plot(likert_Prevention.ALL, plot.percents=TRUE, plot.percent.high= FALSE, plot.percent.low=FALSE,
center = 3, low.color = "grey72", high.color = "red3", neutral.color = "lightsalmon",
legend.position = "bottom", text.size=3.5) + labs(geom_label_repel()) + labs(geom_text_repel())
下面是当前重叠百分比的裁剪图像:
提前感谢您的帮助和时间!如果需要任何澄清,请告诉我,因为这是我在 stackoverflow 上的第一篇文章。