You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # desctable 0.3.0
  2. #### New features
  3. - NEW API: desctable is now `desc_table`, `desc_tests`, and `desc_output`
  4. - New internal format: desctable uses dataframes with list-columns internally instead of nested lists
  5. - New website with *pkgdown*
  6. #### Bugfix
  7. - Conditional formulas were hard-deprecated in 0.2.0, and have been soft-deprecated.
  8. # desctable 0.2.0
  9. #### New features
  10. - Add support for `purrr::map`-like formulas for statistical and test functions
  11. - Conditional formulas will be deprecated in 1.0. For example, replace `is.normal ~ mean | median` with `~ if (is.normal(.)) mean(.) else median(.)`
  12. # desctable 0.1.9
  13. #### Bugfixes
  14. - Fix in default options for datatable output following DT update
  15. - Fix pander export for R ≥ 4.0.0
  16. # desctable 0.1.8
  17. #### Code cleanup
  18. - Use RStudio style guidelines for all code and docs
  19. - Use fewer tidyverse functions internally, drop `purrr` dependancy
  20. # desctable 0.1.7
  21. #### Code cleanup
  22. - Correct vignette and README with RStudio style guidelines
  23. # desctable 0.1.6
  24. #### Bugfixes
  25. - Correct way to re-export `group_by` and `%>%`
  26. # desctable 0.1.4-5
  27. #### Bugfixes
  28. - Documentation fix for group_by import (dplyr 0.8)
  29. - Correct description for Dates
  30. # desctable 0.1.3
  31. #### CRAN publication update
  32. - Add travis CI to repo
  33. - Add CRAN badge to repo
  34. - Correct a typo in the README and vignette
  35. - Bugfix for when a statistical function returns a warning AND an error
  36. - Add NEWS file for future releases
  37. - Modify default and auto statistics for less automation
  38. - Add dummy column name for the variable names column, and make dplyr happy
  39. - Enable character and mixed columns
  40. - Add CRAN mirror downloads badge to repo
  41. # desctable 0.1.2
  42. #### Bugfix
  43. - Fix for a change in evaluation in rlang
  44. # desctable 0.1.1
  45. #### Bugfix
  46. - Fix for changing arguments in fisher.test in upstream
  47. # desctable 0.1.0
  48. - Initial release.