Displaying 1 result from an estimated 1 matches for "t4862261".
Did you mean:
482261
2007 Dec 03
2
Linear Regression, Data is a list
Hello,
I would like to perform a linear regression and the data is a list.e.g
lm(list$abc~., data=list) or lm(abc~., data=list), which would give the same
result.
The problem is I would like to call the response variable in a more general
form. What I try to achieve is sth like lm(list$(paste("a","b","c"))~.,
data=list), but it does not work.
Could anyone give me