Releases: dbosak01/fmtr
Releases · dbosak01/fmtr
fmtr v1.6.5
fmtr v1.6.4
- Allow single item vector lookup.
- Added
read.flist()
andwrite.flist()
functions. - Fixed note on
fapply()
of flist object. - Fixed minor issues with
as.fcat()
. - Added "Factor" column to UDF data frame conversion. Will allow user to set
"as.factor" property from a data frame.
fmtr v1.6.3
- Improved documentation and examples.
fmtr v1.6.2
- Added "as.factor" parameter to
value()
function to convert results to a factor.
fmtr v1.5.9
- Changed default separator on
fapply2()
to a blank space. This seems
like a more useful default. - Allowed label on user-defined format to be a string format. This means
a string format can be executed conditionally. - Added "type" parameter to
fmt_quantile_range()
function so user can
specify the type of quantile algorithm to use. - Added output logging.
- Updated logo.
fmtr v1.5.8
- BREAKING CHANGE: Removed the
labels.data.frame()
function
from this package,
as it has now been moved to the common package. A dependency has been
added to fmtr so that the common package will be loaded automatically,
and thelabels.data.frame()
function will be available automatically.
However, if you use fully qualified function calls in your programs,
such asfmtr::labels()
, these calls will be broken, and will have to be
changed tocommon::labels()
. - Fixed bug on
fapply()
that was causing it to pick up and apply
haven format attributes. - Added
fapply2()
function to format and combine two variables. - Added
na
andzero
parameters tofmt_cnt_pct()
to apply specified string
in cases where the count is NA or zero.
fmtr v1.5.7
- Fixed
fapply()
so that NA values in data are returned as NA instead of a string "NA".
fmtr v1.5.5
- Fixed bug in
as.fmt.data.frame()
that was converting all label and order
values to character. Now it will return the stored data type. - Added sd_format parameter to the
fmt_mean_sd()
function to format the
standard deviation separately if desired. - Documentation fixes/updates.
fmtr 1.5.4
- Added FAQ and Complete Example to vignettes.
- Took out errors on convenience functions if data frame does not have a variable
specified on the incoming list. Now this situation is ignored, and no error
is generated. The error was removed to allow the list to contain more
formats/labels/etc. than exist on the data frame, but still assign the matching
items.
fmtr v1.5.3
- Added covr and codecov.
- Allow assignment of NULL to convenience functions to clear attributes.
- Update examples and documentation for convenience functions.