powered by
This function calculates all possible pairwise ratios between all individual calues of x and y, or samples up to a maximum number of combinations.
ratioAllComb( x, y, maxLim = 10000, isLog = FALSE, silent = FALSE, debug = FALSE, callFrom = NULL )
(numeric) vector, numerator for constructing rations
(numeric) vector, denominator for constructing rations
(integer) allows reducing complexity by drawing for very long x or y
(logical) adjust ratio calculation to log-data
(logical) suppress messages
(logical) additional messages for debugging
(character) allow easier tracking of messages produced
set.seed(2014); ra1 <- c(rnorm(9,2,1),runif(8,1,2)) ratioAllComb(ra1[1:9],ra1[10:17]) boxplot(list(norm=ra1[1:9], unif=ra1[10:17], rat=ratioAllComb(ra1[1:9],ra1[10:17])))
Run the code above in your browser using DataLab