Displaying 1 result from an estimated 1 matches for "sandgehalte".
2002 Jul 21
1
change margins or regions?!
...rosch.homelinux.org/tmp/plot.png
Thats the code i tried to use:
<R-code>
oldpar <- par()
# changing the margins
par(mar=c(4.1,5.1,4.1,5.1) +0.1)
P <- boxplot(bs.s ~ geologie, data=frame34, xlab="Gew.-Prozent der
Sand-Gehalte [%]", col="grey", main=("Boxplot der Sandgehalte im
Einzugsgebiet Hacketal"), horizontal=T, axes=F, varwidth=T)
segments(P$stats[3, ], 1:length(P$n) - 0.4, P$stats[3, ], 1:length(P$n)
+ 0.4, lwd = 3, col = "black")
box()
par(las=2)
axis(2, label=P$names)
axis(4, label=P$n)
par(las=1)
axis(1)
dev.off()
par(oldpar)
</R-code>...