ropensci / visdat

Preliminary Exploratory Visualisation of Data
https://docs.ropensci.org/visdat/
Other
450 stars 47 forks source link

column names don't align when show_perc_col = FALSE #82

Closed njtierney closed 6 years ago

njtierney commented 6 years ago

The default option is to show the percent column:

library(visdat)
library(naniar)

vis_miss(oceanbuoys, show_perc_col = TRUE)

However, when you turn this off, the column names do not align properly

vis_miss(oceanbuoys, show_perc_col = FALSE)

Created on 2018-05-23 by the reprex package (v0.2.0).

njtierney commented 6 years ago

For full clarity:

library(visdat)
library(naniar)

vis_miss(oceanbuoys, show_perc_col = TRUE)

vis_miss(oceanbuoys, show_perc_col = FALSE)

Created on 2018-05-23 by the reprex package (v0.2.0).