search for: group_d

Displaying 3 results from an estimated 3 matches for "group_d".

Did you mean: group_id
2011 Apr 28
3
Simple General Statistics and R question (with 3 line example) - get z value from pairwise.wilcox.test
...I am trying to do multiple pairwise Wilcoxon signed rank tests in a manner similar to: a <- c(runif(1000, min=1,max=50), rnorm(1000, 50), rnorm(1000, 49.9, 0.5), rgeom(1000, 0.5)) b <- c(rep("group_a", 1000), rep("group_b", 1000), rep("group_c", 1000), rep("group_d", 1000)) pairwise.wilcox.test(a, b, alternative="two.sided", p.adj="bonferroni", exact=F, paired=T) This gives me the following output: group_a group_b group_c group_b <2e-16 - - group_c <2e-16 0.25 - group_d <2e-16 <2e-16 <2e-16 (whic...
2008 Mar 10
2
Share permissions
...browseable = no valid users = @group_a @group_b @group_c write list = @group_a @group_b read list = @group_c create mode = 777 directory mode = 777 Inside this share there's a lot of sub-folders. The problem is: How can I give to one of these folders permission to a restrict group, like "group_d" that others (group_a-c) won't be able to browse/read/write? SAMBA version is: 3.0.20 and it installed as default Slackware 10.2.0 setup. Thanks and sorry by the english, Jo?o Ferreira
2012 Mar 19
0
Reshape data frame with dcast and melt
...ormula(paste("~", paste(ids, collapse="+"))) data_wide <- sort(data_wide, f = formula_sort) return(data_wide) } d <- data.frame( test_name = c(rep("Test_A", 6), rep("Test_B", 6)), group_name = c(rep("Group_C", 3), rep("Group_D", 3), rep("Group_C", 3), rep("Group_D", 3)), id = c("I1", "I2", "I3", "I4", "I5", "I6", "I1", "I2", "I3", "I7", "I8", "I9"), X = c(NA...