mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
26 lines
715 B
R
26 lines
715 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/visual_summary.R
|
|
\name{missings_apex_plot}
|
|
\alias{missings_apex_plot}
|
|
\title{Plot missings and class with apexcharter}
|
|
\usage{
|
|
missings_apex_plot(data, animation = FALSE, ...)
|
|
}
|
|
\arguments{
|
|
\item{data}{data frame}
|
|
}
|
|
\value{
|
|
An \code{\link[=apexchart]{apexchart()}} \code{htmlwidget} object.
|
|
}
|
|
\description{
|
|
Plot missings and class with apexcharter
|
|
}
|
|
\examples{
|
|
data_demo <- mtcars
|
|
data_demo[2:4, "cyl"] <- NA
|
|
rbind(data_demo, data_demo, data_demo, data_demo) |> missings_apex_plot()
|
|
data_demo |> missings_apex_plot()
|
|
mtcars |> missings_apex_plot(animation = TRUE)
|
|
# dplyr::storms |> missings_apex_plot()
|
|
visdat::vis_dat(dplyr::storms)
|
|
}
|