标签: r ggplot2
是否可以更改NA在x轴上的位置?在下面,我将ggplot级别设置为因子级别的第二个位置,但是NA仍然出现在x轴的最后一个位置。
NA
ggplot
答案 0 :(得分:3)
要对scale_x_discrete limits参数使用通行证传递级别:
scale_x_discrete
limits
library(ggplot2) ggplot(dat, aes(Species, Sepal.Width)) + geom_point() + scale_x_discrete(limits = levels(dat$Species))
摘自scale_{x/y}_discrete文档:
scale_{x/y}_discrete
limits:一个字符向量,定义了可能的 规模及其顺序。