diff --git a/NEWS.md b/NEWS.md index 4a54aae..839db50 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,6 +5,7 @@ Bugfixes: * Plotting functions no longer fail with incomplete source data. * Plotting functions now respect the order of `modx.values` and `mod2.values` arguments. (#29) +* `interact_plot()` no longer ignores the `point.alpha` argument. (#25) # interactions 1.1.1 diff --git a/R/interact_plot.R b/R/interact_plot.R index 7e31fef..4750204 100755 --- a/R/interact_plot.R +++ b/R/interact_plot.R @@ -434,7 +434,7 @@ interact_plot <- function(model, pred, modx, modx.values = NULL, mod2 = NULL, modxvals2 = modxvals2, mod2vals2 = mod2vals2, weights = weights, rug = rug, rug.sides = rug.sides, point.size = point.size, point.shape = point.shape, - facet.modx = facet.modx) + facet.modx = facet.modx, point.alpha = point.alpha) }