simple_slope {psycModel} | R Documentation |
Slope Estimate at Varying Level of Moderators
Description
The function uses the interaction::sim_slopes()
to calculate the slope estimate at varying level of moderators (+/- 1 SD and mean).
Additionally, it will produce a Johnson-Newman plot that shows when the slope estimate is not significant
Usage
simple_slope(model, data = NULL)
Arguments
model |
model object from |
data |
|
Value
a list with the slope estimate data frame and a Johnson-Newman plot.
Examples
fit <- lm_model(
data = iris,
response_variable = Sepal.Length,
predictor_variable = dplyr::everything(),
three_way_interaction_factor = c(Sepal.Width, Petal.Width, Petal.Length)
)
simple_slope_fit <- simple_slope(
model = fit,
)
[Package psycModel version 0.5.0 Index]