I have two linear fits that I've gotten from lm calls in my R script. For instance...
fit1 <- lm(y1 ~ x1)
fit2 <- lm(y2 ~ x2)
I'd like to find the (x,y) point at which these two lines (fit1 and fit2) intersect, if they intersect at all.
|
I have two linear fits that I've gotten from lm calls in my R script. For instance...
I'd like to find the (x,y) point at which these two lines (fit1 and fit2) intersect, if they intersect at all.
| |||
|
feedback
|
|
One way to avoid the geometry is to re-parameterize the equations as:
in terms of their intersection point
EDIT: Note that the lines | |||||||||||
feedback
|
|
If the regression coefficients in the two models are not equal (which is almost certain) then the lines would intersect. The For Brandon: M^-1 %*% intercepts -->
| |||||||||||
feedback
|
|
Here's some high school geometry then ;-)
Or, to simplify the
| |||||||||||||
feedback
|