for issues related to linear regression modelling approach

learn more… | top users | synonyms

0
votes
1answer
526 views

How does the subset argument work in the lm() function?

This may actually be a bit of a stupid question but it seems as if I'm not capable enough to solve it right away. I have been trying to figure out how the subset argument in R's lm() function works. ...
2
votes
4answers
3k views

Gradient descent and normal equation method for solving linear regression gives different solutions

I'm working on machine learning problem and want to use linear regression as learning algorithm. I have implemented 2 different methods to find parameters theta of linear regression model: Gradient ...
0
votes
2answers
420 views

Linear Regression In Objective C or C

I am looking to find the slope between two vectors via linear regression in Objective C or C (its for xcode). The equation I am attempting to mirror is implemented in matlab. (Info on it here: ...
0
votes
1answer
96 views

lmFit model datasets requirements

I am very new to R and try to analyze a few expression array data. For the gene expression analysis, we use linear fit and eBayes to calculate the data. But if I only have one sample for each ...
0
votes
0answers
86 views

vertical lines through gsl_fit_linear

I am using gsl_fit_linear to fit a straight line through my data samples. Incidentally, I came across a situation when the data samples lie on a vertical line. I observed that in this case ...
1
vote
1answer
325 views

Linear regression in Objective-C

I´m trying to implement a method that fits a line to a set of points in 2D. I wrote the following code that reads the data from two Array (X, Y coordinate) and should calculate the parameters of the ...
0
votes
0answers
34 views

Linear Regression Ordered

So I have an equation as follows: [A1 B1 C1] [x] [s1] [A2 B2 C2] * [y] = [s2] [A3 B3 C3] [z] [s3] Now all Ai, Bi, and Ci are known, the major issue here is that instead of all the si's ...
1
vote
1answer
247 views

About using GAM Models in R

Currently I'm replicating the exercise did by Wood (2006) about the relationship between air pollution and death rates in Chicago, using GAM models. So, I followed the code he used in his book. The ...
2
votes
5answers
192 views

why overfitting gives a bad hypothesis function

In linear or logistic regression if we find a hypothesis function which fits the training set perfectly then it should be a good thing because in that case we have used 100 % of the information given ...
1
vote
0answers
192 views

linear regession model testing with regsubsets time and correctness

I have 2700 observations with 60 characteristic columns and 3 response variables. I am analyzing the data in R. At first I estimated a model with 34 of the characteristics based on the R^2 value. ...
0
votes
1answer
136 views

Linear regression with interaction fails in the rms-package

I'm playing around with interaction in the formula. I wondered if it's possible to do a regression with interaction for one of the two dummy variables. This seems to work in regular linear regression ...
0
votes
1answer
342 views

Step halving issue in gnls{nlme}

I am trying to estimate parameters for generalized least-squares regression on some community data. I have successfully done this for one set of data, but when I try the same technique to estimate ...
0
votes
1answer
180 views

In R, how to extract just the significant variables after running a Multiple Regression with a large number of variables

After running a multiple regression in R, the regression summary indicates the significant variables with stars. In a dataset that I am working on there are nearly 2000 variables and the significant ...
3
votes
1answer
1k views

“weighted” regression in R

I have created a script like the one below to do something I called as "weighted" regression: library(plyr) set.seed(100) temp.df <- data.frame(uid=1:200, ...
1
vote
3answers
1k views

Can scipy.stats identify and mask obvious outliers?

With scipy.stats.linregress I am performing a simple linear regression on some sets of highly correlated x,y experimental data, and initially visually inspecting each x,y scatter plot for outliers. ...
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) ...
0
votes
1answer
173 views

Minimal but fast Weighted- Least Squares Regression

I know that similar questions have been asked in the past but mine has to do with weighted regression in which only the coefficients are needed. The computation should be as fast as possible. I know ...
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
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
3answers
723 views

Creating a trend line from data set SQL

The code below returns the number of resolved tickets and the number of opened tickets for a period (period is YYYY,WW) going back a certain number of days. For example if @NoOfDays is 7: resolved ...
0
votes
0answers
80 views

Converting regression equation to regular equation

Hello dear stackoverflow users, I'm not entirely sure what to tag this question with since I'm new here but I hope some more experienced user can guide me. Here is my problem: I'm using an internal ...
2
votes
2answers
2k views

How to force zero interception in linear regression?

I'm a bit of a newby so apologies if this question has already been answered, I've had a look and couldn't find specifically what I was looking for. I have some more or less linear data of the form ...
1
vote
1answer
329 views

Checking a panel unit root test in R done manually

I have spent much time looking for a special package that could run the Pesaran(2007) unit root test (which assumes cross-sectional dependence unlike most others) and I have found none. So, I decided ...
2
votes
2answers
502 views

R: Variable selection for multiple regression w/ percentage dependent variable, serious collinearity

I've got a dataset with 9 continuous independent variables that I'm trying to select between to fit a model to a single percentage (dependent) variable: Score. Unfortunately, I know there will be ...
3
votes
3answers
207 views

R Is there a way to do thresholding in linear regression?

I'm trying to do a linear regression but I'm only looking to use variables with positive coefficients (I think this is called hard-thresholding, but I'm not certain). for example: > summary(lm1) ...
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 ...
1
vote
1answer
227 views

Capping linear regression prediction values using scikit

I am training linear regression model using a data-set which has real valued labels in the interval [0,10]. My predicted values on the test set have some predictions exceeding 10. Is there a way to ...
4
votes
2answers
314 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 ...
0
votes
2answers
256 views

Decorrelating the data

How can we calculate square root of a non-square matrix? p.s. I tried Jordan Matrix Decomposition method but it seems it's applicable only on square matrices.
0
votes
3answers
744 views

A simple perceptron in Python

http://en.wikipedia.org/wiki/Perceptron#Example My question is, why are there 3 input values in each vector when NAND only takes 2 parameters and returns 1: ...
1
vote
2answers
2k views

How can I create a linear regression line on a scatterplot with R?

I tried abline function to create a linear regression line on a scatterplot. x= c (1.0325477, 0.6746901, 1.0845737, 1.1123872, 1.1060822, 0.8595918, 0.8512941, 1.0148842, 1.0722369, 0.9019220 , ...
0
votes
2answers
311 views

Generalized least square on large dataset

I'd like to linearly fit the data that were NOT sampled independently. I came across generalized least square method: b=(X'*V^(-1)*X)^(-1)*X'*V^(-1)*Y The equation is Matlab format; X and Y are ...
3
votes
1answer
2k views

MATLAB: Linear regression

I'm trying to work out the most efficient method to find the linear regression equation (y = mx + c) for a dataset, given a 2 by n array. Basically I want to know what the value of Y is when X is, ...
1
vote
1answer
294 views

Using coef and summary.lm with robcov in R (extracting p-values)

I can extract the p-values for my slope & intercept from an ols object this way: library(rms) m1 <- ols(wt ~ cyl, data= mtcars, x= TRUE, y= TRUE) coef(summary.lm(m1)) But when I try the same ...
3
votes
2answers
366 views

Weka nullPointerException while classifying

I am using for training the model and classifying again by using the model. I am correctly getting the statistics for the first part but not the second part. It gives nullPointerException while ...
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 ...
3
votes
1answer
382 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
2answers
645 views

R extract regression coefficients from multiply regression via lapply command

I have a large dataset with several variables, one of which is a state variable, coded 1-50 for each state. I'd like to run a regression of 28 variables on the remaining 27 variables of the dataset ...
0
votes
1answer
148 views

multiple regression using only covar matrix and means

I have a comprehensive covariance matrix for variables y1 (dependent variable), x1, x2, x3 (independent variables) and the associated mean values for each variable. How can I perform multiple ...
2
votes
1answer
267 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
654 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 ...
0
votes
1answer
247 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 ...
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 ...
1
vote
1answer
852 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 ...
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 <- ...
0
votes
1answer
188 views

Why does adding features to linear regression decrease accuracy?

I am new to ML and am working on a kaggle competition to learn a bit. When I add certain features to my dataset, the accuracy decreases. Why isn't the feature that adds to the cost just weighted ...
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 ...
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. ...
0
votes
1answer
357 views

Perl packages for statistics - multiple regression

I am new to perl and looking for a package that includes a code to calculate multiple regression. Something like OLS that is presented here: wikipedia - estimation methods for multiple regression ...
1
vote
1answer
1k 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 ...