The lm function is used to fit linear models in R. It can be used to carry out regression, single stratum analysis of variance and analysis of covariance.
-1
votes
1answer
30 views
Interpreting regression coefficients in R [closed]
I'm trying to fit a x*log(x) model to the data. The fitting is performed successfully but I have difficulties in interpreting the resulting coefficients. Here a snapshot of my code.
x <- c(6, 11, ...
-5
votes
1answer
45 views
How to use lm.fit instead on lm [closed]
I want to use lm.fit for speed, but second version gives NAs
sum <- summary(lm(y~x))
slope <- sum$coefficients[2]
or
sum <- lm.fit(as.matrix(x,ncol=1),y)
slope <- ...
-1
votes
1answer
51 views
Is my random variable significant [closed]
I performed an experiment on coral colonies (10 colonies, randomly chosen); manipulating aragonite/carbon chemistry and temperature (fixed effect). Now I want to test for random effects on the corals ...
1
vote
1answer
28 views
ask step by step levenberg-marquardt in java
I'm trying to write levenberg marquardt in Java, here's my code:
while (iter <= 10 || mse < 0.0001) {
call.calc_jacobian(ff, trainlm, input, akt1, akt2, w, x, t);
double[][] ...
1
vote
3answers
68 views
How to run lm for each subset of the data frame, and then aggreage the result?
I have a big data frame df, with columns named as :
age, income, country
what I want to do is very simpe actually, do
fitFunc<-function(thisCountry){
...
3
votes
1answer
54 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 ...
1
vote
1answer
35 views
how to pass a variable to lm within a function in R
Here is a (non)working example of how I would like to do things. The restriction is that all this has to happen within a function and that K should not be appended to x. What's the right way to do ...
1
vote
0answers
47 views
ASK java levenberg-marquardt algorithm
i try to implement levenberg algorithm in java code, but i met some difficulties, i dont know whats the problems, but the number of MSE doesnt going down. i made this network with 1 hidden layer, 18 ...
0
votes
1answer
38 views
Predict.lm for Multiple Regression; trouble with new.data
I'm running a multivariate regression on some trees data.
trees
Index DBH Height Merch.Vol.
1 1 8.3 70 10.3
2 2 8.6 65 10.3
3 3 8.8 63 10.2
4 ...
0
votes
1answer
34 views
r lm-like line in scatterplot3d
I want to add something of the form "abline" to a 3d Scatterplot in R.
Here's my code so far:
plot3d <- scatterplot3d( Table$Unemployment, Table$Foreigners,
Table$Overall.crime, ...
-1
votes
1answer
56 views
R Show P-value results of lm as matrix
I have a data frame containing multiple socio-economic factors with the correspondent obersvations. I want to run an lm-Analysis on all of them and then form a new matrix(or data frame) which contains ...
-1
votes
1answer
54 views
Understanding lm Multiple R when fit is a horizontal line
I have been using R and the lm function to do linear regression and report R2.
y = c(1,2,3,4)
x = c(1,2,3,4)
f = lm(y~x)
r2 = summary(f)$r.squared
However, someone gave me this case-
y = ...
0
votes
0answers
16 views
gcc -lm filename.c is not producing desired result
//for example
#include<stdio.h>
#include<math.h>
main()
{
int x=2;
int y= pow(x,2);// pow(2,2)/<--- this is working
}
when i run this code gcc -lm filename.c or ...
2
votes
3answers
75 views
Predict.glm not predicting missing values in response
For some reason, when I specify glms (and lm's too, it turns out), R is not predicting missing values of the data. Here is an example:
y = round(runif(50))
y = c(y,rep(NA,50))
x = rnorm(100)
m = ...
0
votes
1answer
56 views
R lm interaction terms with categorical and squared continuous variables
I am trying to get an lm fit for my data. The problem I am having is that I want to fit a linear model(1st order polynomial) when the factor is "true" and a second order polynomial when the factor is ...
0
votes
2answers
113 views
Error in lm.fit(x, y, offset = offset, singular.ok = singular.ok, …) : 0 (non-NA) cases
I encounter a problem when I use lm together with loop. I want to fit regression lines with every four values of xx and yy.
Here is my code,
>xx<-c(0 , 55, 146, 457, 643, 825,1008)
...
2
votes
1answer
38 views
How can I pass an argument as a character to a function within a function?
I'm trying to create a series of models based on subsets of different categories in my data. Instead of creating a bunch of individual model objects, I'm using lapply() to create a list of models ...
0
votes
0answers
63 views
Doing several cross sectional regression of unbalanced panel data in R
I have an unbalanced panel data set. The following data will do for illustration:
Id <- c(rep(1:4,3),rep(5,2))
Id <- Id[order(Id)]
Year <- c(rep(2000:2002,4),c(2000,2002))
z1 <- ...
0
votes
1answer
61 views
Linear regression with product of factor and independent variable
I am try to estimate a demand model:
d_t^k = a_t - b^k p_t^k + e_t^k
The indices t are for week number, k are for product number. The demand for each product d_t^k depends on the general ...
-1
votes
1answer
82 views
project a linear regression hyper plane to a 2d plot (abline-like)
I have this code
factors<-read.csv("India_Factors.csv",header=TRUE)
marketfactor<-factors[,4]
sizefactor<-factors[,5]
valuefactor<-factors[,6]
dati<-get.hist.quote("SI", quote ...
0
votes
0answers
12 views
predict multilinear regression
I'm using linear regression for prediction. f=lm(y0~x0)
y0 is of length 1251, x is a matrix of dimension (1251,2)
It works fine and gives a nice fitted model.
However when I try to test prediction ...
0
votes
1answer
119 views
Linear regression on a log-log plot - plot lm() coefficients manually as abline() is producing a bad fit
I apologise as I have asked a question along the same lines before but the answer was working well until now. I have produced six plots that looked good using this method, but now I've gotten two ...
3
votes
1answer
80 views
Extracting t-statistic for coefficient of interst from “mlm” object in R
I've used lm() to fit multiple regression models, for multiple (~1 million) response variables in R. Eg.
allModels <- lm(t(responseVariablesMatrix)~modelMatrix)
This returns an object of class ...
0
votes
0answers
6 views
how to output regression slopes
I am trying to run around 500 linear models and would like to save only the slopes of one particular effect (t1) those regression lines in an appended column in the data frame. Is this possible? ...
1
vote
1answer
92 views
Fit line to data on a log scale in R
Basically, I don't know how to plot a line of best fit on my data once it's a logarithmic scale. I put a linear regression trend line on my plot using lm() and abline(), but now that log="xy" has been ...
1
vote
2answers
73 views
In lm.wfit, what does z <- .Call(C_Cdqrls, x *wts, y*wts, tol) do?
My overarching question is, how does R calculate R^2 in the WLS case? It doesn't just weight the observations and then calculate the R^2. To try and figure this out, I was going through the source ...
3
votes
1answer
62 views
In R from a named number how do I extract just the number (without the name)?
I am looking for just the value of the B1(newx) linear model coefficient, not the name.
I just want the 0.5 value. I do not want the name "newx"
newx<-c(0.5,1.5.2.5)
newy<-c(2,3,4)
...
0
votes
1answer
75 views
Novice needs to loop lm in R
I'm a PhD student of genetics and I am trying do association analysis of some genetic data using linear regression. In the table below I'm regressing each 'trait' against each 'SNP' There is also a ...
1
vote
2answers
72 views
Extracting PCA axes for further analysis
I am analysing data regarding reed fields. Variables I have measured are water depth, reed height, reed density, etc. As some of the variables are dependent, I performed a PCA in order to reduce these ...
0
votes
1answer
42 views
Replace lm coefficients in [r]
Is it possible to replace coefficients in lm object?
I thought the following would work
# sample data
set.seed(2157010)
x1 <- 1998:2011
x2 <- x1 + rnorm(length(x1))
y <- 3*x1 + ...
0
votes
1answer
150 views
slope and intercept issue in scatterplot ggplot2
I was drawing a regression line (linear) using mtcars dataset (mpg ~ cyl). I ran a simple linear model using mpg and cyl and executed a summary.
Intercept from the linear model summary does not match ...
4
votes
2answers
132 views
linear model when all occurences of independent variables are NA
I'm looking for suggestions on how to deal with NA's in linear regressions when all occurrences of an independent/explanatory variable are NA (i.e. x3 below).
I know the obvious solution would be to ...
1
vote
3answers
103 views
Using lm and predict on data in matrices
I use R only a little bit and never use data frames, which makes understanding the correct use of predict difficult. I have my data in plain matrices, not data frames, call them a and b, which are N ...
0
votes
2answers
71 views
Coefficient Variable Membership in R
I have worked up a horribly lengthy solution to this before using regular expressions but I hope there is a more native way to do it.
Given a model, perhaps like
data(tips, package="reshape2")
mod ...
2
votes
2answers
133 views
Extracting Residual Sum of Squres from “mlm” object in R
I've used lm() to fit multiple regression models, for multiple (~1 million) response variables in R. Eg.
allModels <- lm(t(responseVariablesMatrix~modelMatrix)
This returns an object of class ...
1
vote
0answers
56 views
(2 not defined because of singularities) lm inexplicable singularities in coefficients
I have problems with my code regarding the lm function. Here is my code:
`factors<-read.csv("India_Factors.csv",header=TRUE)
marketfactor<-factors[,4]
sizefactor<-factors[,5]
...
0
votes
1answer
51 views
unserialize lm object in R
I have a file with file with 1 string following by a serialized lm object through rhipe, ie:
rhcollect (key, serialize(lm_result, NULL))
this file looks like:
[1] "1.0\t0x88 0x10 0x0 0x0 0x0 0x2 ...
4
votes
1answer
90 views
Why is using update on a lm inside a grouped data.table losing its model data?
Ok, this is a weird one. I suspect this is a bug inside data.table, but it would be useful if anyone can explain why this is happening - what is update doing exactly?
I'm using the list(list()) ...
0
votes
1answer
57 views
Access & Re-use model formula (R)
I want to automate the following procedure.
Fit a (lm /glm) model using step().
Extract the variables in the outcome model of (1), e.g., (X1+X2) as in Y~X1+X2
Re-use the model from (1) in a new ...
5
votes
1answer
132 views
Is there a function or package which will simulate predictions for an object returned from lm()?
Is there a single function, similar to "runif", "rnorm" and the like which will produce simulated predictions for a linear model? I can code it on my own, but the code is ugly and I assume that this ...
1
vote
4answers
217 views
R - interaction with only one factor level in regression
In a regression model is it possible to include an interaction with only one dummy variable of a factor? For example, suppose I have:
x: numerical vector of 3 variables (1,2 and 3)
y: response ...
2
votes
2answers
122 views
Add fitted quadratic curve
I'm trying to add a fitted quadratic curve to a plot.
abline(lm(data~factor+I(factor^2)))
The regression which is displayed is linear and not quadratic and I get this message:
Message d'avis : ...
0
votes
1answer
512 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 ...
-1
votes
1answer
71 views
Estimating values with which to replace NA
I have a data set that consists of several timeseries for which I want to calculate estimates within those timeseries to replace NA values. I am familiar with ddply() and lm() but I am having a bit ...
0
votes
1answer
142 views
R: lm() with factors. Don't understand how ANOVA table calculates “Sum Sq”
I'm learning R and trying to understand how lm() handles factor variables & how to make sense of the ANOVA table. I'm fairly new to statistics, so please be gentle with me.
Here's some movie data ...
1
vote
1answer
60 views
How to call lm with variables?
Given the following function:
f <- function (x, y, data) {
linm <- lm(y ~ x, data)
summary(linm)$r.squared
}
The following call fails:
d <- data.frame(a = c(1, 2), b = c(3, 4), d ...
0
votes
1answer
322 views
Rolling regression return multiple ojects
I am trying to build a rolling regression function based on the example here, but in addition to returning the predicted values, I would like to return the some rolling model diagnostics (i.e. ...
0
votes
1answer
181 views
Differences between p-values in summary and from the anova in R lm()
I am seeing differences in the p-value for the anova depending on how I access this.
Is there a way to get the same value that is returned by the summary?
One easy to represent case returns < ...
2
votes
2answers
134 views
What is the measure of how well a data *centered* to the prediction line in LM
I have two datasets with which I plot using R's lm command.
The first plot below is not centered towards the red line.
But the second graphs on the right is centered towards the line.
My ...
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 ...




