Displaying 1 result from an estimated 1 matches for "dietf".
Did you mean:
diet
2006 May 15
1
pattern instead of colors in bargraph
Hi
I am using R 2.2.0 under SuSE 10.
I am creating a graph by using the following script:
DietF <- read.csv ("DietFem.csv", header = TRUE, as.is=TRUE)
attach (DietF)
PP <- array(c(bud,flower,shoot,melon,seed.pod,detritus,other), c(16,7))
M <- paste (Month)
detach (DietF)
png(filename="DietF.png", width=960)
barplot (t(PP), ylim=c(0,1), names.arg=M, space=0.3, ylab...