[R] problems with splinefun()

2007-11-14 Thread david csongor
I am working with the function: splinefun() ... When plugging in the variables, I get the function program as if though having only entered 'splinefun. only way to get the values is by spline(xxx,yyy, n=length(xxx)/10, ties = mean)$x and spline(xxx,yyy, n=length(xxx)/10, ties = mean)$y. I'm

Re: [R] problems with splinefun()

2007-11-14 Thread jim holtman
Exactly what values do you want right away? You can do: result - spline(.) and then reference 'result$x' and 'result$y'. Can you be more specific on your request and provide an example of what you are currently doing (with data) and what you expect the results to be. On Nov 14, 2007 5:31