Possible Duplicate:
Finding where two linear fits intersect in R

Given some points on a graph (usually only about 6 or 7 points), I need to find a best fit solution where the solution consists of the following:

  1. Two linear lines
  2. The lines must intersect
  3. The intersection point (the x point) must lie between two values I specify (such as xLow and xHigh)

How would I do this using nls (or something better?)?

If there are multiple best fits, then any of them are fine. Basically, the two lines form a V.

link|improve this question

What happens when there are multiple solutions, i.e. multiple lines? And how is fit measured? Via the standard method of MSE of residuals for y_hat? – Iterator Aug 19 '11 at 15:04
yes, just the standard way that nls works. – CodeGuy Aug 19 '11 at 15:09
Two lines that cross forming an X? Or two lines that meet forming a V? – Aaron Aug 19 '11 at 16:02
-1 This was already asked and answered in the comments of stackoverflow.com/questions/7114703/… – G. Grothendieck Aug 19 '11 at 16:24
Two lines that form a V – CodeGuy Aug 19 '11 at 16:27
show 4 more comments
feedback

closed as exact duplicate by G. Grothendieck, gsk3, Gavin Simpson, joran, tim_yates Dec 7 '11 at 12:59

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

Generally if you first do a fit of y on x and then x on y the lines will cross within the data at their joint means and they are both least squares fits, albeit to different data situations.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.