R/e_plot_mnv_norm_qqplot.R
e_plot_mnv_norm_qqplot.Rd
Graphical Assessment (QQ-plot) for assessing Multivariate Normality
e_plot_mnv_norm_qqplot(x, name = "")
data.frame or matrix of numeric columns
label for title
invisible(NULL)
dat_mtcars_e %>%
dplyr::filter(cyl == "four") %>%
dplyr::select(mpg, hp, wt) %>%
e_plot_mnv_norm_qqplot(name = "cyl = 4")
dat_mtcars_e %>%
dplyr::filter(cyl == "six") %>%
dplyr::select(mpg, hp, wt) %>%
e_plot_mnv_norm_qqplot(name = "cyl = 6")
dat_mtcars_e %>%
dplyr::filter(cyl == "eight") %>%
dplyr::select(mpg, hp, wt) %>%
e_plot_mnv_norm_qqplot(name = "cyl = 8")