3
votes
1answer
68 views

order of coefficients in lm, R

When running a regression in R, what is the order for the returned coefficients? For example: coef(lm(y ~ x + z, data=data.frame(x=1:10, y=10:1, z=1:5))) Is it guaranteed that the coefficient ...
0
votes
1answer
698 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
1answer
80 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 ...
2
votes
1answer
917 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
1answer
397 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) ...
1
vote
2answers
825 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
270 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 ...
3
votes
2answers
168 views

Store regression result in MySQL from R with RMySQL package

I am new to R and stuck with one problem. I will explain it by an example. I am using R with php. I have one R script that calculates the linear regression: reg_result <- lm( Y ~ A1 + A2 + A3, ...
0
votes
1answer
603 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. ...
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 ...
6
votes
3answers
222 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 ...
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 <- ...
1
vote
2answers
1k views

multivariate regression

I have two dependents that both depent on two variables AND on each other, can this be modelled in R (must be!) but I can't figure out how, anyone a hint? In clear terms: I want to model my data ...