I have a data frame x and y, and I know the maximum of y. I want to fit this data to a quadratic model. How can I do it in R knowing the maximum? If I didn't know the maximum, I would fit it with lm(y~x + I(x^2)). Can anyone has an idea about this? Thanks in advance!
|
You have to minimize the sum of squares subject to the constraint; Make up some data. Here I'll say the known maximum is 50.
Make a function to get the quadratic curve for points at x with given quadratic and linear coefficients and given maximum M. The calculus is straightforward; see duffymo's answer for details.
Make a function that get the sum of squares between a quadratic curve with given quadratic and linear coefficients and the data in d.
Get the ordinary
Optimize the coefficients in the
Make a plot showing how the fit has a max at 50; the original
|
|||
|
|
|
I'd use calculus to calculate the expression for the maximum point. Differentiation will eliminate some of the constants in the equation, so the calculation is easier if you know what that max value needs to be. If I recall correctly, a simple functions of 1 variable have a maximum at f'(x) = 0 and f''(x) < 0. Check me on this. So if your function is f(x):
Set the second equation equal to zero to get the stationary point, then put that value of x into the third one to find out if it's a max or min. |
||||
|
|

lm(y~I((x-xcoordmax)^2))should work. – Ben Bolker Oct 27 '11 at 16:45