for issues related to linear regression modelling approach

learn more… | top users | synonyms

21
votes
1answer
313 views

Is there a better alternative than string manipulation to programmatically build formulas?

Everyone else's functions seem to take formula objects and then do dark magic to them somewhere deep inside and I'm jealous. I'm writing a function that fits multiple models. Parts of the formulas ...
17
votes
5answers
5k 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 ...
12
votes
1answer
604 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
2answers
6k 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' ...
11
votes
6answers
7k 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
1k 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
3answers
3k 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. ...
10
votes
1answer
921 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: ...
9
votes
4answers
6k 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 ...
9
votes
2answers
664 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?
8
votes
3answers
286 views

How to put a complicated equation into a R formula?

We have the diameter of trees as the predictor and tree height as the dependent variable. A number of different equations exist for this kind of data and we try to model some of them and compare the ...
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 ...
7
votes
3answers
2k 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
1k 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 ...
7
votes
3answers
693 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
414 views

Why are LASSO in sklearn (python) and matlab statistical package different?

I am using LaasoCV from sklearn to select the best model is selected by cross-validation. I found that the cross validation gives different result if I use sklearn or matlab statistical toolbox. I ...
6
votes
5answers
1k 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 ...
6
votes
3answers
7k 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 ?
6
votes
3answers
217 views

Why does lm return values when there is no variance in the predicted value?

Consider the following R code (which, I think, eventually calls some Fortran): X <- 1:1000 Y <- rep(1,1000) summary(lm(Y~X)) Why are values returned by summary? Shouldn't this model fail to ...
6
votes
3answers
368 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
2answers
989 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 : ...
6
votes
1answer
2k views

matrices are not aligned Error: Python SciPy fmin_bfgs

Problem Synopsis: When attempting to use the scipy.optimize.fmin_bfgs minimization (optimization) function, the function throws a derphi0 = np.dot(gfk, pk) ValueError: matrices are not ...
5
votes
2answers
3k 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 ...
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 ...
5
votes
2answers
154 views

Calculating the number of dots lie above and below the regression line with R [closed]

How do I calculate the number of dots that lie above and below the regression line on a scatter plot? data=read.csv("info.csv") par(pty="s") plot(data$col1,data$col2,xlab="xaxis", ylab="yaxis", ...
5
votes
3answers
3k views

Is there a Java library for better linear regression? (E.g., iteratively reweighted least squares)

I am struggling to find a way to perform better linear regression. I have been using the Moore-Penrose pseudoinverse and QR decomposition with JAMA library, but the results are not satisfactory. ...
5
votes
3answers
2k views

Constrained Linear Regression in Python

I have a classic linear regression problem of the form: y = X b where y is a response vector X is a matrix of input variables and b is the vector of fit parameters I am searching for. Python ...
5
votes
3answers
1k 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, ...
5
votes
1answer
153 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
1answer
31k 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 ...
4
votes
1answer
2k views

lm predict won't predict

I have 2 data frames. One is training data (pubs1), the other (pubs2) test data. I can create a linear regression object but am unable to create a prediction. This is not my first time doing this ...
4
votes
1answer
1k 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 <- ...
4
votes
3answers
928 views

multivariate linear regression in python?

I can't seem to find any python libraries that do multivariate regression. The only things I find only do simple regression. I need to regress my dependent variable (y) against several independent ...
4
votes
1answer
698 views

What is the difference between linear regression and logistic regression?

When we have to predict the value of a categorical outcome, we use logistic regression. I believe we use linear regression to also predict the value of an outcome given the input values. Then, what ...
4
votes
2answers
315 views

Is there a special type of multivariate regression for multiple-parameter predictions?

I am trying using multivariate regression to play basketball. Specificlly, I need to, based on X, Y, and distance from the target, predict the pitch, yaw, and cannon strength. I was thinking of using ...
4
votes
4answers
2k 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
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, ...
3
votes
2answers
3k views

Weighted Linear Regression in Java

Does anyone know of a scientific/mathematic library in Java that has a straightforward implementation of weighted linear regression? Something along the lines of a function that takes 3 arguments and ...
3
votes
1answer
2k views

How to calculate the 95% confidence interval for the slope in a linear regression model in R

Here is an exercise from Introductory Statistics with R: With the rmr data set, plot metabolic rate versus body weight. Fit a linear regression model to the relation. According to the fitted model, ...
3
votes
2answers
147 views

Plotting a single line with two different colours with ggplot2

I'm trying to plot a set of data with ggplot2. The data are in two categories. I would like to plot them together, with a single linear regression line. However, I would like to have each of the two ...
3
votes
2answers
291 views

How to combine a list of unequal lm object length into a data frame?

I like to extract the coefficients and standard errors of each lm object and combine them into a data.frame with NA fill in for the missing predictors. set.seed(12345) ...
3
votes
2answers
295 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
4answers
1k 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
6answers
2k 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 ...
3
votes
2answers
714 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 ...
3
votes
1answer
2k views

predict.lm() with an unknown factor level

I am fitting a model to factor data and predicting. If the newdata in predict.lm() contains a single factor level that is unknown to the model, all of predict.lm() fails and returns an error. Is ...
3
votes
5answers
719 views

numpy: code to update least squares with more observations

I am looking for a numpy-based implementation of ordinary least squares that would allow the fit to be updated with more observations. Something along the lines of Applied Statistics algorithm AS 274 ...
3
votes
1answer
2k views

Converting Numpy Lstsq residual value to R^2

I am performing a least squares regression as below (univariate). I would like to express the significance of the result in terms of R^2. Numpy returns a value of unscaled residual, what would be a ...
3
votes
2answers
129 views

Why derivative of a function is used to calculate Local Minimum instead of the actual function?

In Machine learning regression problem, why the local minimum is computed for a derivative function instead of the actual function? Example: http://en.wikipedia.org/wiki/Gradient_descent The ...
3
votes
2answers
57 views

Converting a grouped continous variable into rows in R

I have a data frame with these values dummy vales and I want to do lm regression on them. One of the variables is a grouped continuous variable as shown below df <- data.frame("y" = c(10, 11, 12, ...

1 2 3 4 5 6