首页 > 解决方案 > 如何在 facet_wrap 中使用 ggpubr 或 rstatix 申请循环以进行多重比较统计

问题描述

我对编码很陌生,并且一直在自学 R。我尝试编写一些代码来对具有自由比例的 facet_wrap 图执行多重比较统计,但我无法弄清楚如何在 facet 中实现 for 循环。或者,我也尝试使用 rstatix 包进行统计,但我无法打印使用 ggpubr 的 stat_compare_means 函数或使用 rstatix 的 stat.test 计算的 t 检验的 p 值,因为我一直在努力弄清楚y_position 用于具有自由尺度的刻面。这是我写的代码:

library(tidyverse)
library(dplyr) 
library(ggplot2)
library(readxl)
library(scales)
library(stringr)
library(extrafont)
library(viridisLite)
#library(RColorBrewer)
library(ggpubr)
library(reshape2)
library(rstatix)
#library(plotly)
#library(ggpmisc)
LungExtracellularPanel <- read_excel("~/Box/Welm Labs Ubox/Pavitra Viswanath/Flow Cytometry/PVIMM-2 E0771 09-01-2020/Data Analysis/Lung 09-16-2020.xlsx")
df=as.data.frame(LungExtracellularPanel)
df$collection <- str_split_fixed(df$Sample, " ",2)[,1]
rdf <- melt(df,id.vars=c("Sample","collection"))

swr = function(string, nwrap=25) {
  paste(strwrap(string, width=nwrap), collapse="\n")
}
swr = Vectorize(swr)
rdf$variable2=swr(rdf$variable)

stat.test <- rdf %>% 
  add_y_position(y="value", fun="max", scales="free", step.increase = 0.1)
group_by(variable2) %>%
t_test(value~collection)
stat.test

#stuff <- combn(unique(rdf$collection),2)
# a <- NULL
# my_comparisons = list()
# j = 0
# for(i in 1:dim(stuff)[2]){
#   a <- as.character(stuff[,i])
#   g1 = rdf[which(rdf$collection == a[1]),]$value
#   g2 = rdf[which(rdf$collection == a[2]),]$value
#   if(mean(g1, na.rm=T) != 0 || mean(g2,na.rm=T) != 0){
#     j = j + 1
#     my_comparisons[[j]] <- c(a[1],a[2])
#   }    
# }

p <- ggplot(data = rdf, mapping = aes(x = variable2, y = value, fill =collection))
p <- p + geom_violin(alpha=0.3, scale="width", position = position_dodge(width=1), size=0.5, facet.by="variable2", scales="free")
p <- p + geom_boxplot(alpha=0.7, outlier.shape=NA, position = position_dodge(1), scales="free")
p <- p + geom_point(position = position_jitterdodge(jitter.width=0.1,jitter.height=0, dodge.width = 1))
#p <- p + geom_jitter(position=position_jitter(width=0.1,height=0))
p <- p + theme_bw()
p <- p + theme(axis.text.x = element_blank())
p <- p + scale_fill_viridis_d(option = "D")
p <- p + facet_wrap(~variable2, scales="free", ncol=6)
p <- p + scale_y_continuous(expand = expansion(mult = c(0.1, 0.14)))
p <- p + stat_compare_means(method = "anova", size=3, hjust=0.7, label.y.npc = 'top', family="Arial", fontface="bold") 
#p <- p + stat_pvalue_manual(stat.test, label="p") 
#p <- p + stat_compare_means(comparisons = my_comparisons, size=3, family= "Arial", face= "bold")
p <- p + labs(title="Spleen Extracellular Panel Analysis")
p <- p + ylab("% Live Cells") + xlab(" ")
p <- p + theme(text=element_text(family="Arial", face = "bold"))
p

这是情节的样子:

在此处输入图像描述

标签: rggplot2ggpubr

解决方案


推荐阅读