Lines Matching refs:ties

71   for (ties in c("max", "min", "average", "first", "last", "dense")) {  globalVar
72 cat(sprintf("ties.method = %s\n", ties))
74 y1 <- matrixStats::rowRanks(x, ties.method = ties)
75 if (ties != "last" || getRversion() >= "3.3.0") {
76 y2 <- rowRanks_R(x, ties.method = ties)
80 y3 <- matrixStats::colRanks(tx, ties.method = ties)
84 y1 <- matrixStats::colRanks(x, ties.method = ties)
85 if (ties != "last" || getRversion() >= "3.3.0") {
86 y2 <- colRanks_R(x, ties.method = ties)
90 y3 <- matrixStats::rowRanks(tx, ties.method = ties)
105 for (ties in c("random")) { globalVar
106 cat(sprintf("ties.method = %s\n", ties))
109 y0 <- rowRanks_R(x, ties.method = ties)
110 y1 <- matrixStats::rowRanks(x, ties.method = ties)
121 y1list <- replicate(nsamples, matrixStats::rowRanks(x, ties.method = ties), simplify = FALSE)
127 y0 <- colRanks_R(x, ties.method = ties)
128 y1 <- matrixStats::colRanks(x, ties.method = ties)
138 y1list <- replicate(nsamples, matrixStats::colRanks(x, ties.method = ties), simplify = FALSE)
164 for (ties in c("max", "min", "average", "first", "last", "dense", "random")) { globalVar
165 cat(sprintf("ties.method = %s\n", ties))
167 y1 <- matrixStats::rowRanks(x, ties.method = ties, useNames = useNames)
168 if (ties != "last" || getRversion() >= "3.3.0") {
169 y2 <- rowRanks_R(x, ties.method = ties, useNames = useNames)
173 y3 <- matrixStats::colRanks(t(x), ties.method = ties, useNames = useNames)
177 y1 <- matrixStats::colRanks(x, ties.method = ties, useNames = useNames)
178 if (ties != "last" || getRversion() >= "3.3.0") {
179 y2 <- colRanks_R(x, ties.method = ties, useNames = useNames)
183 y3 <- matrixStats::rowRanks(t(x), ties.method = ties, useNames = useNames)
187 … y1 <- matrixStats::colRanks(x, ties.method = ties, preserveShape = TRUE, useNames = useNames)
188 if (ties != "last" || getRversion() >= "3.3.0") {
189 y2 <- colRanks_R(x, ties.method = ties, preserveShape = TRUE, useNames = useNames)