Tagged Questions
0
votes
1answer
34 views
Error in curve fitting and other syntax issues
I have a set of vector 'measured_data' containing 200 sample data which are positive floating point values. I am having a tough time to find a model which fits this data.The following code returns ...
1
vote
1answer
61 views
Interpolate new values using a set of samples
I'm new to R. Having a set of samples along with the target, I want to fit a numeric function to solve the target of new samples. My sample is time in seconds indicating the duration of a user's ...
3
votes
2answers
478 views
Python linear fitting with multiple error bars
I am fitting some data with a linear fit. I want to weight the error bars. Up to this point, I have been using bulldogs fitting.py. Their linear_fit makes weighted linear regressions very easy. ...
0
votes
2answers
1k views
Fitting Logarithmic Curve to Data Points in R
So if I have a set of points in R that are linear I can do the following to plot the points, fit a line to them, then display the line
x=c(61,610,1037,2074,3050,4087,5002,6100,7015)
y=c(0.401244, ...
0
votes
3answers
542 views
How to fit the 2D scatter data with a line with C++
I used to work with MATLAB, and for the question I raised I can use p = polyfit(x,y,1) to estimate the best fit line for the scatter data in a plate. I was wondering which resources I can rely on to ...
5
votes
2answers
1k views
6th degree curve fitting with numpy/scipy
I have a very specific requirement for interpolating nonlinear data using a 6th degree polynomial. I've seen numpy/scipy routines (scipy.interpolate.InterpolatedUnivariateSpline) that allow ...
3
votes
2answers
5k views
Linear regression in R (normal and logarithmic data)
I want to carry out a linear regression in R for data in a normal and in a double logarithmic plot.
For normal data the dataset might be the follwing:
lin <- data.frame(x = c(0:6), y = c(0.3, ...
7
votes
3answers
10k 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 best (polynomials of different orders, exponential or logarithmic).
I use Python and Numpy and for polynomial fitting there is a ...