-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See NEWS for details * Weighted data support via survey * SMD support along with vignette and ExtractSmd() * includeNA option for constructors * ShowRegTable() can use custom confint function * print.TableOne() aligns sample size
- Loading branch information
Showing
140 changed files
with
9,885 additions
and
3,509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*~ | ||
*.DS_Store | ||
*.zip | ||
*.Rhistory | ||
*.tar.gz | ||
*.Rcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Sample .travis.yml for R projects | ||
|
||
language: r | ||
warnings_are_errors: true | ||
sudo: required | ||
|
||
env: | ||
global: | ||
- CRAN: http://cran.rstudio.com | ||
|
||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: change |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,33 @@ | ||
Package: tableone | ||
Type: Package | ||
Title: Create "Table 1" to describe baseline characteristics | ||
Version: 0.6.3 | ||
Date: 2014-12-28 | ||
Title: Create "Table 1" to Describe Baseline Characteristics | ||
Version: 0.7.0 | ||
Date: 2015-08-10 | ||
Author: Kazuki Yoshida, Justin Bohn. | ||
Maintainer: Kazuki Yoshida <[email protected]> | ||
Description: This package creates "Table 1", i.e., description of baseline | ||
patient characteristics, which is essential in every medical research. This | ||
package provides functions to create such summaries for continuous and | ||
categorical variables, optionally with subgroup comparisons. The package | ||
was inspired by and based on 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. | ||
Description: 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. See github for a screencast. | ||
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. | ||
License: GPL-2 | ||
Imports: | ||
survey, | ||
MASS, | ||
e1071, | ||
zoo, | ||
gmodels | ||
Suggests: | ||
survival, | ||
testthat, | ||
Matrix, | ||
dummies, | ||
Matching, | ||
reshape2, | ||
ggplot2, | ||
knitr | ||
URL: https://github.com/kaz-yos/tableone | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,34 @@ | ||
# Generated by roxygen2 (4.1.0): do not edit by hand | ||
# Generated by roxygen2 (4.1.1): do not edit by hand | ||
|
||
S3method(print,CatTable) | ||
S3method(print,ContTable) | ||
S3method(print,TableOne) | ||
S3method(print,svyCatTable) | ||
S3method(print,svyContTable) | ||
S3method(summary,CatTable) | ||
S3method(summary,ContTable) | ||
S3method(summary,TableOne) | ||
S3method(summary,svyCatTable) | ||
S3method(summary,svyContTable) | ||
export(CreateCatTable) | ||
export(CreateContTable) | ||
export(CreateTableOne) | ||
export(ExtractSmd) | ||
export(ShowRegTable) | ||
import(e1071) | ||
import(gmodels) | ||
export(svyCreateCatTable) | ||
export(svyCreateContTable) | ||
export(svyCreateTableOne) | ||
import(survey) | ||
importFrom(stats,as.formula) | ||
importFrom(stats,chisq.test) | ||
importFrom(stats,coef) | ||
importFrom(stats,confint) | ||
importFrom(stats,fisher.test) | ||
importFrom(stats,kruskal.test) | ||
importFrom(stats,median) | ||
importFrom(stats,oneway.test) | ||
importFrom(stats,quantile) | ||
importFrom(stats,sd) | ||
importFrom(stats,var) | ||
importFrom(stats,xtabs) | ||
importFrom(utils,combn) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.