如何在ggplot中为y轴重新排序文本标签

时间:2017-03-02 20:17:16

标签: r ggplot2 label yaxis

我是R的新手。

我正在尝试在我创建的图表上重新排序y轴上的刻度线。有没有人可以告诉我如何重新安排/选择他们排队的订单?它们的标签只是来自" wheel_spot"向量。我想要展示的是我的图表中有多少点落在每个类别中,但如果标签以特定顺序流动,我的图表会更有意义。

现在是图表:

enter image description here

我的代码是:

graph <- ggplot(data=new_data, aes(x=bucket,y=wheel_spot, color=identifier)) + geom_jitter() + facet_grid(bucket~.)
graph

提前谢谢!

1 个答案:

答案 0 :(得分:0)

您可以在ylab中提供新订单:

graph <- ggplot(data=new_data, aes(x=bucket,y=wheel_spot, color=identifier)) + geom_jitter() + facet_grid(bucket~.) + ylab(labels=c(...))