开发者

Create curve 'algorithm' after capturing points from user?

I am capturing some points on an X, Y plane to represent some values. I ask the user to select a few points and I want the system to then generate a curve following the trend that the user creates. How do I calculate this? So say it is this:

Y = dollar amount X = unit count

user input: (2500, 200), (4500, 500), (9500, 1000)

Is there a way I can calculate some sort of curve to follow those points so I would know based off that selection what Y = 100 would be on the same scale/trend?

EDIT: People keep asking for the nature of the curve, yes logarithmic. But I'd also like to check out some other options. It's for pricing the the restraint is that the as X increases Y should always be higher. However the rate of change of the curve should change related to the two adjacent po开发者_Python百科ints that the user selected, we could probably require a certain number of points. Does that help?

EDIT: Math is hard.

EDIT: Maybe a parabola then?


The problem is that there are multiple curves that you can fit to the same data. To borrow an example from my old stats book, here is the same data set (1, 1, 1, 10, 1, 1, 1) with four curves:

Create curve 'algorithm' after capturing points from user?

You need to specify the overall trend to get a meaningful result.


First, you are going to have to have an idea of what your line is or better said, what type of line fits your data the best. Is it linear (straight line) or does it curve (x-squared). Sounds like this is a curve.

If your curve is a parabola, then you will need to solve y = Ax(2) + Bx + c using your three points that the user has chosen. You will need at least 3 points to solve for 3 unknowns.

  1. 200 = A(2500)(2) + B(2500) + C
  2. 500 = A(4500)(2) + B(4500) + C
  3. 1000 = A(9500)(2) + B(9500) + C

Given these three equations, you should be able to solve for A, B and C, then use these to plot a new curve.


The Least Square Fit would give you a nice data matching curve.


This is a rather general extrapolation problem. In your case, fitting a quadric (parabola) is probably the most reasonable course of action. Depending on how well your data fits a quadric, you may want to fit it to more than 3 points (the noisier and weirder the data, the more points you should use).


Depending on the amount and type of data you have, you may want to try LOESS regression.

However, this may not be a good option if you only have 3 points as in your example (but keep in mind that you will not be able to have good extrapolation with 3 points no matter the algorithm you use)

Another option would be B-splines

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜