0
votes
3answers
52 views
Loess Fit and Resulting Equation
I'm a developer up in Portland, OR. I'm wondering if anyone can assist:
I'm working on Loess fit models using R, once I have the fit
accomplished, I'm looking to back-out the equa …
1
vote
4answers
61 views
Bezier Curve and French Curves
I am using Bezier curves to plot curves in a program I am making. I have five points.
Here is a crude sketch of the curve I am trying to create. I'm trying to make a curve that g …
6
votes
6answers
420 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?
0
votes
8answers
147 views
Is it possible to do an algebraic curve fit with just a single pass of the sample data?
I would like to do an algebraic curve fit of 2D data points, but for various reasons - it isn't really possible to have much of the sample data in memory at once, and iterating thr …
1
vote
3answers
90 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 …
1
vote
4answers
261 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 h …
2
votes
4answers
1k 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, qua …
2
votes
4answers
147 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 = …
1
vote
4answers
203 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 …
2
votes
3answers
376 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 …
2
votes
3answers
277 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 witho …
3
votes
6answers
433 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 i …
11
votes
6answers
402 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? I …
2
votes
4answers
927 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?
MO …
0
votes
2answers
543 views
Curve fitting implementation using least square method in C++
I am trying to write C++ function perform curve fitting implementation using least square method. Input parameters of this function are x and y 1D array and n. And this function …
