如何更改 R 中 x 轴值的方向?

How to change the direction of values on x axis in R?

我在 R 中创建了一个 plot(A, numberOfA)。在 X axis 上,我有 A 的参数,它们的数量太多了。默认情况下,plot 以水平方向显示它们,由于 A 的参数数量,当您看到它时并不感兴趣。我想知道 R 中的 plot 函数中是否存在参数以将 X axis 中的参数方向更改为垂直。我用谷歌搜索,但找不到。

参见?par中的las

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.

Also supported by mtext. Note that string/character rotation via argument srt to par does not affect the axis labels.

所以 plot(A, numberOfA, las = 3) 应该能让您得到想要的结果。


并快速查看实际效果:

plot(factor(letters), seq_along(letters))

plot(factor(letters), seq_along(letters), las = 3)