在R中倾斜boxplot的x标签

时间:2016-10-03 21:21:37

标签: r ggplot2 boxplot

我试图寻找一种方法来倾斜我的boxplot但从未落入正确的名字位置。

我为每个模型设置了不同精度的数据帧Accuracy,我想在箱线图中显示可变性。

  sample iteration poly_eps.001_C1 poly_eps.01_C1 poly_eps.1_C1 poly_eps.001_C10 poly_eps.01_C10
(int)     (int)           (dbl)          (dbl)         (dbl)            (dbl)           (dbl)
    1         1       0.9841270      0.9841270     0.9761905        0.9761905       0.9761905
    1         2       0.9680000      0.9680000     0.9520000        0.9600000       0.9600000
    1         3       0.9523810      0.9523810     0.9603175        0.9365079       0.9365079
    1         4       0.9600000      0.9600000     0.9600000        0.9520000       0.9520000
    1         5       0.9523810      0.9523810     0.9682540        0.9444444       0.9444444

然后我的代码

     # algorithms helpsvme only getting the desired features for the boxplot
  algorithms = names(accuracies_table[-c(1:2)])  

  boxplot(accuracies_table[algorithms], col = color ,
      main = "Polynomial KSVM Models", ylab = "Accuracy",
      las=2,ylim = c(0.90,1))

enter image description here

有人可以帮助我倾斜x轴标签吗?或者如何在ggplot2中完成?

1 个答案:

答案 0 :(得分:1)

试试这个:

{{1}}

enter image description here