I have run a GAM in R using the mgcv package with the following form:
shark.gamFINAL <- gam(ln.raw.CPUE...0.1 ~ Year + Month +
s(Mean.Temp, bs = "cr") + s(Mean.Chl.a, bs = "cr") +
s(Mean.Front.density, bs = "cr"), data=r, family=gaussian)
After running this model and calculating the percentage deviance explained by each variable I would like to plot the effect of each variable against the response
However when I use the plot.gam function in R my graphs come out with a y axis that is "s(predictor variable, edf)"
I am not sure what this scale of the y axis represents?
Is there a way that I could change the y axis range to that which represents the response, as has been done in this paper: Walsh and Kleiber (2001), 'Generalized additive model and regression tree analyses of blue shark (Prionace glauca) catch rates by the Hawaii-based commercial longline fishery' in FIGURE 3.
I would have posted some examples of the plots I am describing but as this is my first post I do not have at least 10 reputation, so it won't let me do it!
I have searched many sites and forums to try and find an answer for this, but to no avail, any help would therefore be hugely appreciated!