Displaying 1 result from an estimated 1 matches for "commercesydney".
2007 Aug 21
2
Stacked Bar
...15 Rows?
2. How can I put the legend in a particular position (eg., in the top or bottom or right or left)? How can I put legend using a number of rows (eg., using two or three rows)?
Once again thank you very much for your time.
Regards,
Debabrata (Deb)
Statistician
NSW Department of CommerceSydney, Australia.
The Code:
library(lattice)
library(graphics)
x <- matrix(1:75, ncol= 5)
dimnames(x)[[2]] <- paste("Method", 1:5, sep="")
dimnames(x)[[1]] <- paste("Row", 1:15, sep="")
# library: graphics
barplot(x,
besi...