mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 18:09:39 +02:00
27 lines
716 B
Text
27 lines
716 B
Text
|
% Generated by roxygen2: do not edit by hand
|
||
|
% Please edit documentation in R/missings-module.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)
|
||
|
}
|