1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#' @export
ci.BBmm <- ci.default
#' @export
ci.BBreg <- ci.default
#' @export
standard_error.BBmm <- function(model, ...) {
.data_frame(
Parameter = insight::find_parameters(model,
effects = "fixed",
component = "conditional",
flatten = TRUE
),
SE = as.data.frame(summary(model)$fixed.coefficients)$StdErr
)
}
#' @export
standard_error.BBreg <- function(model, ...) {
.data_frame(
Parameter = insight::find_parameters(model,
effects = "fixed",
component = "conditional",
flatten = TRUE
),
SE = as.data.frame(summary(model)$coefficients)$StdErr
)
}
## TODO add ci_method later?
## TODO BBmm only has p based on normal distribution assumptions?
#' @export
p_value.BBmm <- function(model, ...) {
.data_frame(
Parameter = insight::find_parameters(model,
effects = "fixed",
component = "conditional",
flatten = TRUE
),
p = as.data.frame(summary(model)$fixed.coefficients)$p.value
)
}
## TODO add ci_method later?
## TODO BBreg only has p based on normal distribution assumptions?
#' @export
p_value.BBreg <- function(model, ...) {
.data_frame(
Parameter = insight::find_parameters(model,
effects = "fixed",
component = "conditional",
flatten = TRUE
),
p = as.data.frame(summary(model)$coefficients)$p.value
)
}
|