Displaying 1 result from an estimated 1 matches for "closed_rul".
Did you mean:
closed_rule
2011 Oct 02
0
Difference between ~lp() or simply ~ in R's locfit?
...imply-in-rs-locfit
I am not sure I see the difference between different examples for local logistic regression in the documentation of the gold standard locfit package for R: <http://cran.r-project.org/web/packages/locfit/locfit.pdf>
I get starkingly different results with
fit2<-scb(closed_rule ~ lp(bl),deg=1,xlim=c(0,1),ev=lfgrid(100), family='binomial',alpha=cbind(0,0.3),kern="parm")
from
fit2<-scb(closed_rule ~ bl,deg=1,xlim=c(0,1),ev=lfgrid(100), family='binomial',alpha=cbind(0,0.3),kern="parm")
.
What is the nature of the difference? Ma...