search for: varset1

Displaying 1 result from an estimated 1 matches for "varset1".

Did you mean: varset
2007 Aug 09
1
plot table with sapply - labeling problems
...st<-as.data.frame(cbind(round(runif(50,0,5)),round(runif(50,0,3)),roun d(runif(50,0,4)))) sapply(test, table)->vardist sapply(test, function(x) round(table(x)/sum(table(x))*100,1) )->vardist1 par(mfrow=c(1,3)) sapply(vardist1, function(x) barplot(x, ylim=c(0,100),main="Varset1",xlab=names(x))) par(mfrow=c(1,1)) Names don't show up although names(vardist) works. Also I would like to put a single Title on this plot instead of repeating "Varset" three times. Any hints appreciated. Thanx Herry