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.

README.md 2.0KB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Desctable
  2. ================
  3. [![Travis-CI Build
  4. Status](https://travis-ci.org/desctable/desctable.svg?branch=master)](https://travis-ci.org/desctable/desctable)
  5. [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/desctable)](https://cran.r-project.org/package=desctable)
  6. [![CRAN RStudio mirror
  7. downloads](http://cranlogs.r-pkg.org/badges/desctable)](https://www.r-pkg.org:443/pkg/desctable)
  8. [![CRAN RStudio mirror total
  9. downloads](http://cranlogs.r-pkg.org/badges/grand-total/desctable)](https://www.r-pkg.org:443/pkg/desctable)
  10. **Warning to existing users**
  11. *This version introduces a new API that should make the creation of
  12. tables more flexible.
  13. The old API is still present but in a deprecated mode.
  14. See the roadmap below, and the website for the new usage.
  15. Suggestions about this change are welcome !*
  16. # Introduction
  17. Desctable aims to be a simple and expressive interface to building
  18. statistical tables in R.
  19. See [desctable.github.io](https://desctable.github.io) for usage ond
  20. documentation.
  21. # Installation
  22. Install from CRAN (0.1.9) with
  23. install.packages("desctable")
  24. or install the development version (0.3) from github with
  25. devtools::install_github("desctable/desctable")
  26. # Roadmap
  27. ## 0.3
  28. This new version introduces a new internal representation as well as an
  29. entirely new API for desctable !
  30. The original `desctable` function and usage remains until 1.0, but
  31. begins deprecation.
  32. This new API is more flexible and more simple at the same time. Combine
  33. `group_by`, `desc_table`, `desc_tests`, and `desc_output` to create
  34. descriptive and comparative statistics tables and output them to various
  35. formats.
  36. The internal representation is now a simple dataframe in the simple
  37. descriptive case, and a nested dataframe with list-columns for
  38. comparative tables, allowing easier manipulation by the user.
  39. ## Next
  40. - Add a `desc_output` for {gt}
  41. - Implement a way to make tables for survival analysis.
  42. - Implement a way to make tables for multivariate models.
  43. - Allow univariate tests for simple tables
  44. - add a column for totals in grouped tables