Calculate all ratios between x and y
ratioAllComb
calculates all possible pairwise ratios between all individual calues of x and y.
ratioAllComb( x, y, maxLim = 10000, isLog = FALSE, silent = FALSE, callFrom = NULL )
x |
(numeric) vector, numerator for constructing rations |
y |
(numeric) vector, denominator for constructing rations |
maxLim |
(integer) allows reducing complexity by drawing for very long x or y |
isLog |
(logical) adjust ratio calculation to log-data |
silent |
(logical) suppress (less important) messages |
callFrom |
(character) allow easier tracking of message(s) produced |
(numeric) vector with all ratios
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])))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.