I'm having problems changing the y-axis on my Effect plots of soil moisture in relation to berry presence.
Soil moisture graph:
I would like to display the presence on y-axis from 0 to 1, so it would be comparable with other similar graphs, preferably with ticks at every 0.1 points. From the help section of the Effect package, I was able to understand that the package adjusts the axis to make nice graphs. How does one change that? I've found very little information on changing the y-axis, everyone seems to be concerned just with the x-axis.
I'm using a binomial GLM for the modeling of several variables (soil moisture, slope, distance from the edge) in relation to berry presence, then visualizing each one on the effect plot:
m3<-glm(pres_BL ~ soil_moist + Slope + EdgeDist, data=BC, family="binomial")
plot(effect("soil_moist",m3), xlab="soil_moist", ylab="Presence of bilberries")
Thank you for any information,
Med