Skip to content

Releases: dbosak01/fmtr

fmtr v1.6.5

14 Jun 16:07
Compare
Choose a tag to compare
  • Add %q and %Q format codes for quarters. Do not exist in Base R.

fmtr v1.6.4

10 May 04:49
Compare
Choose a tag to compare
  • Allow single item vector lookup.
  • Added read.flist() and write.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

10 Jan 17:35
Compare
Choose a tag to compare
  • Improved documentation and examples.

fmtr v1.6.2

10 Nov 13:32
Compare
Choose a tag to compare
  • Added "as.factor" parameter to value() function to convert results to a factor.

fmtr v1.5.9

08 Sep 11:27
Compare
Choose a tag to compare
  • 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

08 Aug 12:25
Compare
Choose a tag to compare
  • 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 the labels.data.frame() function will be available automatically.
    However, if you use fully qualified function calls in your programs,
    such as fmtr::labels(), these calls will be broken, and will have to be
    changed to common::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 and zero parameters to fmt_cnt_pct() to apply specified string
    in cases where the count is NA or zero.

fmtr v1.5.7

01 Jul 19:05
Compare
Choose a tag to compare
  • Fixed fapply() so that NA values in data are returned as NA instead of a string "NA".

fmtr v1.5.5

14 Jan 11:50
Compare
Choose a tag to compare
  • 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

24 Nov 04:19
Compare
Choose a tag to compare
  • 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

10 Oct 13:59
Compare
Choose a tag to compare
  • Added covr and codecov.
  • Allow assignment of NULL to convenience functions to clear attributes.
  • Update examples and documentation for convenience functions.