mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
new missings module and function for plotting
This commit is contained in:
parent
879a4f45dd
commit
ab99483772
3 changed files with 185 additions and 19 deletions
|
|
@ -8,7 +8,7 @@
|
|||
\usage{
|
||||
data_missings_ui(id)
|
||||
|
||||
data_missings_server(id, data, ...)
|
||||
data_missings_server(id, data, variable, ...)
|
||||
}
|
||||
\arguments{
|
||||
\item{id}{Module id}
|
||||
|
|
|
|||
26
man/missings_apex_plot.Rd
Normal file
26
man/missings_apex_plot.Rd
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
% 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue