From eec56b8bbe353832bf9f7e0d00845fd3e0563a3b Mon Sep 17 00:00:00 2001 From: Daniel Zuluaga Date: Thu, 9 Jun 2016 11:05:35 -0500 Subject: [PATCH] Package GGally was updated. Fixed the following error: Error in display_param_error() : 'params' is a deprecated argument. Please 'wrap' the function to supply arguments. help("wrap", package = "GGally") --- 07_RegressionModels/02_02_multivariateExamples/index.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07_RegressionModels/02_02_multivariateExamples/index.Rmd b/07_RegressionModels/02_02_multivariateExamples/index.Rmd index 8910b9e78..c09cfa6ad 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 = ggpairs(swiss, lower = list(continuous = "smooth"), method = "loess") g ```