Skip to content

Instantly share code, notes, and snippets.

View pedrohcgs's full-sized avatar

Pedro H. C. Sant'Anna pedrohcgs

View GitHub Profile
lmOut <- function(res, file="test.csv", ndigit=3, writecsv=T) {
# If summary has not been run on the model then run summary
if (length(grep("summary", class(res)))==0) res <- summary(res)
co <- res$coefficients
nvar <- nrow(co)
ncoll <- ncol(co)
f <- res$fstatistic
formatter <- function(x) format(round(x,ndigit),nsmall=ndigit)