Re: [Numpy-discussion] smoothing function

2014-05-15 Thread josef . pktd
On Thu, May 15, 2014 at 12:17 PM, Nathaniel Smith wrote: > On Thu, May 15, 2014 at 1:04 PM, rodrigo koblitz > wrote: > > Buenos, > > I'm reading Zuur book (ecology models with R) and try make it entire in > > python. > > Have this function in R: > > M4 <- gam(So ∼ s(De) + factor(ID), subset = I1

Re: [Numpy-discussion] smoothing function

2014-05-15 Thread Nathaniel Smith
On Thu, May 15, 2014 at 1:04 PM, rodrigo koblitz wrote: > Buenos, > I'm reading Zuur book (ecology models with R) and try make it entire in > python. > Have this function in R: > M4 <- gam(So ∼ s(De) + factor(ID), subset = I1) > > the 's' term indicated with So is modelled as a smoothing function

Re: [Numpy-discussion] smoothing function

2014-05-15 Thread josef . pktd
On Thu, May 15, 2014 at 8:04 AM, rodrigo koblitz wrote: > Buenos, > I'm reading Zuur book (ecology models with R) and try make it entire in > python. > Have this function in R: > M4 <- gam(So ∼ s(De) + factor(ID), subset = I1) > > the 's' term indicated with So is modelled as a smoothing function

[Numpy-discussion] smoothing function

2014-05-15 Thread rodrigo koblitz
Buenos, I'm reading Zuur book (ecology models with R) and try make it entire in python. Have this function in R: M4 <- gam(So ∼ s(De) + factor(ID), subset = I1) the 's' term indicated with So is modelled as a smoothing function of De I'm looking for something close to this in python. Someone can