R/2.11.getThetaTable.R

Defines functions getThetaTable

getThetaTable <- function(fitTheta) {
  thetaTable <- tibble::tibble(
    "  " = fitTheta$sigmaThetaExpr$paramsNames,
    "Estimate" = round(fitTheta$optim$par, 4),
    "Std. Error" = round(sqrt(diag(fitTheta$covTheta)), 4)
  )

  return(thetaTable)
}

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.