Mgcv (Mixed GAM Computation Vehicle) is a CRAN package for the R language, it contains routines for GAMs and other generalized ridge regression with multiple smoothing parameter selection by GCV, REML or UBRE/AIC. Also GAMMs.

learn more… | top users | synonyms

0
votes
0answers
20 views

MGCV P-Spline Smoothing Parameter

I'm fitting a P-Spline to some data using the MGCV package and the gam() function. From what I understand gam() chooses the smoothing parameter - lambda - which appears in the penalised least squares ...
3
votes
0answers
58 views

How do I interact a tensor product with two different `by=var` variables?

An example: library(mgcv) N=1000 x1 = seq(1:N) x2 = log(x1) x3 = sqrt(x1) fac1 = ceiling(rnorm(N)*3) fac2 = ceiling(runif(N)*3) y = fac1*x2 + x1*x2 + x2 + x3*x2 + x2*(x1/x3)^(.8+fac2/10) + ...
1
vote
1answer
126 views

Extracting data used to make a smooth plot in mgcv

This thread from a couple of years ago describes how to extract data used to plot the smooth components of a fitted gam model. It works, but only when there is one smooth variable. I've got more ...
0
votes
2answers
46 views

“gam” model of caret not returning fitted.values

I am using the gam model in caret.train (caret uses gam from package mgcv): > fit <- train(P~II+TH+DR+TT,data=training,method="gam",trControl=ctrl,metric="Rsquared",preProc=c("center","scale")) ...
1
vote
1answer
50 views

Changing the units in a contour plot from vis.gam in mgcv

I'm fitting a model using the log of a variable, and I'd like to present my results in terms of that variable transformed. Here is a simple example: library(mgcv) N = seq(from=1,to=10,by=.01) a = ...
2
votes
1answer
214 views

How to extract fitted splines from a GAM (`mgcv::gam`)

I am using GAM to model time trends in a logistic regression. Yet I would like to extract the the fitted spline from it to add it to another model, that cannot be fitted in GAM or GAMM. Thus I have 2 ...
1
vote
0answers
38 views

Odd error: Error in PredictMat(object$smooth[[k]], data) : , `by' variable must be same dimension as smooth arguments

I'm getting an error in mgcv, and I can't figure out where it comes from. The setup is the following: I've got a fitted GAM object called "MI", and a vector of "prediction data" (with default values ...
2
votes
0answers
96 views

How to implement this model selection algorithm in R?

I've got a complicated semi-parametric model that I'm fitting in R. I start with a model based on theory. Its got lots of interaction terms. I want to winnow it down: removing each interaction term ...
3
votes
2answers
127 views

Are there known compatibility issues with R package mgcv? Are there general rules for compatibility?

I use R version 2.15.1 (2012-06-22) and mgcv version 1.7-22 I load the following set of packages in R: library(sqldf) library(timeDate) library(forecast) library(xts) library(tseries) ...
0
votes
1answer
49 views

How to set limits for the x and y axis using vis.gam() function from mgcv package in r?

I am using vis.gam() to plot the results from the following model: gam.5 <- gam(mortality.under.2~s(maternal_age)+ s(birth_year) + te(birth_year,maternal_age) + wealth + sex + ...
0
votes
1answer
150 views

Determining derivatives from GAM smooth object

I have a quite simple time series data set consisting of annual averages of a singe variable ("AVERAGE"). I wish to investigate the rate of change (1st derivative) and acceleration (2nd derivative) ...
-3
votes
1answer
46 views

Implement GAM in T-SQL [closed]

I use R to build all my models but leverage T-SQL to score all datasets since the datasets I score are typically 20+ million observations. I am trying to figure out how to take the GAM Object from the ...
3
votes
1answer
292 views

Extract estimates of GAM

I am fairly new to R and presently reading a book “Generalized Additive Models”, an Introduction with R by Wood (2006) and going through some of the exercises, particularly the part on air pollution ...
0
votes
0answers
145 views

Fitting a spline to messy curves

I have trade off curves generated from a simulation where the points are not entirely smooth. I'd like to fit a spline and calculate the max. Due to the jagged nature of the points, especially near ...