for issues related to linear regression modelling approach

learn more… | top users | synonyms

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 ...
3
votes
1answer
379 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 ...
3
votes
1answer
226 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 ...
2
votes
1answer
266 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
131 views

regression coefficient calculation in python

I have a Dataframe and an input text file of activity.Dataframe is produced via pandas.I want to find out the regression coefficient of each term using following formula ...
1
vote
1answer
164 views

Can ggplot show regressions of y on x and x on y simultaneously?

I have a bivariate data set: set.seed(45) require(mvtnorm) sigma <- matrix(c(3,2,2,3), ncol=2) df <- as.data.frame(rmvnorm(100, sigma=sigma)) names(df) <- c("u", "v") Setting up v as the ...
1
vote
1answer
219 views

Logistic Regression with R and Hadoop

We are using rmr and rhadoop package of RevoR. Can we perform linear regression on an entire data set in hadoop without the need to implement the linear regression algorithm in map reduce or Is ...
1
vote
1answer
3k views

linear regression/trend line with ms charting

I have data that are numbers both on x and y and have charted them using mschart 4.0 I need to add a trend line/linear regression to a bunch of points I have. The data on x and y are both numbers ...
0
votes
1answer
47 views

julian dates as.date

I am trying to run a simple regression in R (mac OSX), to see if the level of an environmental certification has improved over time - among other things. The data I downloaded offers a level from ...
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 ...
0
votes
1answer
136 views

Multiple Regression with math.net

Hello I am trying to get multiple regression with math.net and I am a little confused. var xdata = new DenseMatrix( new double[,]{{1, 36, 66, 45, 32}, {1, 37, 68, 12, 2}, ...
0
votes
1answer
64 views

Gradient Descent Implementation in Python returns Nan

I am trying to implement gradient descent in python; the implementation works when I try it with training_set1 but it returns not a number(nan) when I try it training_set. Any idea why my code is ...
0
votes
1answer
167 views

SSRS Linear Regression Line for data in SSAS Cube

End Goal: Create a scatter plot with actual data (coming from SSAS Cube) and a best fit line using basic least-squares regression. At the present, my MDX looks like this: SELECT ...
0
votes
1answer
225 views

Create Line in Highcharts with start and end point

please have a look at following example: <script type="text/javascript"> var $j = jQuery.noConflict(); function recalculateUTCValue(startingUTC, add) { zeit = new Date(startingUTC); ...
0
votes
1answer
89 views

model selection

Using R the data set has 252 observations and 18 variables which I needed a test sample with every tenth observation and the training sample with the remaining data so I created two separate datasets: ...
0
votes
1answer
181 views

scope from add1()-command in R

I am not sure how to use the add1 command. Suppose I have a model y=b0+b1*x1 and I would like to know if it would be a better fit to add more independent variables. Now I would test all models ...
0
votes
1answer
2k views

Confidence Intervals in R

I am supposed to calculate different confidence intervals and I found out that, in R, I can do that with the predict-command. But I've got a problem understanding what I have to do really. I am ...
0
votes
1answer
43 views

How to use linear regression in R if some values of one of predictors are missing?

y is expected to be a linear function of predictors x1, x2, ..., xn so I use glm to find a regression but some values of one of parameters (x1, for example) are missing (NA in input data) they are ...
0
votes
1answer
262 views

How can I obtain segmented linear regressions with a priori breakpoints?

I need to explain this in excruciating detail because I don't have the basics of statistics to explain in a more succinct way. Asking here in SO because I am looking for a python solution, but might ...
0
votes
1answer
532 views

Efficient Cointegration Test in Python

I am wondering if there is a better way to test if two variables are cointegrated than the following method: import numpy as np import statsmodels.api as sm import statsmodels.tsa.stattools as ts y ...
1
vote
0answers
85 views

Normalization in multiple-linear regression

I have a data set for which I would like build a multiple linear regression model. In order to compare different independent variable I normalize them by their standard deviation. I used ...
1
vote
0answers
270 views

Using stepAIC to make out of sample predictions

just had a quick question on using Step AIC to make prediction. I'm a beginner in R, so please pardon if the solution is obvious. Tried searching around but couldn't really find what I was looking ...
1
vote
0answers
264 views

Trouble installing MathNet.Numerics in VS2010 Express, System.Numerics is missing?

I'm new here, just getting my feet wet writing my first Windows Phone 7 app. Specifically, I need to do linear regression on some data to get a simple y=Ax^2+Bx+C best fit curve. After some ...
1
vote
0answers
82 views

Rescue all prediction results in Liblinear for Java

I was wondering how one can rescue all of the prediction results when using the Java API for liblinear. As it is well documented one can rescue the accuracy of the prediction with the following code: ...
1
vote
0answers
136 views

Java library for computing a multi-dimensional line of best fit?

I'd like a (free) library or other method that can take N data points with M variables each and compute a line of best fit those data points. Speed is more necessary than exactness. Are there ...
1
vote
0answers
186 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. ...
1
vote
0answers
845 views

How to draw the best fit line with c#.net

I have been trying to do a regression analysis on some data points with c#.net. Can anyone suggest some references to me to be able to plot the data points as well as the best fit line on one chart ...
0
votes
0answers
14 views

Adaboost with basic Linear Classifier

I am trying to implement the adaboost algorithm with the simple linear classifier as weak learner. For this I am using the pseudo inverse rule. i.e. w = inv(X*X')*X*t, where w is the weight vector of ...
0
votes
0answers
55 views

Regressing a quantitative variable from several compatible qualitative variables

This is my first question on stackoverflow and I hope I'll do things properly. I am studying the impact of movie genres on box-office. My endogenous variable is boxoffice, continuous and ...
0
votes
0answers
17 views

Fast way of finding RSS of Multiple Linear Regression

Is there any smarter way to compute Residual Sum of Squares(RSS) in Multiple Linear Regression other then fitting the model -> find coefficients -> find fitted values -> find residuals -> find norm of ...
0
votes
0answers
49 views

Interval regression with R

I need to perform a multiple regression analysis of response data that is expressed as an interval (a lower bound and an upper bound), that I assume is log-normally distributed, on a number of ...
0
votes
0answers
29 views

Scatter Chart and Linear Regression Line of them as Line Chart on Same Chart - Libreoffice

I x values and y values of points at Libreoffice. At same chart I want to do scatter points and another line that linear regression line of that points at same chart. Any ideas how to do that?
0
votes
0answers
44 views

Contour plot of back transformed data

I've fitted a linear model to my log10 transformed data with the rsm function of the DoE.wrapper library in R. Now I simply want to obtain some contour plot of my model but with data back-transformed ...
0
votes
0answers
41 views

Why is cpu performance frequently used as example for linear regression methods?

I've seen several lecture notes and books using prediciton of cpu performance as an example for linear regression methods. Why do they do this? I would, for instance, expect there to be a non-linear ...
0
votes
0answers
45 views

Estimating dependent variable as sum of functions of independent variables

I have a training data of 5 columns, where c1 is the dependent variable and columns c2, c3, c4, c5 are independent variables. I want to estimate c1 as sum of functions of ci (where i = 2, 3, 4, 5) in ...
0
votes
0answers
89 views

Understanding and plotting prediction bands with logarithmic scale y-axis in R

I am doing some scatter plots from rather large data sets and want to plot fitted lines and prediction bands. The y-axis should be log10 scale and outliers has not been removed yet. I am having great ...
0
votes
0answers
43 views

R BAS package, error no positive roots

I'm learning R and generalized linear models, I found BAS which I think is simple to use to get one, but running it I got this mistake and as I said just begining to learn. Any help: No positive ...
0
votes
0answers
76 views

rcs generates bad prediction in lm() models

I'm trying to reproduce this blog post on overfitting. I want to explore how a spline compares to the tested polynomials. My problem: Using the rcs() - restricted cubic splines - from the rms package ...
0
votes
0answers
235 views

Linear Regression (Gradient descent update) - training set err is more than testing [SOLVED]

My algorithm is like: data is stored as: data = [record1, record2, ... ] where record1 is [1, x1, x2 ..., x_m] m feature values for that record theta is parameter of linear regression function, ...
0
votes
0answers
46 views

multiple linear regression of meta numerics

I am using Meta.Numerics to do multiple linear regression. but the result is not correct with the result which I run the analysis in SPSS. any one use this library ? here is code, // columns: 0-Y ; ...
0
votes
0answers
72 views

Generating predictions for multiple linear models

Firstly, I am a very novice user of R so please bear with me if this seems fairly straightforward! I have a .csv file of all the potential linear models (32767 of them) that could predict my response ...
0
votes
0answers
56 views

What non-negative linear models are supported/planned in scikit-learn?

Scikit-learn offers a large variety of useful linear models. However, I am working on a problem which is linear with non-negativity constraints (i.e. solution variables should be non-negative). I ...
0
votes
0answers
56 views

Bivariate response with mixed effect model

I would like to fit my data with two response variables including: Energy and Nitrogen (as the responses) vs DMI and MY (as predictors) and Study as a random effect. Of course I could fit them ...
0
votes
0answers
76 views

Extract values from cv.lm (DAAG)

I have run cv.lm on my linear model (as a leave-one-out-cross-validation, ie m=#lines to my dataset). This returned (for folds 1 to 336) : fold 336 Observations in test set: 1 150 ...
0
votes
0answers
24 views

Can you tell about java library having LGPL license which can perform quadratic cubic polynomial regression and can be used for commercial purpose?

is there any java library having LGPL license which can perform quadratic,cubic,linear regression and can be used for commercial purpose?
0
votes
0answers
108 views

Creating simple rules of classification based on linear SVM coeficients

Gretings. I'm trying to translate SVM findings in a linear combination of predictors. Here is an example of R code : ## Data example test = structure(list(y_bin = c(1, 0, 0, 0, 0, 1, 1, 1, 0, ...
0
votes
0answers
86 views

OLS and PLS/PCR coefficients equal when using maximum number of components

I am trying to find different sets of coefficients from different linear models for a set of time-series objects. Currently I have the netchange in ticks for 5 different equity products, and want to ...
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 ...
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 ...
0
votes
0answers
79 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 ...

1 2