Re: [R] GAM with Thin plate splines

2003-01-09 Thread Simon Wood
The default basis for smooth terms in mgcv is a truncated thin plate spline basis, and has been since the later part of 2001. Including terms like `s(x,z)', `s(x0,x1,x2)' in the model formula is the way to include such terms (see help files, and examples therin). best, Simon > Last time I worked

Re: [R] GAM with Thin plate splines

2003-01-09 Thread Simon Wood
> My goal is to find a model (GAM with thin plate splines) in R. > I found the function "gam" in the R-library "mgcv", but it just fits > one-dimensial splines. - Unless you have an exceedingly ancient version of mgcv (<0.6), it *does* allow spline smooths of more than one variable. ?gam contains

Re: [R] GAM with Thin plate splines

2003-01-09 Thread Ernesto Jardim
Hi Last time I worked with it (last year) there was no tps. And rkales is not finding it also. EJ On Thu, 2003-01-09 at 10:55, Peter Dalgaard BSA wrote: > Ernesto Jardim <[EMAIL PROTECTED]> writes: > > > Hi > > > > Im package gss there are functions for tps, see "ssanova". > > gam in mgcv fit

Re: [R] GAM with Thin plate splines

2003-01-09 Thread Peter Dalgaard BSA
Ernesto Jardim <[EMAIL PROTECTED]> writes: > Hi > > Im package gss there are functions for tps, see "ssanova". gam in mgcv fits thin plate splines, where was the problem??? -- O__ Peter Dalgaard Blegdamsvej 3 c/ /'_ --- Dept. of Biostatistics 2200 Cph. N (*) \(

Re: [R] GAM with Thin plate splines

2003-01-09 Thread Ernesto Jardim
Hi Im package gss there are functions for tps, see "ssanova". Regards EJ On Thu, 2003-01-09 at 08:49, [EMAIL PROTECTED] wrote: > Hello, I'm a student at the University of Klagenfurt / Austria and I > need some help ! > I have to predict 24 daily load-values. > Therefor I got a dataset with fo

[R] GAM with Thin plate splines

2003-01-09 Thread rkales
Hello, I'm a student at the University of Klagenfurt / Austria and I need some help ! I have to predict 24 daily load-values. Therefor I got a dataset with following colums: 24 past daily load-values 6 past daily temperature-values My goal is to find a model (GAM with thin plate splines) in R. I