Message-ID: <AANLkTimUqr+FJzeF-TenTNRUwK_XmiBTVYS0Fa4pr+3S@mail.gmail.com>
Date: 2010-12-21T11:51:13Z
From: Robert Ruser
Subject: labels and barchart
In-Reply-To: <Pine.SOC.4.64.1012211214290.3720@solcom.hrz.uni-giessen.de>
2010/12/21 Gerrit Eichner <Gerrit.Eichner at 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)