Displaying 1 result from an estimated 1 matches for "frequenztabelle".
2007 Sep 25
2
Adjust barplot to the left
...That's my code:
#------------------------
par(mfrow=c(2,1), mar=c(2,3,3,2))
#ECDF
x = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2)
F2.5 <- ecdf(x)
plot(F2.5,
verticals= TRUE,
do.p = TRUE,
lwd=3,
ylab = "",
xlab = "",
main = "Figur 2.12 Frequenztabelle und eVf",
xlim = c(-1,4))
abline(h= (0:10)*0.1)
mtext(text="x", side=1, adj = 1.03, padj=1.23, cex=1.2)
mtext(text="f(x)", side=3, adj = -0.06, padj=-1, cex=1.2)
par(mar=c(4,3,1,2))
#Barplot
width<-c(0.4, 0.4, 0.4)
height<-c(0.5, 0.35, 0.15)
barplot...