如何在条形图的右侧放置分类标签?

时间:2012-11-02 20:44:00

标签: r lattice

在默认的莱迪思条形图中,分类变量标签位于左侧。我也想把它们放在右边。我可以使用scales操纵数字刻度和标签的位置,但在移动分类标签时没有成功。研究help(barchart)和萨卡的书没有得出答案(这并不是说答案不存在)。

1 个答案:

答案 0 :(得分:2)

您使用scales参数进入了正确的轨道。尝试将alternating = 3添加到y比例参数列表中。

barchart(variety ~ yield, data = barley, groups = year, stack = TRUE,
         ylab = "Barley Yield (bushels/acre)",
         scales = list(x = list(rot = 45), y = list(alternating = 3)),
         horizontal = TRUE)

enter image description here