search for: perm1

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

Did you mean: perm
2010 Apr 24
2
multiple paired t-tests without loops
...oop version of the program working, but it would take a few weeks to complete the job and I was hoping that someone could tell me how to do it faster? thank you kindly, Matthew Finkbeiner -------------------------------- "Sample" "C1" "C2" "PermN" 1 5 8 perm1 1 4 3 perm1 1 6 4 perm1 2 2 6 perm1 2 3 1 perm1 2 7 4 perm1 1 8 5 perm2 1 3 4 perm2 1 6 4 perm2 2 6 2 perm2 2 1 3 perm2 2 7 4 perm2 1 5 8 perm3 1 3 4 perm3 1 6 4 perm3 2 2 6 perm3 2 1 3 perm3 2 7 4 perm3 1 8 5 perm4 1 4 3 perm4 1 4 6 perm4 2 6 2 perm4 2 3 1 perm4 2 4 7 perm4 1 5 8 perm5 1 4 3 perm5...
2018 Mar 23
1
stack dump at -early-cse-memssa twice
...n by Oleg Mazurov and Isaac Gouy * */ // n auf 7 festgenagelt // printf gelöscht // Ternäroperator umgeschrieben // %2 ~> &1 // inline gelöscht int max(int a, int b) { // return a > b ? a : b; if (a > b) { return a; } return b; } int fannkuch7() { int perm[7]; int perm1[7]; int count[7]; int maxFlipsCount = 0; int permCount = 0; int checksum = 0; int i; for (i=0; i<7; i+=1) perm1[i] = i; int r = 7; while (1) { while (r != 1) { count[r-1] = r; r -= 1; } for (i=0; i<7;...
2005 Oct 07
1
permutational Kolmogorov-Smirnov p-value for paired data
Dear List, I am new to R and find it very powerful. I would like to compute the permutational p-value for paired data using Kolmogorov-Smirnov, but the built-in ks.test does not have this option, unlike the t.test which has a paired=TRUE flag. Has someone written a library or a routine that does this? Alternatively, if someone could show me how to do pair-wise permutations in R, then I can