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.

53 lines
1.3KB

  1. Version 0.2.0
  2. - Add support for purrr::map-like formulas for statistical and test functions
  3. - "conditional" formulas are no longer supported. For example, replace `~ is.normal ~ mean | median` with `~ if (is.normal(.)) mean(.) else median(.)`
  4. Version 0.1.9
  5. - Fix in default options for datatable output to follow DT update
  6. - Fix pander export for R ≥ 4.0.0
  7. Version 0.1.8
  8. - Code cleanup:
  9. - use RStudio style guidelines for all code and docs
  10. - use fewer tidyverse functions internally, drop `purrr` dependancy
  11. Version 0.1.7
  12. - Vignette and README with RStudio style guidelines
  13. Version 0.1.6
  14. - Correct way to re-export `group_by` and `%>%`
  15. Version 0.1.4-5
  16. - Documentation fix for group_by import (dplyr 0.8)
  17. - Correct description for Dates
  18. Version 0.1.3
  19. - Added travis CI to repo
  20. - Added CRAN badge to repo
  21. - Corrected a typo in the README and vignette
  22. - Bugfix for when a statistical function returns a warning AND an error
  23. - Added NEWS file for future releases
  24. - Modified default and auto statistics for less automation
  25. - Added dummy column name for the variable names column, and make dplyr happy
  26. - Enabled character and mixed columns
  27. - Added CRAN mirror downloads badge to repo
  28. Version 0.1.2
  29. - Added a fix for a change in evaluation in rlang
  30. Version 0.1.1
  31. - Added a fix for changing arguments in fisher.test in upstream
  32. Version 0.1.0
  33. Initial release.