diff --git a/07_RegressionModels/02_02_multivariateExamples/index.Rmd b/07_RegressionModels/02_02_multivariateExamples/index.Rmd index 8910b9e78..bda854410 100644 --- a/07_RegressionModels/02_02_multivariateExamples/index.Rmd +++ b/07_RegressionModels/02_02_multivariateExamples/index.Rmd @@ -48,7 +48,7 @@ All variables but Fertility give proportions of the population. ```{r, fig.height=6, fig.width=10, echo = FALSE} require(datasets); data(swiss); require(GGally); require(ggplot2) -g = ggpairs(swiss, lower = list(continuous = "smooth"),params = c(method = "loess")) +g = wrap(ggpairs(swiss, lower = list(continuous = "smooth")), params = c(method = "loess")) g ```