Skip to content
Prev 309344 / 398506 Next

Is there an lm() equivalent of panel.lmline()?

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