All Projects → kaz-yos → Tableone

kaz-yos / Tableone

R package to create "Table 1", description of baseline characteristics with or without propensity score weighting

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Tableone

Arsenal
An Arsenal of 'R' Functions for Large-Scale Statistical Summaries
Stars: ✭ 171 (+13.25%)
Mutual labels:  statistics, cran
Volume approximation
Practical volume computation and sampling in high dimensions
Stars: ✭ 75 (-50.33%)
Mutual labels:  statistics, cran
Collapse
Advanced and Fast Data Transformation in R
Stars: ✭ 184 (+21.85%)
Mutual labels:  statistics, cran
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-46.36%)
Mutual labels:  statistics, cran
Fivethirtyeight
R package of data and code behind the stories and interactives at FiveThirtyEight
Stars: ✭ 422 (+179.47%)
Mutual labels:  statistics, cran
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+921.19%)
Mutual labels:  statistics, cran
Design Of Experiment Python
Design-of-experiment (DOE) generator for science, engineering, and statistics
Stars: ✭ 143 (-5.3%)
Mutual labels:  statistics
Densenet Sdr
repo that holds code for improving on dropout using Stochastic Delta Rule
Stars: ✭ 148 (-1.99%)
Mutual labels:  statistics
Book
This book serves as an introduction to a whole new way of thinking systematically about geographic data, using geographical analysis and computation to unlock new insights hidden within data.
Stars: ✭ 141 (-6.62%)
Mutual labels:  statistics
Arules
Mining Association Rules and Frequent Itemsets with R
Stars: ✭ 139 (-7.95%)
Mutual labels:  cran
Matrixstats
R package: Methods that Apply to Rows and Columns of Matrices (and to Vectors)
Stars: ✭ 151 (+0%)
Mutual labels:  cran
Spacexstats React
SpaceXStats, with React and using the SpaceX API
Stars: ✭ 148 (-1.99%)
Mutual labels:  statistics
Css Analyzer
Analytics for CSS
Stars: ✭ 146 (-3.31%)
Mutual labels:  statistics
Pgmpy
Python Library for learning (Structure and Parameter) and inference (Probabilistic and Causal) in Bayesian Networks.
Stars: ✭ 1,942 (+1186.09%)
Mutual labels:  statistics
Contributions Importer For Github
This tool helps users to import contributions to GitHub from private git repositories, or from public repositories that are not hosted in GitHub.
Stars: ✭ 147 (-2.65%)
Mutual labels:  statistics
Criterion.rs
Statistics-driven benchmarking library for Rust
Stars: ✭ 2,153 (+1325.83%)
Mutual labels:  statistics
Pg qualstats
A PostgreSQL extension for collecting statistics about predicates, helping find what indices are missing
Stars: ✭ 150 (-0.66%)
Mutual labels:  statistics
Interactive machine learning
IPython widgets, interactive plots, interactive machine learning
Stars: ✭ 140 (-7.28%)
Mutual labels:  statistics
Pg stat monitor
PostgreSQL Statistics Collector
Stars: ✭ 145 (-3.97%)
Mutual labels:  statistics
Uncommons Maths
Random number generators, probability distributions, combinatorics and statistics for Java.
Stars: ✭ 149 (-1.32%)
Mutual labels:  statistics

tableone

Travis-CI Build Status CRAN RStudio mirror downloads

An R package to create “Table 1”, description of baseline characteristics

Creates “Table 1”, i.e., description of baseline patient characteristics, which is essential in every medical research. Supports both continuous and categorical variables, as well as p-values and standardized mean differences. Weighted data are supported via the survey package.

tableone was inspired by descriptive statistics functions in Deducer , a Java-based GUI package by Ian Fellows. This package does not require GUI or Java, and intended for command-line users.

tableone in action

screencast

The code being executed can be found in the introduction vignette.

tableone code example

In this table, continuous and categorical variables can be placed in any order. The p-valeus are from exact tests for pre-specified variables. For nonnormal variables, it shows median and IQR instead of mean and SD, and p-values are from nonparametric tests. Numerically coded categorical variables can be transformed on the fly with factorVars. SMD stands for standardized mean differences. For weighted data, first created a svydesign object, and use the svyCreateTableOne() function. Most other options remain the same.

## Load package
library(tableone)
## Load data
data(pbc, package = "survival")
# drop ID from variable list
vars <- names(pbc)[-1]
## Create Table 1 stratified by trt (can add more stratifying variables)
tableOne <- CreateTableOne(vars = vars, strata = c("trt"), data = pbc,
                            factorVars = c("status","edema","stage"))
## Specifying nonnormal variables will show the variables appropriately,
## and show nonparametric test p-values. Specify variables in the exact
## argument to obtain the exact test p-values.
print(tableOne, nonnormal = c("bili","chol","copper","alk.phos","trig"),
      exact = c("status","stage"), smd = TRUE,
      formatOptions = list(big.mark = ","))

##                          Stratified by trt
##                           1                           2                           p      test    SMD   
##   n                            158                         154                                         
##   time (mean (SD))        2,015.62 (1,094.12)         1,996.86 (1,155.93)          0.883          0.017
##   status (%)                                                                       0.884 exact    0.054
##      0                          83 (52.5)                   85 (55.2)                                  
##      1                          10 ( 6.3)                    9 ( 5.8)                                  
##      2                          65 (41.1)                   60 (39.0)                                  
##   trt (mean (SD))             1.00 (0.00)                 2.00 (0.00)             <0.001            Inf
##   age (mean (SD))            51.42 (11.01)               48.58 (9.96)              0.018          0.270
##   sex = f (%)                  137 (86.7)                  139 (90.3)              0.421          0.111
##   ascites (mean (SD))         0.09 (0.29)                 0.06 (0.25)              0.434          0.089
##   hepato (mean (SD))          0.46 (0.50)                 0.56 (0.50)              0.069          0.206
##   spiders (mean (SD))         0.28 (0.45)                 0.29 (0.46)              0.886          0.016
##   edema (%)                                                                        0.877          0.058
##      0                         132 (83.5)                  131 (85.1)                                  
##      0.5                        16 (10.1)                   13 ( 8.4)                                  
##      1                          10 ( 6.3)                   10 ( 6.5)                                  
##   bili (median [IQR])         1.40 [0.80, 3.20]           1.30 [0.72, 3.60]        0.842 nonnorm  0.171
##   chol (median [IQR])       315.50 [247.75, 417.00]     303.50 [254.25, 377.00]    0.544 nonnorm  0.038
##   albumin (mean (SD))         3.52 (0.44)                 3.52 (0.40)              0.874          0.018
##   copper (median [IQR])      73.00 [40.00, 121.00]       73.00 [43.00, 139.00]     0.717 nonnorm <0.001
##   alk.phos (median [IQR]) 1,214.50 [840.75, 2,028.00] 1,283.00 [922.50, 1,949.75]  0.812 nonnorm  0.037
##   ast (mean (SD))           120.21 (54.52)              124.97 (58.93)             0.460          0.084
##   trig (median [IQR])       106.00 [84.50, 146.00]      113.00 [84.50, 155.00]     0.370 nonnorm  0.017
##   platelet (mean (SD))      258.75 (100.32)             265.20 (90.73)             0.555          0.067
##   protime (mean (SD))        10.65 (0.85)                10.80 (1.14)              0.197          0.146
##   stage (%)                                                                        0.205 exact    0.246
##      1                          12 ( 7.6)                    4 ( 2.6)                                  
##      2                          35 (22.2)                   32 (20.8)                                  
##      3                          56 (35.4)                   64 (41.6)                                  
##      4                          55 (34.8)                   54 (35.1)

Installation

This version of tableone package for R is developmetal, and may not be available from the CRAN. You can install it using one of the following way.

Direct installation from github

You first need to install the devtools package to do the following. You can choose from the latest stable version and the latest development version.

## Install devtools (if you do not have it already)
install.packages("devtools")
## Install directly from github (develop branch)
devtools::install_github(repo = "kaz-yos/tableone", ref = "develop")

Using devtools may requires some preparation, please see the following link for information.

http://www.rstudio.com/projects/devtools/

Contributors

I would like to thank all the contributors!

Similar or complementary projects

There are multiple similar or complementary projects of interest.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].