2

我正在根据宿舍房间号(4 位数)绘制住户人数。房间号应该是字符串。但是当我使用 as.character(RmNum) 时,轴仍然显示为数字。

meanResidents = c(3, 4, 3, 2, 4, 5)
rmNumber = c(2034, 3043, 4012, 2035, 2022, 3013)
plot(as.character(rmNumber), meanResidents, xlab = as.character(rmNumber))

我希望宿舍号码在轴上垂直显示。有人可以帮我吗?

4

1 回答 1

10

使用该功能axis,您可以指定轴的位置、放置刻度线 ( at) 的位置并选择labels. 该参数las=2表示垂直于轴的标签。

plot(meanResidents, axes=FALSE, xlab="dorms")
axis(2)
axis(1, at=seq_along(meanResidents),labels=as.character(rmNumber), las=2)
box()

剧情

于 2013-06-27T16:19:20.497 回答