So I have this regression model
reg <-lm(NominalVar~Var1+Var2)
summary(reg)
What I get with summary is at test the t-test (estimate/std.error) and resulting p value for each variable. Is there a way to do t-test with unequal variances (Welch's test), instead of a regular two samples t-test? In my case Var2 is a control variable, so I want a Welch's t-test after controlling for a variable.