njtierney / naniar

Tidy data structures, summaries, and visualisations for missing data
http://naniar.njtierney.com/
Other
650 stars 54 forks source link

Drops the "nabular" and "shadow" classes. Resolves #268 #269

Closed njtierney closed 4 years ago

njtierney commented 4 years ago

Description

Removes nabular and shadow classes

Related Issue

268

Example

Previously:

class(naniar::nabular(airquality))
#> [1] "nabular"    "tbl_df"     "tbl"        "data.frame"

Now:

class(naniar::nabular(airquality))
#> [1] "tbl_df"     "tbl"        "data.frame"
class(naniar::as_shadow(airquality))
#> [1] "tbl_df"     "tbl"        "data.frame"

Created on 2020-08-27 by the reprex package (v0.3.0)

Tests

Tests were updated

NEWS + DESCRIPTION

Yes, bumped NEWS and Description