2010/12/21 Gerrit Eichner <gerrit.eich...@math.uni-giessen.de>:
> par( mar = c( 3, 13, 2, 1), cex = 0.8)
>
> barplot( x, names.arg = NULL, horiz = TRUE, axes = FALSE)
>
> axis( side = 1, at = c( seq( 0, 80, by = 20), 95))
>
> axis( side = 2, at = 1:length(ety), line = -1, las = 1, tick = FALSE,
>      labels = ety)

Thank you very much. I would change a little because the levels of the
labels are not good.

par( mar = c( 3, 13, 2, 1), cex = 0.8)
 my.chart <- barplot( x, names.arg = NULL, horiz = TRUE, axes = FALSE)
axis( side = 1, at = c( seq( 0, 80, by = 20), 95))
 axis( side = 2, at = my.chart, line = -1, las = 1, tick = FALSE, labels = ety)

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to