我遇到了一个奇怪的轴文本对齐问题,如下图所示(您可能需要放大图像以查看问题):
正如您所看到的,x轴文本被绘制在远远低于刻度线的位置,y轴文本位于刻度线的左侧,并且刻度线本身遍布整个地方......可能导致的原因这个行为,(也许更重要的是)可以做些什么来避免这种情况?代码包含在下面,以及大量的dput()。
ZP6 <- ggplot(TestData,
aes(x = Mean, y = Value))
ZP6 <- ZP6 + geom_point()
ZP6 <- ZP6 + geom_errorbarh(aes(x = Mean, xmin = Mean - ZMult * SE,
xmax = Mean + ZMult* SE, height = 0), size = I(1/3))
ZP6 <- ZP6 + facet_grid(Category ~ Year, scales = "free", space = "free")
ZP6 <- ZP6 + scale_x_continuous("Principal Evaluative Dimension", breaks = c(-1, 0, 1)/2)
ZP6 <- ZP6 + scale_y_discrete(name = "")
ZP6 <- ZP6 + opts(title = "Mean Ideology by Characteristic")
print(ZP6)
可以找到TestData的dput()here。
提前感谢您的帮助!