1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
library("matrixStats")
rowProds_R <- function(x, FUN = prod, na.rm = FALSE, ..., useNames = TRUE) {
res <- apply(x, MARGIN = 1L, FUN = FUN, na.rm = na.rm)
if (!useNames) names(res) <- NULL
res
}
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Subsetted tests
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
source("utils/validateIndicesFramework.R")
x <- matrix(runif(6 * 6, min = -6, max = 6), nrow = 6, ncol = 6)
storage.mode(x) <- "integer"
# To check names attribute
dimnames <- list(letters[1:6], LETTERS[1:6])
# Test with and without dimnames on x
for (setDimnames in c(TRUE, FALSE)) {
if (setDimnames) dimnames(x) <- dimnames
else dimnames(x) <- NULL
for (rows in index_cases) {
for (cols in index_cases) {
for (na.rm in c(TRUE, FALSE)) {
for (useNames in c(TRUE, FALSE)) {
validateIndicesTestMatrix(x, rows, cols,
ftest = rowProds, fsure = rowProds_R,
method = "expSumLog",
FUN = product, na.rm = na.rm, useNames = useNames)
validateIndicesTestMatrix(x, rows, cols,
fcoltest = colProds, fsure = rowProds_R,
method = "expSumLog",
FUN = product, na.rm = na.rm, useNames = useNames)
}
}
}
}
}
|