I have figured out how to make a table in R
with 4 variables, which I am using for multiple linear regressions. The dependent variable (Lung
) for each regression is taken from one column of a csv table of 22,000 columns. One of the independent variables (Blood
) is taken from a corresponding column of a similar table.
Each column represents the levels of a particular gene, which is why there are so many of them. There are also two additional variables (Age
and Gender
of each patient). When I enter in the linear regression equation, I use lm(Lung[,1] ~ Blood[,1] + Age + Gender)
, which works for one gene.
I am looking for a way to input this equation and have R calculate all of the remaining columns for Lung
and Blood
, and hopefully output the coefficients into a table.
Any help would be appreciated!