R/plot.R

Defines functions plot.cluster_analysis_summary plot.cluster_analysis plot.parameters_efa plot.parameters_pca plot.n_clusters plot.parameters_distribution plot.n_factors plot.parameters_brms_meta plot.parameters_simulate plot.compare_parameters plot.parameters_model plot.parameters_sem

#' @export
plot.parameters_sem <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.parameters_model <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.compare_parameters <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.parameters_simulate <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.parameters_brms_meta <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.n_factors <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.parameters_distribution <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.n_clusters <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.parameters_pca <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @export
plot.parameters_efa <- function(x, ...) {
  insight::check_if_installed("see")
  NextMethod()
}


#' @importFrom graphics plot
#' @export
plot.cluster_analysis <- function(x, ...) {
  insight::check_if_installed("see")
  plot(datawizard::visualisation_recipe(x, ...))
}

#' @export
plot.cluster_analysis_summary <- function(x, ...) {
  insight::check_if_installed("see")
  plot(datawizard::visualisation_recipe(x, ...))
}
easystats/parameters documentation built on April 12, 2024, 9:33 a.m.