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.
Maxime Wack 56ba3a80b0 Add pkgdown 2 years ago
R Update documentation 2 years ago
man Update documentation 2 years ago
vignettes New vignette 2 years ago
.Rbuildignore Add pkgdown 2 years ago
.gitignore Add pkgdown 2 years ago
.travis.yml Removed code coverage (no tests in this release) 5 years ago
CRAN-RELEASE CRAN release 4 years ago
DESCRIPTION Add output functions 2 years ago
LICENSE Added GPL-3 license 7 years ago
NAMESPACE Update documentation 2 years ago
NEWS Version 0.2.0 2 years ago
README.Rmd New README 2 years ago
README.md New README 2 years ago
_pkgdown.yml Add pkgdown 2 years ago
codecov.yml Added code coverage 7 years ago
cran-comments.md Updated cran-comments 7 years ago
index.Rmd Add pkgdown 2 years ago
index.md Add pkgdown 2 years ago

README.md

Desctable

Travis-CI BuildStatus CRAN_Status_Badge CRAN RStudio mirrordownloads

Warning to existing users
This version introduces a new API that should make the creation of tables more flexible.
The old API is still present but in a deprecated mode.
See the roadmap below, and the website for the new usage.
Suggestions about this change are welcome !

Introduction

Desctable aims to be a simple and expressive interface to building statistical tables in R.

See desctable.github.io for usage ond documentation.

Installation

Install from CRAN (0.1.9) with

install.packages("desctable")

or install the development version (0.3) from github with

devtools::install_github("desctable/desctable")

Roadmap

0.3

This new version introduces a new internal representation as well as an entirely new API for desctable !
The original desctable function and usage remains until 1.0, but begins deprecation.

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.

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.

Next

  • Add a desc_output for {gt}
  • Implement a way to make tables for survival analysis.
  • Implement a way to make tables for multivariate models.
  • Allow univariate tests for simple tables
  • add a column for totals in grouped tables