ggplot_missing: Function to plot missing map

Description Usage Arguments Examples

View source: R/ggplot_missing.R

Description

It calls an internal function basic_miss_plot that shouldn't be used outside of this. If split is TRUE then multiple graphs are produced on chunks of dataframe. This might improve visibility in large dataframes

Usage

1
ggplot_missing(x, split = F, by = 25, ...)

Arguments

x

should be a dataframe. As of now it is not being checked so use with care.

split

should the dataframe be split into smaller chunks

by

if split is TRUE we are splitting the dataframe into chunks with by number of columns

Examples

1
2
3
4
5
data("airquality")
ggplot_missing(airquality)

## splitting into 3 graphs
ggplot_missing(airquality,split = TRUE, by = 2)

ExabytE1337/Lori documentation built on Feb. 17, 2021, 1:18 a.m.