R:按因子分割度量图直方图

时间:2015-11-20 10:57:11

标签: r metricsgraphicsjs

我有一个类似于以下内容的数据框:

'data.frame':   400 obs. of  4 variables:
 $ admit: Factor w/ 2 levels "rejected","accepted": 1 2 2 2 1 2 2 1 2 1 ...
 $ gpa  : num  3.61 3.67 4 3.19 2.93 3 2.98 3.08 3.39 3.92 ...

现在我想使用metricsgraphics包将其转换为GPA的直方图,但是将数据按因子分开' admit'。这是怎么做到的?

使用ggplot我可以执行以下操作:

ggplot(data, aes(gpa)) + 
geom_histogram(aes(fill=admit, y=..density..),
           position="dodge",
           binwidth=0.1
          )

但我正在研究如何使用metricsgraphics专门执行此操作。 我目前有

mjs_plot(data, x = gpa) %>%
     mjs_histogram(bins = 80)

但当然这并不是因素所致。

1 个答案:

答案 0 :(得分:1)

我认为您必须制作每个地块并将其排列成网格。来自package vignette

moar_plots <- lapply(1:7, function(x) {
  mjs_plot(rbeta(10000, x, x), width="250px", height="250px", linked=TRUE) %>%
    mjs_histogram(bar_margin=2) %>%
    mjs_labs(x_label=sprintf("Plot %d", x))
})

mjs_grid(moar_plots, nrow=4, ncol=3, widths=c(rep(0.33, 3)))