for issues related to linear regression modelling approach

learn more… | top users | synonyms

0
votes
2answers
175 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
83 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
912 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
664 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
178 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
414 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
52 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
283 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
224 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
104 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
141 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
269 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
209 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
92 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
185 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
123 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
229 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
147 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 ...
3
votes
1answer
508 views

Predicting values using an OLS model with statsmodels

I calculated a model using OLS (multiple linear regression). I divided my data to train and test (half each), and then I would like to predict values for the 2nd half of the labels. model = ...
0
votes
0answers
34 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
2answers
124 views

Appropriate ways to smooth a periodic time series?

I have a periodic time series, of air temperature over several years, and I want to be able to predict future values for it. I've calculated the average over the available years of the value at each ...
2
votes
2answers
169 views

Fast way of evaluating a formula?

I'm using either dyn or dynlm to predict time series using lagged variables. However, the predict function in either case only evaluates one time step at a time, taking a constant time of 24 ...
1
vote
0answers
292 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 ...
22
votes
1answer
329 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 ...
0
votes
1answer
202 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 ...
1
vote
1answer
393 views

R: predict.lm() not recognizing an object

> reg.len <- lm(chao1.ave ~ lg.std.len, b.div) # b.div is my data frame imported from a CSV file > reg.len Call: lm(formula = chao1.ave ~ lg.std.len, data = b.div) Coefficients: (Intercept) ...
0
votes
1answer
651 views

Matlab function to generate best fit line (r2 and m) for x and y with error bars

Does anyone know of a MATLAB function that takes in csv data (for columns: x, x_err, y, y_err), performs a best fit linear regression, and churns out r2 and m? A key here is that it accepts data error ...
2
votes
2answers
145 views

Linear regression for each cell in a table

I have four tables. Each of them got 4 rows and 4 columns. Followings are the four tables. For the 1st table, t1 <- array(1:20, dim=c(4,4)) [,1] [,2] [,3] [,4] [1,] 1 5 9 13 ...
2
votes
1answer
2k views

Comparing two linear models with anova() in R [closed]

I don't quite understand what the p-value in this output means. I don't mean p-values as such, but in this case. > Model 1: sl ~ le + ky > Model 2: sl ~ le Res.Df RSS Df Sum of Sq ...
2
votes
1answer
386 views

Map Reduce Linear Regression in base R

I'm working on a distributed linear regression calculation in R for Hadoop, but before implementing it, I'd like to verify that my calculations agree with the results of the lm function. I have the ...
5
votes
2answers
159 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", ...
1
vote
1answer
86 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: ...
7
votes
3answers
450 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 ...
0
votes
1answer
640 views

Get Confidence Interval For One Point On Regression Line In R?

How do I get the CI for one point on the regression line? I'm quite sure I should use confint() for that, but if I try this confint(model,param=value) it just gives me the same number as if I just ...
0
votes
1answer
91 views

cor(x,y) when x is POSIXct

I am calculating a linear regression between an age (numeric) vector and a date (POSIXct) vector. What is the most convenient way to transform the date so that cor is happy with it?
1
vote
1answer
101 views

Range of regularizer constant in linear regression

Is there any limit on the range of values that can be used for 'Lambda' - regularizer constant in Linear Regression. [Machine Learning Problem] I am getting a good fit for the data when the Lambda ...
0
votes
1answer
643 views

Analyzing correlated data in R: Linear, Ridge regression, PCR

I've got a time series of observations of 5 variables y, x_1, x_2, x_3, x_4 and the task is to find which of the xes are responsible for the changes in y. Now the problem is that all of them are ...
1
vote
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 ...
1
vote
1answer
147 views

What does “NOTE: A regression through the origin is fitted!” mean?

I'm using the plottol function in the tolerance package of R and getting an error / warning after my plot is generated that say "NOTE: A regression through the origin is fitted!" I've googled it and ...
2
votes
2answers
85 views

SLR - simple linear regression (in R, but about the math behind, not the programming)

So I have some problems understanding simple linear regression. I did read a lot, so I have the basic ideas in mind, but I cannot quite follow when we do one. So I have this equation: yi = a + bxi + ...
0
votes
1answer
146 views

Regression as a program

I am a newbie at this topic. I have a hard time copying example codes so i need to explain my problem here. What i have is a 1000+ numeric data given in excel column A. I have to take 50 (A1:A50) and ...
0
votes
2answers
810 views

How do you remove an insignificant factor level from a regression using the lm() function in R?

When I perform a regression in R and use type factor it helps me avoid setting up the categorical variables in the data. But how do I remove a factor that is not significant from the regression to ...
1
vote
2answers
820 views

How to manually set coefficients for variables in linear model?

In R, how can I set weights for particular variables and not observations in lm() function? Context is as follows. I'm trying to build personal ranking system for particular products, say, for ...
0
votes
1answer
45 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
267 views

Linear least squares fitting

DF times a b s ex 1 0 59 140 1e-4 1 2 20 59 140 1e-4 0 3 40 59 140 1e-4 0 4 60 59 140 1e-4 2 5 120 59 140 1e-4 20 6 180 59 140 1e-4 30 7 240 59 140 1e-4 31 8 360 59 140 1e-4 37 9 ...
1
vote
1answer
229 views

Linregress giving incorrect result

I am a big fan of Stack Overflow and am sure my question will be answered here. I am using Scipy to do linear regression. But at a particular set of inputs I am not getting the correct output. (Python ...
0
votes
2answers
2k views

How to Train and cross validation in R [closed]

Hello i am new to R, I am doing coursera course for machine learning, I know training and cross validation on datasets for purpose of prediction in octave but how can i do that operations in R?
2
votes
1answer
164 views

is logistic regression large margin classifier? [closed]

As I understand large margin effect in SVM: For example let's look at this image: In SVM optimization objective by regularization term we trying to find a set of parameters, where the norm of ...
-1
votes
1answer
1k views

Interpreting residual value statement in lm() summary [closed]

I am working with R to create some linear models (using lm()) on the data that i have collected. Now I am not that good at statistics and am finding it difficult to understand the summary of the ...