panel.lmline returns intercept and slope of y ~ x subsetted to the
combination of conditioning factors given to xyplot in lattice.

for instance:

xyplot(Xvalues ~ log(Qvalues)|Tfac, data = df7, panel = panel.lmline)


I am looking to find the equivalent formulation for lm() proper. If I do
this:

lmcal <- lm(Xvalues ~ log(Qvalues):Tfac, data = df7)

Only one value of the intercept is returned. It appears as all the
'individual' intercepts are summed to form one overall intercept.

Any help much appreciated!

Regards,
Alex van der Spek

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to