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 ...
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
1answer
331 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
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: ...
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
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 ...