[R] locfit confidence intervals

2004-10-12 Thread Suresh Krishna
hi, after m=locfit(y~x,..., family=binomial) plot(m,band=local) gives me a plot of locfit's result with a confidence interval around it. i would like to get the actual values that are being used to plot the lines in this figure. i tried using predict, but the standard error it returns

Re: [R] locfit confidence intervals

2004-10-12 Thread Prof Brian Ripley
Why not use predict(se=TRUE, band=local)? That's what plot.locfit does, via preplot.locfit. I'm afraid the only real way to answer questions like this is to read the sources. On Tue, 12 Oct 2004, Suresh Krishna wrote: hi, after m=locfit(y~x,..., family=binomial)