如何使(条形)图的 y 轴标签平行于 X 轴而不是平行于 Y 轴?
问问题
331533 次
5 回答
91
使用par(las=1)
.
见?par
:
las
numeric in {0,1,2,3}; the style of axis labels.
0: always parallel to the axis [default],
1: always horizontal,
2: always perpendicular to the axis,
3: always vertical.
于 2009-12-01T20:56:27.330 回答
19
正如Maciej Jończyk所说,您可能还需要增加利润
par(las=2)
par(mar=c(8,8,1,1)) # adjust as needed
plot(...)
于 2015-01-25T17:29:24.573 回答
15
您需要使用 theme() 函数,如下将 x 轴标签旋转 90 度:
ggplot(...)+...+ theme(axis.text.x = element_text(angle=90, hjust=1))
于 2015-12-03T13:10:40.913 回答
1
首先,为图表创建数据
H <- c(1.964138757, 1.729143013, 1.713273714, 1.706771799, 1.67977205)
M <- c("SP105", "SP30", "SP244", "SP31", "SP147")
二、给一个图表文件命名
png(file = "Bargraph.jpeg", width = 500, height = 300)
三、绘制条形图
barplot(H,names.arg=M,ylab="Degree ", col= rainbow(5), las=2, border = 0, cex.lab=1, cex.axis=1, font=1,col.axis="black")
title(xlab="Service Providers", line=4, cex.lab=1)
最后,保存文件
dev.off()
输出:
于 2018-10-20T09:03:48.650 回答