Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/desctable/desctable
An R package to produce descriptive and comparative tables
https://github.com/desctable/desctable
markdown r statistics tidyverse
Last synced: 8 days ago
JSON representation
An R package to produce descriptive and comparative tables
- Host: GitHub
- URL: https://github.com/desctable/desctable
- Owner: desctable
- License: gpl-3.0
- Created: 2016-05-06T12:46:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-24T16:37:01.000Z (over 2 years ago)
- Last Synced: 2024-08-13T07:15:37.821Z (4 months ago)
- Topics: markdown, r, statistics, tidyverse
- Language: R
- Homepage: http://desctable.github.io
- Size: 645 KB
- Stars: 52
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - desctable/desctable - An R package to produce descriptive and comparative tables (R)
README
---
title: "Desctable"
output: github_document
---```{r, echo = F, message = F, warning = F}
knitr::opts_chunk$set(message = F, warning = F)
```[![Travis-CI Build Status](https://travis-ci.org/desctable/desctable.svg?branch=master)](https://travis-ci.org/desctable/desctable)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/desctable)](https://cran.r-project.org/package=desctable)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/desctable)](https://www.r-pkg.org:443/pkg/desctable)
[![CRAN RStudio mirror total downloads](http://cranlogs.r-pkg.org/badges/grand-total/desctable)](https://www.r-pkg.org:443/pkg/desctable)**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](https://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