Re: [R] Natural Smoothing B-splines

2015-08-03 Thread Marc Lamblin
More effective search with respect to browsing or digging manually into the documentation. Almost surely I'll find what I need! Thanks very much mggl __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/list

[R] NATURAL Smoothing B-splines

2015-08-02 Thread Marc Lamblin
Hi all, I'm an engineering student from Politecnico di Milano. I want to perform Smoothing using Smoothing B-splines on syntethic data. The splines must be NATURAL (at the edges the second and third order derivates are zero). How can I impose this constraint? I have searched in R documentation. Fo

Re: [R] Verify that a grid is uniform

2015-04-07 Thread Marc Lamblin
you the scaling you need to set a > tolerance? > > -- Bert > > Bert Gunter > Genentech Nonclinical Biostatistics > (650) 467-7374 > > "Data is not information. Information is not knowledge. And knowledge > is certainly not wisdom." > Clifford Stoll > >

Re: [R] Verify that a grid is uniform

2015-04-06 Thread Marc Lamblin
t; > Cheers, > > Bert > > > > Bert Gunter > > Genentech Nonclinical Biostatistics > > (650) 467-7374 > > > > "Data is not information. Information is not knowledge. And knowledge > > is certainly not wisdom." > > Clifford Stoll >

Re: [R] Verify that a grid is uniform

2015-04-06 Thread Marc Lamblin
iff(vec))) > might help. Note that this DOES NOT account for machine precision in any > way. > > Sarah > > On Mon, Apr 6, 2015 at 7:50 AM, Marc Lamblin > wrote: > > I need to control of a given grid is uniform. This control using signif > > until now works: > > &g

[R] Verify that a grid is uniform

2015-04-06 Thread Marc Lamblin
I need to control of a given grid is uniform. This control using signif until now works: if (all(signif(abscissa[1:(length(abscissa) - 1) + 1] - abscissa[1:(length(abscissa) - 1)]) == signif(rep((range(abscissa)[2] - range(abscissa)[1])/(length(abscissa) - 1), length(abscissa) - 1 { #