For a paper I want to include a graph of my interaction effect. I am not sure if and how I could improve it to make my interaction effect more visible. This is the R code:
plot_model4 <-
plot_model(
model4,
type = "int",
terms = c("log_EU_immigration_cumulative_4yr", "lknemny"),
ci.lvl = 0.95
) +
labs(
title = paste0("Predicted Welfare State Support Based on Exposure to EU ",
"Immigration and Individual Financial Insecurity"
),
x = "Cumulative EU Immigration (Log, Last 4 Years)",
y = "Predicted Support for Welfare State",
color = paste0("Financial Insecurity Likelihood: How likely not enough ",
"money for household necessities next 12 months"
)
) +
scale_color_manual(
values = c("#984464", "#BFA5A3", "#449777", "#A4D8A0"),
labels = c("Not at all likely", "Not very likely", "Likely", "Very likely")
) +
theme_minimal() +
theme(legend.position = "right") +
scale_x_continuous(breaks = scales::pretty_breaks(n = 10)) +
scale_y_continuous(breaks = scales::pretty_breaks(n = 10))



