for issues related to linear regression modelling approach

learn more… | top users | synonyms

2
votes
1answer
312 views

Gradient Descent Linear Regression in Java

This a bit of a long shot, but I wonder if someone could look at this. Am I doing Batch Gradient descent for linear regression correctly here? It gives the expected answers for a single independent ...
0
votes
1answer
484 views

R Variable Length Differ when build linear model for residuals

I am working on a problem where I want to build a linear model using residuals of two other linear models. I have used UN3 data set to show my problem since its easy put the problem here than using my ...
0
votes
2answers
73 views

lm(y~x*g) ignoring one value for g

I'm trying to use R for the first time. In this case, y is oxygen consumption, x is time and g is status indicated by up to three letters (NYF, IR, F, M, or NF). It will run regressions for each ...
0
votes
2answers
45 views

Obtain equations of segments composing a graph

I have an array of values which, when plotted, give this graph. http://imageshack.us/photo/my-images/15/schermatadel20130215150.png I need to obtain the equations of the segments that compose it, ...
3
votes
2answers
128 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 ...
0
votes
1answer
174 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 ...
-1
votes
1answer
64 views

Automated regression procedure in stata

I'm going to study the relationship between the illiquidity and returns in stock markets, using the Amihud model proposed in the paper "Illiquidity and stock returns: cross-section and time-series ...
3
votes
2answers
56 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, ...
0
votes
1answer
238 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
2answers
86 views

geom_segment: Removed 1 rows containing missing values [closed]

I am working through a linear regression example for uni variate data. The example is listed in this webpage: http://al3xandr3.github.com/2011/02/24/ml-ex2-linear-regression.html Sorry for not ...
1
vote
2answers
145 views

R-sq values, linear regression of several trends within one dataset

I am running into a sticky spot trying to solve for variance accounted for by trend several times within a single data set..... My data is structured like this x <- read.table(text = " STA YEAR ...
0
votes
1answer
100 views

Extracting the terminal nodes of each tree associated with a new observation

I would like to extract the terminal nodes of the random forest R implementation. As I have understood random forest, you have a sequence of orthogonal trees. When you predict a new observation (In ...
1
vote
1answer
160 views

Linear Regression calculation several times in one dataframe

I am using R to evaluate climate data and I have a data set that looks like the following miniaturized version... please forgive my crude posting etiquette, I hope this post is understandable. ...
0
votes
0answers
77 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
243 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, ...
2
votes
1answer
95 views

Why am I getting different intercept values in R and Java for simple linear regression?

I have linear regression code written in R and I have to do the same thing in Java. I used Apache Commons math library for this. I used the same data in R code and in Java code, but I got different ...
0
votes
2answers
323 views

linear regression in Java similar in R [duplicate]

Possible Duplicate: Is there a Java library for better linear regression? (E.g., iteratively reweighted least squares) I have a following code inf R, but i need to implement the same thing ...
0
votes
1answer
78 views

How to know which x values to use in predict method in R?

I have fitted a linear model: f <- lm(y ~ x) From that I used the predict method p <- predict(f) But the predict method does not deliver the expected result. In the following image I have ...
0
votes
0answers
47 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 ; ...
1
vote
0answers
148 views

Python Machine Learning Toolkit [closed]

Was hoping someone could point me in the right direction in terms of which python ML libraries would be best to classify comparisons between two songs. Working on creating a basic recommendations ...
2
votes
1answer
194 views

Plot and report X intercept from linear regression - R

I am using lm in r for linear regression. I would like to plot and report the x intercept. I know that I could use algebra and solve for x by setting y = 0, but is there a way to have r report it to ...
0
votes
1answer
229 views

Gradient descent stochastic update - Stopping criterion and update rule - Machine Learning

My dataset has m features and n data points. Let w be a vector (to be estimated). I'm trying to implement gradient descent with stochastic update method. My minimizing function is least mean square. ...
0
votes
1answer
174 views

'Fixed knots and prediction' in piecewise linear regression using the segmented package

Hi this question relates to a question asked previously but as that was succesfully answered and my queries are now different I feel a new question is valid. Also please feel free to move this to ...
2
votes
5answers
563 views

how to plot the linear regression in R?

I want to make the following case of linear regression in R year<-rep(2008:2010,each=4) quarter<-rep(1:4,3) cpi<-c(162.2,164.6,166.5,166.0,166.4,167.0,168.6,169.5,170.0,172.0,173.3,174.0) ...
0
votes
1answer
124 views

OLS with pandas: datetime index as predictor

I would like to use pandas OLS function to fit a trendline to my data Series. Does anyone knows how to use the datetime index from the pandas Series as predictor in the OLS? For example, let say that ...
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 ...
1
vote
1answer
44 views

Maximum number of dependencies in pandas ols?

I run pandas OLS on a data set. If I run it with less than 20 time series in the x-value, everything works fine Is there a maximum of dependants pandas.ols can handle? This is what I'm doing, except ...
0
votes
0answers
57 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
2answers
560 views

Time series prediction using R

I have the following R code library(forecast) value <- c(1.2, 1.7, 1.6, 1.2, 1.6, 1.3, 1.5, 1.9, 5.4, 4.2, 5.5, 6, 5.6, 6.2, 6.8, 7.1, 7.1, 5.8, 0, 5.2, 4.6, 3.6, 3, 3.8, 3.1, 3.4, 2, 3.1, 3.2, ...
0
votes
1answer
464 views

Multiple Regression in Math.Net Numerics

I achieved simple single regression using math.net regression method like this: var xdata = new double[] { 10, 20, 30, 40, 50 }; var ydata = new double[] { 15, 20, 25, 55, 95 }; var X = ...
-2
votes
1answer
67 views

Is this system linear? Can I apply crammer? [closed]

There is this website http://www.diabloprogress.com/items/ that has it's own criterias (unknown to me) calculating a rating for each item. I am not interested if those criterias or weights are right ...
0
votes
2answers
154 views

Include quadratic terms in Deducer's Linear Regression Model Builder

What should I do in Deducer's Linear Regression Model Builder to produce a formula like the following lm(ozone~temp*wind*rad+I(rad^2)+I(temp^2)+I(wind^2)) In the Outcomes text box I have the ozone ...
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
77 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 ...
2
votes
1answer
713 views

R linear regression issue : lm.fit(x, y, offset = offset, singular.ok = singular.ok, …)

I try a regression with R. I have the following code with no problem in importing the CSV file dat <- read.csv('http://pastebin.com/raw.php?i=EWsLjKNN',sep=";") dat # OK Works fine Regdata ...
1
vote
2answers
543 views

Add line/equation to scatter plot

I have 3 models, all of which are significant and I want to create a linear graph with my data. This is what I have so far: ...
1
vote
1answer
150 views

In R package “segmented”, How could I set the slope of one of lines in the model to 0?

I am using the R package segmented to calculate parameters for a model, in which the response variable is linearly correlated with the explanatory variable until a breakpoint, then the response ...
2
votes
1answer
361 views

Predicting standard errors of forecast

I'm a newbie to R, coming from the Stata world. I've just run a linear model (with approx 100 variables, each with 500 data points or so) like so: RegModel.3 <- ...
0
votes
0answers
50 views

Multiple Linear Regression where all columns are independent variables [duplicate]

Possible Duplicate: short formula call for many variables when building a model I have a data frame that has 22,000 rows and 2,000 columns. The columns are samples and the rows are genes. ...
1
vote
0answers
271 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
1answer
220 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 ...
0
votes
2answers
98 views

In R: How can I plug in values for my independent variables in a linear model?

I am working with a linear model that has 3 variables and interactions. Instead of manually typing the formula out and typing in values for each of the variables, say X Y and Z, how can I tell R to ...
-1
votes
1answer
133 views

Creating linear model for every combination of factors

I'm trying to do a simple linear regression on my data frame that looks something like what follows. The actual data set has more factors and more predictors (x's) all trying to predict y. f1 f2 x y ...
1
vote
1answer
246 views

liblinear (in java) simple example won't work

I'm trying to operate the liblinear library (java), and i'm using a super-simple example with the template found here. The case example is to determine if a shape is a square or a rectangle. here is ...
2
votes
1answer
178 views

add regresion line to plot (plotmeans)

My problem is that I would like to create plot with mean values and standard deviation. I found the function plotmeans in package gplots and now I would like to add trend line to that graph. I try to ...
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: ...
-1
votes
1answer
164 views

R - Model with a lot of dummy variables

Ok so let me try this again so that hopefully this ban will be lifted. If I have a column in a data set that has multiple variables how would I go about creating these dummy variables. Example: ...
0
votes
1answer
117 views

confidence regino in matlab polyval

I need to understand how one can calculate the confidence interval for linear regression. The values I got myself is different from the one with Matlab. So, I've been trying to understand how it is ...
3
votes
2answers
215 views

matlab: optimum amount of points for linear fit

I want to make a linear fit to few data points, as shown on the image. Since I know the intercept (in this case say 0.05), I want to fit only points which are in the linear region with this particular ...
0
votes
2answers
138 views

Applying mathematical expressions on time series data

I have parsed HL7 file and have generated some values. So that now, I have series of values over time for different identifiers of OBX segment of HL7 file. Now, as per requirement I want to apply ...