the multivariate regression model in R platform is like:
lm(a~b+c, data=sampleset)
where a is dependent variable and b, c are independent variable,
if I want o deploy another variable, say d, in the model as control variable. what would be the syntax? (would I simply add another variable d in the above mentioned model?)