繁体   English   中英

分组箱线图 r ggplot2

[英]grouped boxplot r ggplot2

我有 5 列数值数据(Equipment、Hyiene.items 等)和 1 列分类数据(A 或 D)。 我想制作按类别分组的数值数据的分组箱线图,但我找不到方法:

 head(sc)
  Equipment Hygiene.items Patient Near.bed Far.bed Care
1         0             0       1        5       1    D
2         1             4       1        2       0    D
3         3             1       1        2       0    D
4         0             2       2        3       1    A
5         1             2       1        5       2    A
6         1             2       1        1       1    A

boxplot(sc~sc$Care)看起来是最合适的方式吧? 我喜欢 ggplot2,但看起来我不能简单地这样做:

ggplot(sc, aes(y=sc)) + 
  geom_boxplot(aes(fill=Care))

编辑:我喜欢的外观:

我想我所追求的是我在 Matlab 中制作的这个东西(很久以前):

在此处输入图片说明

或者这里的第四张图: Plotly

在此处输入图片说明

到目前为止我所拥有的:

library(ggplot2)
library(RColorBrewer)

ggplot(melt_A,aes(x=Care,y=value,fill=Care))+geom_boxplot(ylim=c(1,6,1))+facet_grid(~variable)+
labs(x = "Care", y = "Surface contacts",color="Care" )+
  scale_y_continuous(limits = c(-0, 6))+
  scale_fill_brewer(palette="Purples")+
  theme_bw()+
  theme(strip.background=element_rect(fill="black"))+
  theme(strip.text=element_text(color="white", face="bold"))

问题

如何将护理标签从 D、H、Me 更改为其他内容? 例如直接护理、家政服务、药物治疗等...

固定:

在这里找到答案: 堆栈

我在我的 ggplot 命令中添加了以下内容

scale_fill_brewer(palette="Purples",
  labels = c("Direct care", "Housekeeping","Medication    round","Mealtimes","Miscellaneous care","Personal care"))

在此处输入图片说明

您的 data.frame 格式不正确。 我将您的数据命名为“A”。 你需要

library(reshape2)
melt_A<-melt(A)

现在,您拥有用作 ID 的“Care”变量和具有适用于 ggplot2 的 data.frame 中的值的变量

melt_A
   Care      variable value
1     D     Equipment     0
2     D     Equipment     1
3     D     Equipment     3
4     A     Equipment     0
5     A     Equipment     1
6     A     Equipment     1
7     D Hygiene.items     0
8     D Hygiene.items     4
9     D Hygiene.items     1
10    A Hygiene.items     2
11    A Hygiene.items     2
12    A Hygiene.items     2
13    D       Patient     1
14    D       Patient     1
15    D       Patient     1
16    A       Patient     2
17    A       Patient     1
18    A       Patient     1
19    D      Near.bed     5
20    D      Near.bed     2
21    D      Near.bed     2
22    A      Near.bed     3
23    A      Near.bed     5
24    A      Near.bed     1
25    D       Far.bed     1
26    D       Far.bed     0
27    D       Far.bed     0
28    A       Far.bed     1
29    A       Far.bed     2
30    A       Far.bed     1

这是您可能想要对数据进行的一种可能的绘图

ggplot(melt_A,aes(x=Care,y=value,fill=Care))+
geom_boxplot()+
facet_wrap(~variable)

在此处输入图片说明

您需要将所有列收集到一个单独的列中,然后将它们映射到 x,并将它们的计数映射到 y。 然后,您只需要将颜色映射到此列中的每个因素,并为每种类型的护理手动设置 alpha。

---
title: "Boxplots"
output: html_document
---

```{r setup, include=FALSE}
library(tidyverse)
library(ggplot2)


```

```{r base-data}
a <- tibble(Equipment     = sample(1:10, 50, replace = T),
            Hygiene.items = sample(1:10, 50, replace = T),
            Patient       = sample(1:10, 50, replace = T),
            Near.bed      = sample(1:10, 50, replace = T),
            Far.bed       = sample(1:10, 50, replace = T),
            Care          = sample(c("A", "D"), 50, replace = T)) %>% 
  gather(key = "Context", value = "Count", -Care)



```


```{r boxplot, echo=FALSE}

ggplot(data = a) +

  geom_boxplot(aes(x = Context,
                   y     = Count,
                   fill  = Context,
                   alpha = Care)) +

  scale_alpha_manual(values = c(0.7, 1))

```

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM