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.Rmd 2.2KB

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