Displaying 2 results from an estimated 2 matches for "groupsat".
2010 Oct 29
2
make many barplot into one plot
...dua, tiga, empat)# Do the barplot and save the bar midpointsmp <- barplot(TAB, beside = TRUE, axisnames = FALSE)# Add the individual bar labelsmtext(1, at = mp, text = c("N", "P"),line = 0, cex = 0.5)# Get the midpoints of each sequential pair of bars# within each of the four groupsat <- t(sapply(seq(1, nrow(TAB), by = 2),function(x) colMeans(mp[c(x, x+1), ])))# Add the group labels for each pairmtext(1, at = at, text = rep(c("satu", "dua", "tiga", "empat"), 4),line = 1, cex = 0.75)# Add the color labels for each groupmtext(1, at = colM...
2010 Oct 31
1
R-help Digest, Vol 92, Issue 31
...tiga, empat)# Do the barplot 
and save the bar midpointsmp <- barplot(TAB, beside = TRUE, axisnames = FALSE)# 
Add the individual bar labelsmtext(1, at = mp, text = c("N", "P"),line = 0, cex 
= 0.5)# Get the midpoints of each sequential pair of bars# within each of the 
four groupsat <- t(sapply(seq(1, nrow(TAB), by = 2),function(x) colMeans(mp[c(x, 
[[elided Yahoo spam]]
for each pairmtext(1, at = at, text = rep(c("satu", "dua", "tiga", "empat"), 
4),line = 1, cex = 0.75)# Add the color labels for each groupmtext(1, at = 
colMeans(mp)...