HI everybody! Has anybody figure out how would be possible to plot several ctree plots beside each other? I would really appreciate it My idea would be like this, but the par() function seem to be lower in hierarchy Thanks in advance ######################################################### library(party)
mtree <- ctree(Species ~ ., data=iris) sep.tree<-ctree(Sepal.Length ~ ., data=iris) par(mfrow=c(1,2)) # Does not work plot(mtree) plot(sep.tree) ----- Rodrigo Vargas G. ----------------------------------------- Silviculture Institute Freiburg University -- View this message in context: http://r.789695.n4.nabble.com/Ctree-plot-tp4639750.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ 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.