并排箱图中的错误

时间:2018-08-05 10:44:34

标签: r

我正在尝试为R中的箱形图编写代码,但出现错误消息:

  

x [flooring(d)] + x [ceiling(d)]错误,二进制运算符的非数字参数。

我的数据集是Cars_csv,我必须带上所有具有4和6缸的汽车,并使用并排箱线图绘制它们与高速公路的燃油经济性。 我不知道该怎么解决! 有人可以帮帮我吗! 代码就像

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.11/dist/vue.js"></script>
<div id='root'>
 <button type="button" @click="ajaxCall">Click ME</button>
  <div v-for="obj in project">
   Title:  {{obj.title}}
   <p>
   Object:{{obj}}
    </p>
  </div>
</div>

1 个答案:

答案 0 :(得分:0)

我觉得您正在寻找类似的东西

library(dplyr)
library(ggplot2)

mtcars %>%
    filter(cyl == 4 | cyl == 6) %>%
    ggplot(aes(cyl, mpg))+
    geom_boxplot()+
    facet_wrap(~cyl, scales = "free_x")+
    scale_x_continuous(breaks = c(4,6))

enter image description here