-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Dan Chaltiel edited this page Apr 10, 2020
·
5 revisions
Crosstable is a package centered on a single function, crosstable
, which easily computes descriptive statistics on datasets.
Before starting this wiki, if you are not familiar with dplyr
and pipes (%>%
, Ctrl+Shift+M in RStudio), I warmly recommend you to read Julien Barnier's tidyverse tutorial. Nevertheless, this should still be understandable, since crosstable
is perfectly usable with base R
.
This wiki will reproduce the vignettes:
-
Basic features (
vignette("crosstable")
) -
Column selection (
vignette("crosstable-selection")
) -
Reporting (
vignette("crosstable-report")
)
crosstable
is a rewrite of the awesome biostat2
package written by David Hajage. The user interface is quite different but the concept is the same.
Thanks David!