我正在对多个群组的数据进行配对t测试,并希望"导出"这成为一个.csv文件
这是数据:
table <- read.table(text=' group M1 M2
Group 1 0.5592884 0.5592884
Group 1 0.3481799 0.3481799
Group 1 0.2113786 0.2113786
Group 1 0.2817871 0.2817871
Group 2 0.2543952 0.2543952
Group 2 0.2016288 0.2016288
Group 2 0.2098503 0.2098503
Group 2 0.1060097 0.1060097
Group 3 0.2405704 0.2405704
Group 3 0.3200119 0.3200119
Group 3 0.2453895 0.2453895
Group 3 1.3107510 1.3107510
Group 4 0.8600338 0.8600338
Group 4 0.5381423 0.5381423
Group 4 0.7348685 0.7348685
Group 4 0.2969512 0.2969512', header=TRUE)
因为我不想将M1与M2进行比较,而是将各组相互比较,我执行配对的t.test,如下所示:
sig<-lapply(table[2:3], function(x)
pairwise.t.test(x, table$group,
p.adjust.method = "BH"))
但是,由于结果是一个列表,我无法写入.csv文件中:
sink('test.csv')
cat('paired t results')
write.csv(sig)
sink()
我尝试使用capture.output
来解决这个问题,但这会失去分离
sig_output<-capture.output(print(sig))
有没有办法直接将sig
写入csv文件或workouround?
谢谢!
答案 0 :(得分:2)
在print
之后使用sink
:
print(sig)
但请注意,结果是不 CSV文件,与您的代码所说的相反。如果您只想保存p值表,可以执行以下操作:
save_p_values = function (test_data, filename) {
write.csv(test_data$p.value, filename)
}
Map(save_p_values, sig, paste0(names(sig), '.csv'))
要将两个表放在同一个文件中,您需要添加一个区分它们的列;使用
sig_combined = sig %>%
# Extract p-value tables
map(`[[`, 'p.value') %>%
# Convert matrix to data.frame so we can work with dplyr
map(as.data.frame) %>%
# Preserve rownames by saving them into column:
map(tibble::rownames_to_column, 'Contrast') %>%
# Add name of column that t-test was performed on
map2(names(.), ~ mutate(.x, Col = .y)) %>%
# Merge into one table
bind_rows()
write.csv(sig_combined, 'results.csv')