That is my code
plot_model(mylogit, type = "pred", terms = c("ScoreEnvAtt [all]", "Guilt")) +
scale_colour_discrete(guide = guide_legend(title = "Guilt"), labels = c("Low", "Medium", "High")) +
scale_fill_discrete(guide = guide_legend(title = "Guilt"), labels = c("Low", "Medium", "High")) +
labs( title = "",
x = "Environmental Attitudes",
y = "Probability of choosing the green investment") + theme_gray(base_size = 14) +
theme(text=element_text(family="Times New Roman", size=12))
How can I remove the two gaps such that the x axis starts at 3 and ends at 7?