-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME.Rmd
More file actions
86 lines (65 loc) · 2.79 KB
/
Copy pathREADME.Rmd
File metadata and controls
86 lines (65 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
# carpenter: Making Tables <img src="man/figures/logo.png" align="right" height="140/"/>
<!-- badges: start -->
[](https://github.com/lwjohnst86/carpenter/actions/workflows/R-CMD-check.yaml)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[](https://CRAN.R-project.org/package=carpenter)
<!-- badges: end -->
The main goal of carpenter to simplify making those pesky
descriptive/basic characteristic tables often used in biomedical journal
articles. It was designed to work well within the tidyverse ecosystem,
e.g. relying on using pipes to chain functions together or having
multiple, dedicated functions to use (rather than a monolithic one with
lots of arguments).
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
## Installation
This package is on CRAN, so install using:
```{r, eval=FALSE}
install.packages('carpenter')
```
For the developmental version, install from GitHub:
```{r, eval=FALSE}
# install.packages("pak")
pak::pak('lwjohnst86/carpenter')
```
## Example usage
Here is an example workflow for making tables:
```{r example}
library(carpenter)
outline_table(iris, 'Species') %>%
add_rows('Sepal.Length', stat_meanSD) %>%
add_rows('Petal.Length', stat_meanSD) %>%
add_rows('Sepal.Width', stat_medianIQR) %>%
build_table()
```
For a more detailed view of how to use carpenter, see `?carpenter` or
`vignette('carpenter')`. Or view the vignette directly
[here](https://htmlpreview.github.io/?https://github.com/lwjohnst86/carpenter/blob/master/vignettes/carpenter.html)
## Resources
There are several packages out there that help with making tables. Most
of them work to output and customize the tables into a given format, for
instance markdown or html, but assume the data is in the form you
already want to present it in. So they don't help with getting the data
into the form of a table (in the context of descriptive/basic
characteristic tables often seen in biomedical research). Even still,
they are very useful to look over and learn about!
- [`pander`](https://rapporter.github.io/pander/)
- [`pixiedust`](https://cran.r-project.org/package=pixiedust)
- [`stargazer`](https://cran.r-project.org/package=stargazer)
- [`htmlTable`](https://cran.r-project.org/package=htmlTable)
- [`tableone`](https://cran.r-project.org/package=tableone)
## Acknowledgements
[Zhila
Semnani](https://www.linkedin.com/in/zhila-semnani-azad-phd-40507150/)
made the (I think) cool logo! :D