Skip to content
Prev 82352 / 398513 Next

ploting the two sets of data side by side

Or building on that solution but eliminating the do.call and lapply:

f <- function(x) table(cut(x, breaks = seq(0, 30, 5)))
barplot(rbind(f(x), f(y)), beside = TRUE)
On 12/7/05, Jacques VESLOT <jacques.veslot at cirad.fr> wrote: