powered by
Write coefficient table for linear and logistic regression
write.coeff(object, file = "", sort = FALSE, intercept = TRUE)
A fitted model object of class regress or logistic
A character string naming a file. "" indicates output to the console
Sort table by variable importance
Include the intercept in the output (TRUE or FALSE). TRUE is the default
Write coefficients and importance scores to csv or or return as a data.frame
# NOT RUN { regress(diamonds, rvar = "price", evar = c("carat", "clarity", "x"), check = "standardize") %>% write.coeff(sort = TRUE) %>% format_df(dec = 3) # }
Run the code above in your browser using DataLab