Releases: Nelson-Gon/mde
Release list
mde 0.3.2
mde 0.3.2
-
There is now a function
recode_as_valuefor general recoding. See
#41. -
Fixed
all_ofwarnings indplyrselectandacrossverbs. -
Tests now use edition 3 of testthat. See r-lib/testthat#1471 and Nelson-Gon/manymodelr#22
-
Vignettes no longer include URLs to avoid future issues with broken links on CRAN.
-
Exclusion or inclusion in
na_summaryvia regular expressions is now possible viaregex_kindand providing apattern_typeandpattern. -
exclusionis now done entirely inbaseR instead of usingdplyr::select. -
get_na_meansandpercent_missingnow supportPOSIXct. -
na_countsandpercent_naare new vector focused functions to allowgettingna_countsand percent missingness for objects of classes likePOSIXct. -
include a new argument to reset rownames in
na_summary. Fixes
#33.
mde 0.3.1
-
Fixed a bug that made
exclude_colsresult in non-exclusion in groupedna.summaryoutputs. -
na_summarynow includes around_toparameter to control the number of digits to round to. Defaults tooptions("digits")in the user's settings. -
drop_na_atno longer uses atibbleto avoid warnings withtibblerow.names. -
Tests in
dict_recodewere extended to ensure that we get what is expected particularly with respect to theuse_funcargument. -
dict_recodenow supports the use of differentNArecoding functions. These
can be provided via the argumentuse_func. -
dict_recodeis a new function to allow recoding with a pattern-values pair. -
drop_na_ifnow supports keep certain columns when grouping. It also now
supports dropping only at certain columns. -
drop_na_ifnow supports dropping groups that meet a set missing data
threshold. -
recode_as_na_strupdated to convert factors to character.
mde 0.3.0
-
drop_row_ifarguments were changed. See docs for the new arguments. This was
done to allow new functionality that enables dropping rows based on counts. -
Sorting strings in
na_summarycontained a minor bug that has now been fixed. -
recode_as_na_stris a new function torecode_as_nabased on string matching. -
recode_as_na_ifis a new function that allows deliberate addition ofNAs to a column if it meets a pre-defined condition. This is essentially the reverse ofdrop_na_if. -
drop_row_ifis a new function similar todrop_na_ifbut for rows instead of columns. -
percent_missingcan now work independently for factors, characters, or numeric data. It previously was limited todata.frameobjects. -
Fixed issues with
drop_na_atthat resulted in failing data rebinding. -
get_na_countsnow includes an optionalexclude_colsargument to exclude columns from the analysis. -
na_summaryhas been fixed to allow exclusion of columns from the analysis. -
all_nais a new low level function to perform missingness boolean checks for columns(vectors). -
Added a new function
column_based_recoodethat aims to allowNArecoding based on other columns.
mde 0.2.1
-
Patch Fix to skip tests on old R releases.
-
Only R versions above 3.6.3 are supported.
mde version 0.2.0
Additions
-
na_summarywhich provides a very quick overview of missingness. It also supports grouped summaries. -
drop_na_ifallows easy dropping of columns where all values are missing. -
custom_na_recodeallows replacing missing values with common values such as mean, min, max, sd.
Major changes
-
In
percent_missing, the argumentgroupedwas dropped in favour of simply providing agrouping_colsvector. -
In
recode_as_na,subset_dfwas dropped. It now simply accepts an optionalsubset_colsargument. The argumenttidywas also dropped.One can simply provide an optionalpattern_typeandpattern. -
Similar changes were made for
recode_na_asas above. -
The argument
xwas changed todfindrop_na_at.
mde version 0.1.0
Available functions
-
get_na_counts -
percent_missing -
recode_as_na -
sort_by_missingness -
recode_na_as -
drop_na_if -
recode_na_if -
drop_na_at -
recode_as_na_for
Key changes
-
Now supports tidy selection and exploration at specific columns
-
percent_missingsupports grouping and exclusion of certain columns. The use of decimals was dropped. -
drop_na_ifallows exclusion of columns.
mde 0.3.1 release notes
mde 0.3.1
-
Fixed a bug that made
exclude_colsresult in non-exclusion in groupedna.summaryoutputs. -
na_summarynow includes around_toparameter to control the number of digits to round to. Defaults tooptions("digits")in the user's settings. -
drop_na_atno longer uses atibbleto avoid warnings withtibblerow.names. -
Tests in
dict_recodewere extended to ensure that we get what is expected particularly with respect to theuse_funcargument. -
dict_recodenow supports the use of differentNArecoding functions. These
can be provided via the argumentuse_func. -
dict_recodeis a new function to allow recoding with a pattern-values pair. -
drop_na_ifnow supports keep certain columns when grouping. It also now
supports dropping only at certain columns. -
drop_na_ifnow supports dropping groups that meet a set missing data
threshold. -
recode_as_na_strupdated to convert factors to character.
mde 0.3.0
-
drop_row_ifarguments were changed. See docs for the new arguments. This was
done to allow new functionality that enables dropping rows based on counts. -
Sorting strings in
na_summarycontained a minor bug that has now been fixed. -
recode_as_na_stris a new function torecode_as_nabased on string matching. -
recode_as_na_ifis a new function that allows deliberate addition ofNAs to a column if it meets a pre-defined condition. This is essentially the reverse ofdrop_na_if. -
drop_row_ifis a new function similar todrop_na_ifbut for rows instead of columns. -
percent_missingcan now work independently for factors, characters, or numeric data. It previously was limited todata.frameobjects. -
Fixed issues with
drop_na_atthat resulted in failing data rebinding. -
get_na_countsnow includes an optionalexclude_colsargument to exclude columns from the analysis. -
na_summaryhas been fixed to allow exclusion of columns from the analysis. -
all_nais a new low level function to perform missingness boolean checks for columns(vectors). -
Added a new function
column_based_recoodethat aims to allowNArecoding based on other columns.
mde 0.2.1
-
Patch Fix to skip tests on old R releases.
-
Only R versions above 3.6.3 are supported.
mde version 0.2.0
Additions
-
na_summarywhich provides a very quick overview of missingness. It also supports grouped summaries. -
drop_na_ifallows easy dropping of columns where all values are missing. -
custom_na_recodeallows replacing missing values with common values such as mean, min, max, sd.
Major changes
-
In
percent_missing, the argumentgroupedwas dropped in favour of simply providing agrouping_colsvector. -
In
recode_as_na,subset_dfwas dropped. It now simply accepts an optionalsubset_colsargument. The argumenttidywas also dropped.One can simply provide an optionalpattern_typeandpattern. -
Similar changes were made for
recode_na_asas above. -
The argument
xwas changed todfindrop_na_at.
mde version 0.1.0
Available functions
-
get_na_counts -
percent_missing -
recode_as_na -
sort_by_missingness -
recode_na_as -
drop_na_if -
recode_na_if -
drop_na_at -
recode_as_na_for
Key changes
-
Now supports tidy selection and exploration at specific columns
-
percent_missingsupports grouping and exclusion of certain columns. The use of decimals was dropped. -
drop_na_ifallows exclusion of columns.
mde 0.3.0
title: 'Missing Data Explorer'
author: "Nelson Gonzabato"
date: "r Sys.Date()"
output: html_document
mde 0.3.0
-
drop_row_ifarguments were changed. See docs for the new arguments. This was
done to allow new functionality that enables dropping rows based on counts. -
Sorting strings in
na_summarycontained a minor bug that has now been fixed. -
recode_as_na_stris a new function torecode_as_nabased on string matching. -
recode_as_na_ifis a new function that allows deliberate addition ofNAs to a column if it meets a pre-defined condition. This is essentially the reverse ofdrop_na_if. -
drop_row_ifis a new function similar todrop_na_ifbut for rows instead of columns. -
percent_missingcan now work independently for factors, characters, or numeric data. It previously was limited todata.frameobjects. -
Fixed issues with
drop_na_atthat resulted in failing data rebinding. -
get_na_countsnow includes an optionalexclude_colsargument to exclude columns from the analysis. -
na_summaryhas been fixed to allow exclusion of columns from the analysis. -
all_nais a new low level function to perform missingness boolean checks for columns(vectors). -
Added a new function
column_based_recoodethat aims to allowNArecoding based on other columns.
mde 0.2.1
-
Patch Fix to skip tests on old R releases.
-
Only R versions above 3.6.3 are supported.
mde version 0.2.0
Additions
-
na_summarywhich provides a very quick overview of missingness. It also supports grouped summaries. -
drop_na_ifallows easy dropping of columns where all values are missing. -
custom_na_recodeallows replacing missing values with common values such as mean, min, max, sd.
Major changes
-
In
percent_missing, the argumentgroupedwas dropped in favour of simply providing agrouping_colsvector. -
In
recode_as_na,subset_dfwas dropped. It now simply accepts an optionalsubset_colsargument. The argumenttidywas also dropped.One can simply provide an optionalpattern_typeandpattern. -
Similar changes were made for
recode_na_asas above. -
The argument
xwas changed todfindrop_na_at.
mde version 0.1.0
Available functions
-
get_na_counts -
percent_missing -
recode_as_na -
sort_by_missingness -
recode_na_as -
drop_na_if -
recode_na_if -
drop_na_at -
recode_as_na_for
Key changes
-
Now supports tidy selection and exploration at specific columns
-
percent_missingsupports grouping and exclusion of certain columns. The use of decimals was dropped. -
drop_na_ifallows exclusion of columns.
Patch Release
mde 0.2.1
-
Patch Fix to skip tests on old R releases.
-
Only R versions above 3.6.3 are supported.
mde version 0.2.0
Additions
-
na_summarywhich provides a very quick overview of missingness. It also supports grouped summaries. -
drop_na_ifallows easy dropping of columns where all values are missing. -
custom_na_recodeallows replacing missing values with common values such as mean, min, max, sd.
Major changes
-
In
percent_missing, the argumentgroupedwas dropped in favour of simply providing agrouping_colsvector. -
In
recode_as_na,subset_dfwas dropped. It now simply accepts an optionalsubset_colsargument. The argumenttidywas also dropped.One can simply provide an optionalpattern_typeandpattern. -
Similar changes were made for
recode_na_asas above. -
The argument
xwas changed todfindrop_na_at.
mde version 0.1.0
Available functions
-
get_na_counts -
percent_missing -
recode_as_na -
sort_by_missingness -
recode_na_as -
drop_na_if -
recode_na_if -
drop_na_at -
recode_as_na_for
Key changes
-
Now supports tidy selection and exploration at specific columns
-
percent_missingsupports grouping and exclusion of certain columns. The use of decimals was dropped. -
drop_na_ifallows exclusion of columns.
Missing Data Explorer: Further Easing Missingness Exploration
mde version 0.2.0
Additions
-
na_summarywhich provides a very quick overview of missingness. It also supports grouped summaries. -
drop_na_ifallows easy dropping of columns where all values are missing. -
custom_na_recodeallows replacing missing values with common values such as mean, min, max, sd.
Major changes
-
In
percent_missing, the argumentgroupedwas dropped in favour of simply providing agrouping_colsvector. -
In
recode_as_na,subset_dfwas dropped. It now simply accepts an optionalsubset_colsargument. The argumenttidywas also dropped.One can simply provide an optionalpattern_typeandpattern. -
Similar changes were made for
recode_na_asas above. -
The argument
xwas changed todfindrop_na_at.
Introducing Missing Data Explorer
This is the initial stable release of mde, the missing data exploration and manipulation package.
Please see a list of available functions in the NEWS.md file.
The README also provides a detailed look at each function listed above.