Tagged Questions
The curve-fitting tag has no wiki summary.
15
votes
6answers
4k views
Goodness of fit functions in R
What functions do you use in R to fit a curve to your data and test how well that curve fits? What results are considered good?
15
votes
6answers
1k views
Curve fitting unsorted points on a plane
Question: How do you fit a curve to points on a plane if they aren't single valued?
For the example shown, how would one fit a curve (like the black one) to the noisy blue data? It's similar to ...
8
votes
2answers
638 views
In Java, does an implementation exist for interpolating non-uniformly distributed time series data?
I have some matlab code which requires time series data that is uniformly distributed in time to produce an answer. The driver matlab code which reads the data file also runs an interp1( x, y, xi, ...
7
votes
2answers
340 views
How can I get a cubic bezier curve closest to given points?
Given n points:
p0, p1, p2, ..., pn;
How can I get the point c1, c2 so that the cubic bezier curve defined by
p0, c1, c2, pn
closest to the given points?
I tried least square method. I wrote this ...
7
votes
1answer
184 views
Sinusoidal fitting classes for c#
I am wondering if there is a class for fitting data to a sine curve. I found an algorithm for it here but it would take some time to first understand and then code... Before I go down that road I am ...
7
votes
2answers
418 views
Iteratively smooth a curve
I've been trying to do this the whole day. Basically, I have a line and a point. I want the line to curve and pass through that point, but I don't want a smooth curve. I wan't to be able to define the ...
7
votes
3answers
10k views
Fitting a density curve to a histogram in R
Is there a function in R that fits a curve to a histogram?
Let's say you had the following histogram
hist(c(rep(65, times=5), rep(25, times=5), rep(35, times=10), rep(45, times=4)))
It looks ...
7
votes
4answers
8k views
How do I calculate r-squared using Python and Numpy?
I'm using Python and Numpy to calculate a best fit polynomial of arbitrary degree. I pass a list of x values, y values, and the degree of the polynomial I want to fit (linear, quadratic, etc.).
This ...
7
votes
3answers
4k views
Java curve fitting library
I'm hoping to find a simple library that can take a series of 2 dimensional points and give me back a larger series of points that model the curve. Basically, I want to get the effect of curve fitting ...
6
votes
4answers
119 views
How to fit more than one line to data points
I am trying to fit more than one line to a list of points in 2D. My points are quite low in number (16 or 32).
These points are coming from a simulated environment of a robot with laser range ...
6
votes
3answers
726 views
How can I fit a Bézier curve to a set of data?
I have a set of data points (which I can thin out) that I need to fit with a Bézier curve. I need speed over accuracy, but the fit should be decent enough to be recognizable. I'm also looking for an ...
6
votes
3answers
2k views
Curve fitting: Find the smoothest function that satisfies a list of constraints
Consider the set of non-decreasing surjective (onto) functions from (-inf,inf) to [0,1].
(Typical CDFs satisfy this property.)
In other words, for any real number x, 0 <= f(x) <= 1.
The logistic ...
5
votes
3answers
385 views
Stretching out an array
I've got a vector of samples that form a curve. Let's imagine there are 1000 points in it. If I want to stretch it to fill 1500 points, what is the simplest algorithm that gives decent results? I'm ...
5
votes
2answers
2k views
Fitting a line in 3D
Are there any algorithms that will return the equation of a straight line from a set of 3D data points? I can find plenty of sources which will give the equation of a line from 2D data sets, but none ...
4
votes
1answer
2k views
How can I calculate a trend line in PHP?
So I've read the two related questions for calculating a trend line for a graph, but I'm still lost.
I have an array of xy coordinates, and I want to come up with another array of xy coordinates ...
4
votes
1answer
5k views
Curve fitting in R using nls
I'm trying to fit a curve over (the tail of) the following data:
[1] 1 1 1 1 1 1 2 1 2 2 3 2 1 1 4 3 2 11 6 2 16 7 17 36
[25] 27 39 41 33 42 66 92 ...
4
votes
5answers
817 views
“OCR” for a graph - scraping sample values from a plot image
This isn't really OCR, since it's not recognizing characters, but it's the same idea. Anyone know of an image-processing library or established algorithm for retrieving the values from a (raster) ...
4
votes
6answers
1k views
Finding a curve to match data
I'm looking for a non-linear curve fitting routine (probably most likely to be found in R or Python, but I'm open to other languages) which would take x,y data and fit a curve to it.
I should be able ...
4
votes
1answer
1k views
How can I fit a curve to a histogram distribution?
Someone asked me a question via e-mail about integer partitions the other day (as I had released a Perl module, Integer::Partition, to generate them), that I was unable to answer.
Background: here ...
3
votes
1answer
27 views
Fitting values with polyfit in Matlab
I have made some measurements with tic-toc of X=qr(A) and [Q,R]=qr(A), where A is a random matrix, with dimensions nxn (n=[100:100:1000]).
Now I want to create a function that describes the time ...
3
votes
4answers
282 views
Fit simulated and experimental data points with Python
I have written some code which performs a Monte Carlo simulation and produces curves of signal intensity versus time. The shape of such a curve depends on various parameters, two of which my ...
3
votes
1answer
383 views
Histogram peak identification and gauss fitting with minimal accumulated hight difference in c++
I already asked a similar question some time ago in the following thread: previous thread. Until now I unfortunately couldn't entirely solve that issue and only worked around. Since it is difficult to ...
3
votes
3answers
838 views
SciPy global minimum curve fit
I'm using scipy.optimize.curve_fit, but I suspect it is converging to a local minimum and not the global minimum.
I tried using simulated annealing in the following way:
def fit(params):
return ...
3
votes
3answers
152 views
Random, curvy distribution of data points
Background
Provide an example of R programming.
Problem
Create a distribution of values that, when modeled, produces a curve that resembles:
Essentially, I would like to do something like:
x ...
3
votes
4answers
5k views
How to fit a smooth curve to my data in R?
I'm trying to draw a smooth curve in R. I have the following simple toy data:
> x
[1] 1 2 3 4 5 6 7 8 9 10
> y
[1] 2 4 6 8 7 12 14 16 18 20
Now when I plot it with a standard ...
3
votes
1answer
3k views
How to do exponential and logarithmic curve fitting in Python? I found only polynomial fitting
I have a set of data and I want to compare which line describes it the best (polynomes of different orders, exponential or logarithmic).
I use Python and Numpy and for polynomial fitting there is a ...
3
votes
2answers
1k views
On the issue of automatic time series fitting using R
we have to fit about 2000 or odd time series every month,
they have very idiosyncratic behavior in particular, some are arma/arima, some are ewma, some are arch/garch with or without seasonality ...
3
votes
4answers
1k views
How to make topographic map from sparse sampling data?
I need to make a topographic map of a terrain for which I have only fairly sparse samples of (x, y, altitude) data. Obviously I can't make a completely accurate map, but I would like one ...
3
votes
6answers
10k views
How to calculate the vertex of a parabola given three points
I have three X/Y points that form a parabola. I simply need to calculate what the vertex of the parabola is that goes through these three points. Preferably a quick way as I have to do a LOT of these ...
2
votes
0answers
31 views
How to calculate residuals for two curves (matrixes) of different size?
I've got a theoretical curve which was calculated numerically and an experimental curve (better to say a massive of experimental points). I need to calculate the residuals between these two curves to ...
2
votes
2answers
112 views
curve fitting with python
I'm trying to fit some data and stuff, I know there is a simple command to do this python/numpy/matplotlib but I can't find it. I think it is something like
popt,popc = numpy.curvefit(f,x)
where ...
2
votes
2answers
137 views
matlab: lsqcurvefit and parameters
I'm trying to do some fitting with lsqcurvefit. I have a function like that:
function F = cdf_3p_model(a,data)
...
2
votes
1answer
161 views
Delphi algorithm to solve 4 or 5 parameter logistics equation? [closed]
I'm looking for an [Pascal/Delphi] algorithm that can solve a 4 or 5 parameter logistics equation. I've been searching the web for quite a while now and have not been successful in finding an ...
2
votes
1answer
128 views
Linear least-squares fit with constraint - any ideas?
I have a problem where I am fitting a high-order polynomial to (not very) noisy data using linear least squares. Currently I'm using polynomial orders around 15 - 25, which work surprisingly well: The ...
2
votes
2answers
215 views
Gaussian fit in C#
In a project I'm working on I need to obtain a Gaussian fit from a set of points - needing mean and variance for some processing, and possibly an error degree (or accuracy level) to let me figure out ...
2
votes
2answers
273 views
curve fitting in C#
I have a data points x and y in an array. And I know this points goes y=log(nx)+c curve. I want to find the value of n that is fitted to that data points using c#. Are there any library or easy way to ...
2
votes
1answer
185 views
Curve fitting a large data set
Right now, I'm trying to fit a curve to a large set of data; there are two arrays, x and y, each with 352 elements. I've fit a polynomial to the data, which works fine:
import numpy as np
import ...
2
votes
1answer
268 views
How to fit polynomial to data with error bars
I am currently using numpy.polyfit(x,y,deg) to fit a polynomial to experimental data. I would however like to fit a polynomial that uses weighting based on the errors of the points.
I have found ...
2
votes
5answers
364 views
Where can I get a Delphi/Pascal implementation of Excel-style polynomial regression curve fitting?
I have a set of X-Y values (i.e. a scatter plot) and I want a Pascal routine to generate the coefficients of a Nth order polynomial that fits those points, in the same way that Excel does.
2
votes
2answers
728 views
MATLAB can't seem to find csaps() in MATLAB 7.10.0 student edition
I have some code using csaps(), Matlab's cubic smoothing spline fitting function that I want to give to a student with MATLAB 7.10.0 (R2010a).
For some reason the function doesn't seem to exist, ...
2
votes
1answer
346 views
R : catching errors in `nls`
I'm fitting some exponential data using nls.
The code I'm using is:
fit <- nls(y ~ expFit(times, A, tau, C), start = c(A=100, tau=-3, C=0))
expFit is defined as
expFit <- function(t, A, ...
2
votes
3answers
275 views
Finding the Formula for a Curve
Is there a program that will take "response curve" values from me, and provide a formula that approximates the response curve?
It would be cool if such a program would take a numeric "percent ...
2
votes
4answers
217 views
Kink detection in drawn polylines
Users can sketch in my app using a very simple tool (move mouse while holding LMB). This results in a series of mousemove events and I record the cursor location at each event. The resulting polyline ...
2
votes
4answers
200 views
Smooth local celing function
I have a gray-scale image and I want to make a function that
closely follows the image
is always grater than it the image
smooth at some given scale.
In other words I want a smooth function ...
2
votes
3answers
2k views
Fitting a gauss curve to a certain histogram peak in c++
I have two questions concerning fitting a gauss curve to histogram peaks.
My first question is a very basic one:
How can I fit a gauss curve to a entire histogram? Does this only mean that I have to ...
2
votes
4answers
753 views
Fitting a step function
I am trying to fit a step function using scipy.optimize.leastsq. Consider the following example:
import numpy as np
from scipy.optimize import leastsq
def fitfunc(p, x):
y = np.zeros(x.shape)
...
2
votes
4answers
3k views
How does the Levenberg–Marquardt algorithm work in detail but in an understandable way?
Im a programmer that wants to learn how the Levenberg–Marquardt curvefitting algorithm works so that i can implement it myself. Is there a good tutorial anywhere that can explain how it works in ...
2
votes
5answers
4k views
Curve Fitting 3D data set
The curve-fitting problem for 2D data is well known (LOWESS, etc.) but given a set of 3D data points, how do I fit a 3D curve (eg. a smoothing/regression spline) to this data?
MORE: I'm trying to ...
1
vote
0answers
85 views
Analytical model fitting [closed]
I have a special type of model fitting problem that I am trying to solve in MMA. Any insight how to attack it using available tools of MMA will be great to hear.
We have a variable
H={h_k}, where ...
1
vote
1answer
166 views
How can I perform a least-squares fitting over multiple data sets fast?
I am trying to make a gaussian fit over many data points. E.g. I have a 256 x 262144 array of data. Where the 256 points need to be fitted to a gaussian distribution, and I need 262144 of them.
...