R/1.8.catCoefficientsTable.R

Defines functions catCoefficientsTable

catCoefficientsTable <- function(coefficientsTable, fit) {
  cat("\n\nCoefficients:")
  print(knitr::kable(coefficientsTable, format = "simple"))
  cat("---\nSignif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1\n\n")
  cat(paste("Number of individuals:", fit$info$N, "\nNumber of waves:", fit$info$T, "\n\n"))

  return(NULL)
}

Try the Mmcsd package in your browser

Any scripts or data that you put into this service are public.

Mmcsd documentation built on March 31, 2023, 7:23 p.m.