I am using stargazer and I would like to use it for model type, that is not supporter yet. So I would like to put it into stargazer by hand.
My question is how to replicate stargazer by hand using simple lm
function
model = lm(hp ~ factor(gear) + qsec, data= mtcars)
stargazer::stargazer(model, type = "text")
is it possible to reproduce this output by hand? that is extract all coefficients and std. erors from model, create a dataframe and insert it to stargazer
so it would look exactlz the same?