R/helper_parameter_updates.R

Defines functions update_Z.mstcar update_Z.mcar update_Z.car update_Z update_tau2.mstcar update_tau2.rcar update_tau2.default update_tau2 update_sig2.rcar update_sig2.default update_sig2 update_G.mstcar update_G.default update_G update_beta.rcar update_beta.default update_beta

update_beta <- function(RSTr_obj) {
  UseMethod("update_beta")
}

#' @export
update_beta.default <- function(RSTr_obj) {
  update_beta_default(RSTr_obj)
}

#' @export
update_beta.rcar <- function(RSTr_obj) {
  update_beta_rcar(RSTr_obj)
}

update_G <- function(RSTr_obj) {
  UseMethod("update_G")
}

#' @export
update_G.default <- function(RSTr_obj) {
  update_G_default(RSTr_obj)
}

#' @export
update_G.mstcar <- function(RSTr_obj) {
  update_G_mstcar(RSTr_obj)
}

update_sig2 <- function(RSTr_obj) {
  UseMethod("update_sig2")
}

#' @export
update_sig2.default <- function(RSTr_obj) {
  update_sig2_default(RSTr_obj)
}

#' @export
update_sig2.rcar <- function(RSTr_obj) {
  update_sig2_rcar(RSTr_obj)
}

update_tau2 <- function(RSTr_obj) {
  UseMethod("update_tau2")
}

#' @export
update_tau2.default <- function(RSTr_obj) {
  update_tau2_default(RSTr_obj)
}

#' @export
update_tau2.rcar <- function(RSTr_obj) {
  update_tau2_rcar(RSTr_obj)
}

#' @export
update_tau2.mstcar <- function(RSTr_obj) {
  update_tau2_mstcar(RSTr_obj)
}

update_Z <- function(RSTr_obj) {
  UseMethod("update_Z")
}

#' @export
update_Z.car <- function(RSTr_obj) {
  update_Z_car(RSTr_obj)
}

#' @export
update_Z.mcar <- function(RSTr_obj) {
  update_Z_mcar(RSTr_obj)
}

#' @export
update_Z.mstcar <- function(RSTr_obj) {
  update_Z_mstcar(RSTr_obj)
}

Try the RSTr package in your browser

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

RSTr documentation built on Jan. 31, 2026, 9:07 a.m.