闪亮:R:wilcox.test:改变"价值" -output

时间:2017-07-09 21:03:25

标签: r shiny statistics

我正在制作一个小巧的应用程序,允许用户上传一些数据并在其上运行一些统计数据。我现在有两件事要在输出中改变。 This is the output at the moment 但是,正如您所看到的,数据部分完全没有说什么,我更喜欢输出:data:Group1和Group2 我也希望n作为主题数量(此处:109,114,115)。

这是产生当前输出的代码:

statsPaired <- function(boolean_dt1, boolean_dt2){
  for (i in 4: (length(boolean_dt1))){
    print(wilcox.test( (unlist(boolean_dt1[,i, with = FALSE])), unlist(boolean_dt2[,i, with = FALSE]) , paired = T, exact= FALSE))
    cat("\n")
  }
}

0 个答案:

没有答案