Tagged Questions
The linear-regression tag has no wiki summary.
13
votes
5answers
5k views
Java library to do time series analysis
I need to do some analysis of an arbitrary amount of time series in Java.
Among others i need to be able to use Linear regression, various smoothing techniques, filtering, etc.
I'm not very keen of ...
11
votes
1answer
338 views
Using a smoother with the L Method to determine the number of K-Means clusters
Has anyone tried to apply a smoother to the evaluation metric before applying the L-method to determine the number of k-means clusters in a dataset? If so, did it improve the results? Or allow a ...
11
votes
6answers
2k views
Efficient Multiple Linear Regression in C# / .Net
Does anyone know of an efficient way to do multiple linear regression in C#, where the number of simultaneous equations may be in the 1000's (with 3 or 4 different inputs). After reading this article ...
11
votes
2answers
736 views
Optimal two variable linear regression calculation
Problem
Am looking to apply the y = mx + b equation (where m is SLOPE, b is INTERCEPT) to a data set, which is retrieved as shown in the SQL code. The values from the (MySQL) query are:
SLOPE = ...
10
votes
4answers
2k views
Linear Regression and group by in R
I wan to do a linear regression in R using the lm() function. My data is an annual time series with one field for year (22 years) and another for state (50 states). I want to fit a regression for each ...
8
votes
2answers
312 views
What is the BigO of linear regression?
How large a system is it reasonable to attempt to do a linear regression on?
Specifically: I have a system with ~300K sample points and ~1200 linear terms. Is this computationally feasible?
7
votes
2answers
169 views
Visual Comparison of Regression & PCA
I'm trying to perfect a method for comparing regression and PCA, inspired by the blog Cerebral Mastication which has also has been discussed from a different angle on SO. Before I forget, many thanks ...
7
votes
3answers
1k views
Conditionally colour data points outside of confidence bands in R
I need to colour datapoints that are outside of the the confidence bands on the plot below differently from those within the bands. Should I add a separate column to my dataset to record whether the ...
7
votes
1answer
609 views
Graphing perpendicular offsets in a least squares regression plot in R
I'm interested in making a plot with a least squares regression line and line segments connecting the datapoints to the regression line as illustrated here in the graphic called perpendicular offsets:
...
6
votes
2answers
165 views
Regression in R — 4 features, 4 million instances
I have a text file in the form ( User Id, Movie Id, Ratings, Time) and I want to do a vanilla regression on the dataset .( Just 4 features, >4 million instances)
model <- glm ( UserId ~ ...
6
votes
1answer
568 views
Linear Regression in Javascript
I want to do Least Squares Fitting in Javascript in a web browser.
Currently users enter data point information using HTML text inputs and then I grab that data with jQuery and graph it with Flot.
...
6
votes
5answers
721 views
Solving normal equation system in C++
I would like to solve the system of linear equations:
Ax = b
A is a n x m matrix (not square), b and x are both n x 1 vectors. Where A and b are known, n is from the order of 50-100 and m is ...
5
votes
1answer
209 views
support vector machines - a simple explanation?
So, i'm trying to understand how the SVM algorithm works but i just cannot figure out how you transform some datasets in points of n-dimensional plane that would have a mathematical meaning in order ...
5
votes
2answers
536 views
John Tukey “median median” (or “resistant line”) statistical test for R and linear regression
I'm searching the John Tukey algorithm which compute a "resistant line" or "median-median line" on my linear regression with R.
A student on a mailling list explain this algorithm in these terms :
...
4
votes
3answers
281 views
Gradient descent algorithm won't converge
I'm trying to write out a bit of code for the gradient descent algorithm explained in the Stanford Machine Learning lecture (lecture 2 at around 25:00). Below is the implementation I used at first, ...
4
votes
1answer
117 views
Finding the break in data from a piecewise function
Greetings,
I'm performing research that will help determine the size of observed space and the time elapsed since the big bang. Hopefully you can help!
I have bilinear data on which I want to ...
4
votes
4answers
1k views
How to force R to use a specified factor level as reference in a regression?
Somehow I can´t find it in my notes... nor do find the obivous on the net. How can I tell R to use a certain level as reference if I use dummy explanatories in a regression?
It´s just using some level ...
3
votes
1answer
74 views
Create function to automatically create dataset from summary(fit <- lm( y ~ x1 + x2 +… xn)
This question is closely related to my previous question. The only difference is that instead of plotting the data, I want the raw data behind fit. I tried to solve it myself following the last answer ...
3
votes
2answers
162 views
Linear Regression with explicit intercept in R
I want to calculate a linear regression using the lm() function in R. Additionally I want to get the slope of a regression, where I explicitly give the intercept to lm().
I found an example on the ...
3
votes
2answers
195 views
How to compute minimal but fast linear regressions on each column of a response matrix?
I want to compute ordinary least square (OLS) estimates in R without using "lm", and this for several reasons. First, "lm" also computes lots of stuff I don't need (such as the fitted values) ...
3
votes
2answers
531 views
Linear regression with matplotlib
still a Python beginner.
I'm trying to generate a linear regression on a scatter plot I have generated, however my data is in list format, and all of the examples I can find of using 'polyfit' ...
3
votes
2answers
149 views
Do there exist methods to identify quadratic components in a linear model with R?
Suppose we have an additive model of the form y=x1+x2+... with a lot of variables. Is there a routine in R to identify variables that should be considered as exhibiting a quadratic effect? I know that ...
3
votes
3answers
487 views
Lapackpp vs Boost BLAS
for start, i am newbie in C++.
i am writing a program for my Master thesis which part of it suppose to solve regression in a recursive way.
I would like to solve:
Ax = y
In my case computation ...
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
4answers
775 views
Kalman filter for car's tracking path
I am having a set of Points like Point(x,y). After the car gone through so many ways in the same road it is almost messing the resulting map. I heard that kalman filter can make a sigle path from the ...
3
votes
2answers
382 views
Create lm object from data/coefficients
Does anyone know of a function that can create an lm object given a dataset and coefficients?
I'm interested in this because I started playing with Bayesian model averaging (BMA) and I'd like to be ...
3
votes
6answers
1k views
Multiple Linear Regression
I am trying to use GLSMultipleLinearRegression (from apache commons-math package) for multiple linear regression. It is expecting a covariance matrix as input -- I am not sure how to compute them. I ...
2
votes
1answer
69 views
Linear regression in java [closed]
I have a java code that performs a linear regression on a set of data using the gaussjordan elimination. It calculates a linear, quadratic and cubic functions using the least squares method. My ...
2
votes
1answer
80 views
R: cannot predict specific value
> age <- c(23,19,25,10,9,12,11,8)
> steroid <- c(27.1,22.1,21.9,10.7,7.4,18.8,14.7,5.7)
> sample <- data.frame(age,steroid)
> fit2 <- ...
2
votes
1answer
180 views
Ruby Library for doing Linear or NonLinear Least Squares Approximation?
Is there a Ruby library that allows me to do either linear or non-linear least squares approximation of a set of data.
What I would like to do is the following:
Given a series of [x,y] data points
...
2
votes
1answer
298 views
Getting p-value for linear regression in C gsl_fit_linear() function from GSL library
I'm trying to reporduce some code from R in C, so I'm trying to fit a linear regression using the gsl_fit_linear() funtion.
In R I'd use the lm() function, which returns a p-value for the fit using ...
2
votes
3answers
96 views
How to best approach the problem of trying to determine the form of an unknown function
I have a set of variables X, Y, ..., Z. My job is to design a function that takes this set of variables and yields an integer. I have a fitness function to test this against.
My first stab at the ...
2
votes
2answers
4k views
Linear Regression with Python numpy
I'm trying to make a simple linear regression function but continue to encounter a
numpy.linalg.linalg.LinAlgError: Singular matrix error
Existing function (with debug):
def makeLLS(inputData, ...
2
votes
2answers
248 views
Java or C equivalent of MATLAB's robustfit
MATLAB has a magnificent robustfit function that solves the problem of excluding outliers with linear regression fitting. Is there anything similar written in Java or C (or in language X that could be ...
2
votes
2answers
2k views
Are there any Linear Regression Function in SQL Server?
Are there any Linear Regression Function in SQL Server 2005/2008, similar to the the Linear Regression functions in Oracle ?
2
votes
1answer
8k views
Line of best fit scatter plot
I'm trying to do a scatter plot with a line of best fit in matlab, I can get a scatter plot using either scatter(x1,x2) or scatterplot(x1,x2) but the basic fitting option is shadowed out and lsline ...
2
votes
4answers
2k views
Linear regression for time series with Gnuplot
I am a big fan of Gnuplot and I used it all along my studies for various projects.
Lately I wanted to use Gnuplot to chart some time series like weight loss, exercising results, gas consumptions etc.
...
2
votes
3answers
1k views
Equations for 2 variable Linear Regression
We are using a programming language that does not have a linear regression function in it. We have already implemented a single variable linear equation:
y = Ax + B
and have simply calculated ...
1
vote
0answers
56 views
Recursive time series segmentation algorithm
Im doing Time series analysis on stock market data and trying to implement an algorithm for piecewise linear segmentation, which is as follows :
split(T [ta, tb ]) – split a time series T of ...
1
vote
0answers
40 views
segmented linear regression in python
Is there a library in python to do segmented linear regression?
I'd like to fit multiple lines to my data automatically to get something like this:
Btw. I do know the number of segments.
1
vote
1answer
45 views
Linear Regression with Multiple Variables - Python - Implementation issues
I am trying to implement Linear Regression with Multiple variables( actually , just 2 ) . I am using the data from the ML-Class Stanford. I got it working correctly for the single variable case. The ...
1
vote
1answer
37 views
the difference between ridge and A\b in matlab
Given the same A, b and L2 regularization parameter beta = 0, why do ridge and \ give two different solutions?
b = [ 0
-2
-3
-3
-3
-3
-3
-3
-3
-3
-3
-3
...
1
vote
1answer
82 views
pure python code for multivariate linear regression
Due to a bug (perhaps in the numpy distribution I'm using), I can't use numpy.linalg.lstsq. And every statistics library I found didn't install under python 3 (on Windows).
Does someone have pure ...
1
vote
1answer
86 views
Doing linear prediction with R: How to access the predicted parameter(s)?
I am new to R and I am trying to do linear prediction. Here is some simple data:
test.frame<-data.frame(year=8:11, value= c(12050,15292,23907,33991))
Say if I want to predict the value for ...
1
vote
2answers
110 views
What exactly does delta mean in the gradient descent algorithm?
As on the picture:
Could someone help me understand what exactly what delta means in the gradient descent algorithm?
1
vote
3answers
98 views
Create function to automatically create plots from summary(fit <- lm( y ~ x1 + x2 +… xn))
I am running the same regression with small alterations of x variables several times. My aim is after having determined the fit and significance of each variable for this linear regression model to ...
1
vote
3answers
110 views
Linear regression factor
Given a list of points, I need to achieve a simple linear regression on them. This part is quite easy and code examples can be found in a lot of places.
My problem is determining the regression ...
1
vote
2answers
38 views
Linear regression, with limits
I have a set of points, (x, y), where each y has an error range y.low to y.high. Assume a linear regression is appropriate (in some cases the data may originally have followed a power law, but has ...
1
vote
1answer
490 views
WPF Charting with Dynamic Data Display: How can I show a regression line?
I'm using Dynamic Data Display (D3) to render a few simple LineSeries on a chart:
<d3:ChartPlotter>
<d3:CursorCoordinateGraph/>
<d3:LineGraph DataSource="{Binding ...
1
vote
2answers
637 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, ...