Hello Friends, I want to put two plots of scatterplotMatrix side by side in one plot. I have tried below command. But somehow below code doesnt join them together side by side.
> par(mfrow=c(1,2)); > scatterplotMatrix(~ SBP + DBP + Leptin +WC+BMI+Weight | > factor(dat2$rs3827103), data=dat2,diagonal='none', > pch=c(18),smoother=FALSE,reg.line=lm) > scatterplotMatrix(~ SBP + DBP + Leptin +WC+BMI+Weight | > factor(dat1$rs3827103), data=dat1,diagonal='none', > pch=c(18),smoother=FALSE,reg.line=lm) Can anybody suggest me a way to join them together side by side. Regards, mahe [[alternative HTML version deleted]] ______________________________________________ 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.