I have a question about the restricted representation of a plot. The limits of the y axis should range from 0-5. Due to ceiling and ground effects the plot is now partly not displayed correctly. See attachment. How can I get the plots to be displayed completely without having to change the scaling? Thank you, you are very helpful!
# visual inspection of data
fit<-Anxiety_full
# Plot model
plot_Anxiety <- plot_model(fit, type = "eff", terms = c("Condition", "Group"))+ #geom_line(size = 1)
coord_cartesian(xlim = c(0.5, NA), clip = "off") + theme_tq() +scale_colour_tq() + scale_fill_tq(light) +
labs(
title = "",
y = "Anxiety Score [ 0-5 ]",
x = "") + xlim(c("baseline", "60 bpm", "16 bpm", "10 bpm", "6 bpm", "random")) +
ylim(c(-0.5,5.5)
)+ ggplot2::labs(colour = "Group") + scale_color_manual(values=c('Red','Black'))
plot_Anxiety<- plot_Anxiety + theme_apa()
plot_Anxiety