Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Maxime Wack 41f6572d4a Merge branch 'dev' 2 anos atrás
R CRAN submission fixes 2 anos atrás
man CRAN submission fixes 2 anos atrás
vignettes New vignette : tips 2 anos atrás
.Rbuildignore CRAN submission fixes 2 anos atrás
.gitignore Remove submodule 2 anos atrás
.gitmodules Remove submodule 2 anos atrás
.travis.yml Removed code coverage (no tests in this release) 5 anos atrás
CRAN-RELEASE CRAN release 4 anos atrás
CRAN-SUBMISSION CRAN submission fixes 2 anos atrás
DESCRIPTION CRAN submission fixes 2 anos atrás
LICENSE Added GPL-3 license 7 anos atrás
NAMESPACE Import !!! to splice lists in desc_table 2 anos atrás
NEWS.md Rename NEWS to NEWS.md, correct style, and add news for 0.3.0 2 anos atrás
README.Rmd Update documentation, and DESCRIPTION 2 anos atrás
README.md Update documentation, and DESCRIPTION 2 anos atrás
_pkgdown.yml Add pkgdown 2 anos atrás
codecov.yml Added code coverage 6 anos atrás
cran-comments.md CRAN submission fixes 2 anos atrás
index.Rmd Update documentation, and DESCRIPTION 2 anos atrás
index.md CRAN submission fixes 2 anos atrás

README.md

Desctable

Travis-CI BuildStatus
CRAN_Status_Badge CRAN RStudio mirrordownloads CRAN RStudio mirror totaldownloads

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