Nothing
library(gam)
model1 <- gam(log(Density) ~ lo(log(mack.depth)) + lo(Temperature)
+ lo(mack.lat, mack.long), data = mackerel)
print(model1)
print(gam(log(Density) ~ lo(Temperature) + lo(mack.lat, mack.long),
data = mackerel))
print(gam(log(Density) ~ lo(log(mack.depth)) + lo(mack.lat, mack.long),
data = mackerel))
print(gam(log(Density) ~ lo(log(mack.depth)) + lo(Temperature),
data = mackerel))
par(mfrow=c(2,2))
plot(model1, se = TRUE)
par(mfrow=c(1,1))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.