get_expected_columns_for_MVG <- function() c("category", "mu", "Sigma")
#' Is this a set of multivariate Gaussian (MVG) categories?
#'
#' Check whether \code{x} is a set of multivariate Gaussian (MVG) categories.
#'
#' @param x Object to be checked.
#' @param group Name of one or more group variables, each unique combination of which describes an MVG. (default: NULL)
#' @param category Name of the category variable. (default: "category")
#' @param is.long Is this check assessing whether the ideal observer is in long format (`TRUE`) or wide format (`FALSE`)?
#' (default: `TRUE`)
#'
#' @return A logical.
#'
#' @seealso TBD
#' @keywords TBD
#' @export
is.MVG <- function(x, group = NULL, category = "category", is.long = T, verbose = F) {
name_of_x <- deparse(substitute(x))
assert_that(is.flag(is.long))
if (!is_tibble(x)) {
if (verbose) message("Object is not a tibble.")
return(FALSE)
}
if (!is.null(group)) {
if (verbose) message("Checking whether ", name_of_x, " is an MVG within each unique combination of group values.")
x %<>% group_by(!!! syms(group))
}
if (any(!is.long, all(!is_tibble(x), !is.data.frame(x)))) {
if (verbose) message("Currently only MVGs in long format can be recognized.")
return(FALSE)
}
# REMOVED until a better solution is found for category handling since this does lead to problems when working with data frames
# that use a different category name.
# if (category %nin% names(x)) {
# if (verbose) message("x is missing a category column. Did you use another name for this column? You can use the category
# argument to specify the name of that column.")
# return(FALSE)
# }
if (any(get_expected_columns_for_MVG() %nin% names(x))) {
if (verbose) message(paste("x is missing a required column: ", paste(get_expected_columns_for_exemplars, collapse = ",")))
return(FALSE)
}
# Check that category is a factor only after everything else is checked.
if (any(!is.factor(get(category, x)))) return(FALSE)
# Check that mu and Sigma contain the cue names and that those cue names match.
names_mu = names(x$mu[[1]])
names_Sigma = dimnames(x$Sigma[[1]])
if (!all(
names_Sigma[[1]] == names_Sigma[[2]],
names_Sigma[[1]] == names_mu)) {
if (verbose) message("Names of cue dimensions do not match between mu and Sigma.")
return(FALSE)
}
return(TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.