This function returns a data.frame or a list of data.frames per grouping level. Each of the data.frames has columns variable, #NA (number of missing values) and %NA (proportion of missing values in percent).

get_missinfo(object)

Arguments

object

object inheriting from class JointAI

Examples

mod <-  lm_imp(y ~ C1 + B2 + C2, data = wideDF, n.iter = 100)
get_missinfo(mod)
#> $complete_cases
#>         #  %
#> lvlone 77 77
#> 
#> $miss_list
#> $miss_list$lvlone
#>    # NA % NA
#> y     0    0
#> C1    0    0
#> C2    4    4
#> B2   20   20
#> 
#>