I'm trying to understand how the regression coefficients are generated in the lm.fit function. The only place that math could be done is this line.
143 z <- .Call(C_Cdqrls, x, y, tol, FALSE)
How do I look at the code being called by .Call? Thanks in advance!