如何用R

时间:2019-05-19 03:16:09

标签: r ggplot2 boxplot

我正在尝试使用这段代码在R中创建图。我想为Offensive_Statistic中的每个变量获取一帧,并为Jet_Lag_boolean中的每个变量提供箱线图,以表示{ {1}}

Measure

我的总体结构正确,但是我的箱形图只是线条,如您在此处看到的:

我正在添加可复制的数据集:

    ggplot(data=df_off_plots, aes(y=Jet_Lag_boolean, x=Measure)) + geom_boxplot() +
  xlab("Measurement Value")+
  facet_wrap( ~ Offensive_Statistic, scales="free_y")+
  theme_bw() + ylab(" Number of Time Zones Crossed")  + coord_flip()

我遇到相同的错误:

enter image description here

1 个答案:

答案 0 :(得分:1)

您收到了xy的订单

library(ggplot2)

ggplot(data = Data, aes(y = Measure, x = Jet_Lag_boolean)) +
  geom_boxplot() +
  # geom_jitter() +
  facet_wrap(~ Offensive_Statistic, scales = "free_y") +
  theme_bw() + 
  # coord_flip() +
  ylab("Measurement Value") +
  xlab("Number of Time Zones Crossed")

reprex package(v0.3.0)于2019-05-18创建