DrMattG / InterEco

InterEco workshop repository
GNU General Public License v3.0
5 stars 1 forks source link

Find a nice way to output a summary of the model object #2

Closed DrMattG closed 2 years ago

DrMattG commented 2 years ago

Using jtools::summ() gives a summary of the object but it renders in an ugly way - maybe we need a function to tidy the output in to html and then render it?

Becks-Spake commented 2 years ago

Think we might just need to extract the important parts of the output and shove them into a data frame? e.g., coefdat <- jtools::summ(bestmod) coefdat <- round(data.frame(dat$coeftable),3) renderTable(output$coefdat) ?

DrMattG commented 2 years ago

Like this? https://github.com/DrMattG/InterEco/pull/4