Hi, I created an ecdf and a boxplot. Now I would like to place the ecdf above the boxplot. But I only managed to align them horizontally. I used this code:
#------------------------------------------- par(mfrow=c(1,2), mar=c(5,3,3,1)) # ecdf library(plotrix) x = c(1.6,1.8,2.4,2.7,2.9,3.3,3.4,3.4,4,5.2) F2.5 <- ecdf(x) plot(F2.5, verticals= TRUE, do.p = TRUE, lwd=3, ylab = "", xlab = "", main = "Figur 2.5 Empirische Verteilfunktion", xlim = c(1,5.5)) abline(h= (0:5)*0.2) staxlab(at=x,labels=paste("X[",1:10,"]",sep=""),nlines=3,top.line=2, line.spacing=1, cex=0.8) #boxplot F26<-boxplot(x, horizontal=TRUE, main="Figur 2.6 Der Boxplot", axes=FALSE, varwidth=TRUE) #------------------------------------------- Can anyone tell me how I need to change the code to align the two graphs vertically? Thanks in advance Tobias -- View this message in context: http://www.nabble.com/Two-graphs%2C-align-vertically-tf4316030.html#a12289270 Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@stat.math.ethz.ch 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.