summarytools provides tools to neatly and quickly summarize data. It can also make R a little easier to learn and use, especially for data cleaning and preliminary analysis. Four functions are at the core of the package:
freq()
: frequency tables with proportions, cumulative proportions and missing data informationctable()
: cross-tabulations between two factors or any discrete data, with total, rows or columns proportions, as well as marginal totalsdescr()
: descriptive (univariate) statistics for numerical datadfSummary()
: Extensive data frame summaries that facilitate data cleaning and firsthand evaluationAn emphasis has been put on both what and how results are presented, so that the package can serve both as an exploration and reporting tool, used on its own for minimal reports, or with other sets of tools such as rmarkdown, and knitr.
Building on the strengths of pander and htmltools, the outputs produced by summarytools can be:
It is also possible to include summarytools functions in Shiny apps.
Version 0.9 brought many changes and improvements to summarytools. A summary of those changes can be found near the end of this vignette. Changes specific to the latest release can be found in the package’s NEWS file located in the summarytools directory inside your R library’s, and also available using news(package = "summarytools")
in R versions 3.6.0 and above.
Since this vignette was created using Rmarkdown, we’ve set some global options that are appropriate for this format and which avoid redundancy in the code. Here’s what the setup chunk looks like (further explanations will be given below):
# ```{r setup, include=FALSE}
# library(knitr)
# opts_chunk$set(results = 'asis', # This is essential (can also be set at the chunk-level)
# comment = NA,
# prompt = FALSE,
# cache = FALSE)
#
# library(summarytools)
# st_options(plain.ascii = FALSE, # This is very handy in all Rmd documents
# style = "rmarkdown" # This too
# footnote = NA, # Avoids footnotes which would clutter the results
# subtitle.emphasis = FALSE # This is a setting to experiment with - according to
# ) # the theme used, it might improve the headings'
# # layout
# ```
# ```{r, echo=FALSE}
# st_css() # This is a must; without it, expect odd layout,
# ``` # especially with dfSummary()
The freq()
function generates a table of frequencies with counts and proportions.
iris$Species
Type: Factor
Freq | % Valid | % Valid Cum. | % Total | % Total Cum. | |
---|---|---|---|---|---|
setosa | 50 | 33.33 | 33.33 | 33.33 | 33.33 |
versicolor | 50 | 33.33 | 66.67 | 33.33 | 66.67 |
virginica | 50 | 33.33 | 100.00 | 33.33 | 100.00 |
<NA> | 0 | 0.00 | 100.00 | ||
Total | 150 | 100.00 | 100.00 | 100.00 | 100.00 |
We’ve added the plain.ascii
and style
arguments for this first example; however, since we have set these options globally using st_options()
, they are not really needed. For this reason, we will not include them from hereon.
If we do not worry about missing data, we can set report.nas = FALSE
:
Freq | % | % Cum. | |
---|---|---|---|
setosa | 50 | 33.33 | 33.33 |
versicolor | 50 | 33.33 | 66.67 |
virginica | 50 | 33.33 | 100.00 |
Total | 150 | 100.00 | 100.00 |
We can simplify the results further and omit the Totals row by specifying totals = FALSE
, as well as omit the cumulative rows by setting cumul = FALSE
.
freq(iris$Species, report.nas = FALSE, totals = FALSE,
cumul = FALSE, style = "rmarkdown", headings = FALSE)
Freq | % | |
---|---|---|
setosa | 50 | 33.33 |
versicolor | 50 | 33.33 |
virginica | 50 | 33.33 |
To get familiar with the various output styles, try different values for style
– “simple”, “rmarkdown” or “grid”, and see how this affects the results in the console.
The “rows” argument allows subsetting the resulting frequency table; we can use it in 3 different ways:
rows = 1:10
will show the frequencies for the first 10 values onlyUsed in combination with the “order” argument, this can be quite practical. Say we have a character variable containing many distinct values and wish to know which ones are the 10 most frequent. To achieve this, we would simply use order = "freq"
along with rows = 1:5
.
There is more than one way to do this, but the best approach is to simply pass the data frame object (subsetted if needed) to freq()
: (results not shown)
We can without fear pass a whole data frame to freq()
; it will figure out which variables to ignore (numerical variables having many distinct values).
We’ll now use a sample data frame called tobacco, which is included in summarytools. We want to cross-tabulate two categorical variables: smoker
and diseased
.
Since markdown does not support multiline headings, we’ll show a rendered html version of the results:
diseased | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
smoker | Yes | No | Total | |||||||||
Yes | 125 | ( | 41.9% | ) | 173 | ( | 58.1% | ) | 298 | ( | 100.0% | ) |
No | 99 | ( | 14.1% | ) | 603 | ( | 85.9% | ) | 702 | ( | 100.0% | ) |
Total | 224 | ( | 22.4% | ) | 776 | ( | 77.6% | ) | 1000 | ( | 100.0% | ) |
By default, ctable()
shows row proportions. To show column or total proportions, use prop = "c"
or prop = "t"
, respectively. To omit proportions, use prop = "n"
.
In the next example, we’ll create a simple “2 x 2” table (no proportions, no totals):
with(tobacco,
print(ctable(smoker, diseased, prop = 'n', totals = FALSE),
headings = FALSE, method = "render"))
diseased | ||
---|---|---|
smoker | Yes | No |
Yes | 125 | 173 |
No | 99 | 603 |
To display chi-square results below the table, set the “chisq” parameter to TRUE
. This time, instead of with()
, we’ll use the %$%
operator from the magrittr package, which works in a very similar fashion.
library(magrittr)
tobacco %$%
ctable(gender, smoker, chisq = TRUE, headings = FALSE) %>%
print(method = "render")
smoker | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
gender | Yes | No | Total | |||||||||
F | 147 | ( | 30.1% | ) | 342 | ( | 69.9% | ) | 489 | ( | 100.0% | ) |
M | 143 | ( | 29.2% | ) | 346 | ( | 70.8% | ) | 489 | ( | 100.0% | ) |
<NA> | 8 | ( | 36.4% | ) | 14 | ( | 63.6% | ) | 22 | ( | 100.0% | ) |
Total | 298 | ( | 29.8% | ) | 702 | ( | 70.2% | ) | 1000 | ( | 100.0% | ) |
Χ2 = .5415 df = 2 p = .7628
Note that a warning will be issued when at least one expected cell counts is lower than 5.
The descr()
function generates common central tendency statistics and measures of dispersion for numerical data. It can handle single vectors as well as data frames, in which case it will ignore non-numerical columns (and display a message to that effect).
Non-numerical variable(s) ignored: Species
iris
N: 150
Petal.Length | Petal.Width | Sepal.Length | Sepal.Width | |
---|---|---|---|---|
Mean | 3.76 | 1.20 | 5.84 | 3.06 |
Std.Dev | 1.77 | 0.76 | 0.83 | 0.44 |
Min | 1.00 | 0.10 | 4.30 | 2.00 |
Q1 | 1.60 | 0.30 | 5.10 | 2.80 |
Median | 4.35 | 1.30 | 5.80 | 3.00 |
Q3 | 5.10 | 1.80 | 6.40 | 3.30 |
Max | 6.90 | 2.50 | 7.90 | 4.40 |
MAD | 1.85 | 1.04 | 1.04 | 0.44 |
IQR | 3.50 | 1.50 | 1.30 | 0.50 |
CV | 0.47 | 0.64 | 0.14 | 0.14 |
Skewness | -0.27 | -0.10 | 0.31 | 0.31 |
SE.Skewness | 0.20 | 0.20 | 0.20 | 0.20 |
Kurtosis | -1.42 | -1.36 | -0.61 | 0.14 |
N.Valid | 150.00 | 150.00 | 150.00 | 150.00 |
Pct.Valid | 100.00 | 100.00 | 100.00 | 100.00 |
If your eyes/brain prefer seeing things the other way around, just use transpose = TRUE
. Here, we also select only the statistics we wish to see, and specify headings = FALSE
to avoid reprinting the same information as above.
We specify the stats we wish to report with the stats
argument, which also accepts values “all”, “fivenum”, and “common”. See ?descr
for a complete list of available statistics.
Non-numerical variable(s) ignored: Species
Mean | Std.Dev | Min | Median | Max | N.Valid | Pct.Valid | |
---|---|---|---|---|---|---|---|
Petal.Length | 3.76 | 1.77 | 1.00 | 4.35 | 6.90 | 150.00 | 100.00 |
Petal.Width | 1.20 | 0.76 | 0.10 | 1.30 | 2.50 | 150.00 | 100.00 |
Sepal.Length | 5.84 | 0.83 | 4.30 | 5.80 | 7.90 | 150.00 | 100.00 |
Sepal.Width | 3.06 | 0.44 | 2.00 | 3.00 | 4.40 | 150.00 | 100.00 |
dfSummary()
collects information about all variables in a data frame and displays it in a single legible table.
To generate a summary report and have it displayed in RStudio’s Viewer pane (or in the default Web browser if working outside RStudio), we simply do as follows:
Of course, it is also possible to use dfSummary()
in Rmarkdown documents. It is usually a good idea to exclude a column or two, otherwise the table might be a bit too wide. For instance, since the Valid and NA columns are redundant, we can drop one of them.
dfSummary(tobacco, plain.ascii = FALSE, style = "grid",
graph.magnif = 0.75, valid.col = FALSE, tmp.img.dir = "/tmp")
While rendering html tables with view()
doesn’t require it, here it is essential to specify tmp.img.dir
. We’ll explain why further below.
When generating freq()
or descr()
tables, it is possible to turn the results into “tidy” tables with the use of the tb()
function (think of tb as a diminutive for tibble). For example:
# A tibble: 4 x 8
variable mean sd min med max n.valid pct.valid
<chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
1 Petal.Leng… 3.758 1.765298233… 1 4.35 6.9 150 100
2 Petal.Width 1.199333333… 0.762237668… 0.1 1.3 2.5 150 100
3 Sepal.Leng… 5.843333333… 0.828066127… 4.3 5.8 7.9 150 100
4 Sepal.Width 3.057333333… 0.435866284… 2 3 4.4 150 100
# A tibble: 3 x 3
value freq pct
<fct> <dbl> <dbl>
1 setosa 50 33.3
2 versicolor 50 33.3
3 virginica 50 33.3
By definition, no total rows are part of tidy tables, and row.names are converted to regular columns. For now, tb()
doesn’t handle split-group tables, but it is certainly in store for a future release of summarytools.
summarytools has a generic print
method, print.summarytools()
. By default, its method
argument is set to “pander”. One of the ways in which view()
is useful is that we can use it to easily display html outputs in RStudio’s Viewer. The view()
function simply acts as a wrapper around print.summarytools()
, specifying method = 'viewer'
. When used outside RStudio, method
falls back to “browser” and the report is shown in the system’s default browser.
We can use stby()
the same way as R’s base function by()
with the four core summarytools functions. This returns a list-type object containing as many elements as there are categories in the grouping variable.
Why not just use by()
? The reason is that by()
creates objects of class “by()”, which have a dedicated print()
method conflicting with summarytools’ way of printing list-type objects. Since print.by()
can’t be redefined (as of CRAN policies), the sensible solution was to introduce a function that is essentially a clone of by()
, except that the objects it creates have the class “stby”, allowing the desired flexibility.
Using the iris data frame, we will now display descriptive statistics by Species.
(iris_stats_by_species <- stby(data = iris,
INDICES = iris$Species,
FUN = descr, stats = c("mean", "sd", "min", "med", "max"),
transpose = TRUE))
Non-numerical variable(s) ignored: Species
iris
Group: Species = setosa
N: 50
Mean | Std.Dev | Min | Median | Max | |
---|---|---|---|---|---|
Petal.Length | 1.46 | 0.17 | 1.00 | 1.50 | 1.90 |
Petal.Width | 0.25 | 0.11 | 0.10 | 0.20 | 0.60 |
Sepal.Length | 5.01 | 0.35 | 4.30 | 5.00 | 5.80 |
Sepal.Width | 3.43 | 0.38 | 2.30 | 3.40 | 4.40 |
Group: Species = versicolor
N: 50
Mean | Std.Dev | Min | Median | Max | |
---|---|---|---|---|---|
Petal.Length | 4.26 | 0.47 | 3.00 | 4.35 | 5.10 |
Petal.Width | 1.33 | 0.20 | 1.00 | 1.30 | 1.80 |
Sepal.Length | 5.94 | 0.52 | 4.90 | 5.90 | 7.00 |
Sepal.Width | 2.77 | 0.31 | 2.00 | 2.80 | 3.40 |
Group: Species = virginica
N: 50
Mean | Std.Dev | Min | Median | Max | |
---|---|---|---|---|---|
Petal.Length | 5.55 | 0.55 | 4.50 | 5.55 | 6.90 |
Petal.Width | 2.03 | 0.27 | 1.40 | 2.00 | 2.50 |
Sepal.Length | 6.59 | 0.64 | 4.90 | 6.50 | 7.90 |
Sepal.Width | 2.97 | 0.32 | 2.20 | 3.00 | 3.80 |
To see an html version of these results, we simply use view()
(also possible is to use print()
with method = "viewer"
): (results not shown)
A special situation occurs when we want grouped statistics for one variable only. Instead of showing several tables, each having one column, summarytools assembles everything into a single table:
BMI by age.gr
Data Frame: tobacco
N: 258
18-34 | 35-50 | 51-70 | 71 + | |
---|---|---|---|---|
Mean | 23.84 | 25.11 | 26.91 | 27.45 |
Std.Dev | 4.23 | 4.34 | 4.26 | 4.37 |
Min | 8.83 | 10.35 | 9.01 | 16.36 |
Median | 24.04 | 25.11 | 26.77 | 27.52 |
Max | 34.84 | 39.44 | 39.21 | 38.37 |
The transposed version looks like this:
Mean | Std.Dev | Min | Median | Max | |
---|---|---|---|---|---|
18-34 | 23.84 | 4.23 | 8.83 | 24.04 | 34.84 |
35-50 | 25.11 | 4.34 | 10.35 | 25.11 | 39.44 |
51-70 | 26.91 | 4.26 | 9.01 | 26.77 | 39.21 |
71 + | 27.45 | 4.37 | 16.36 | 27.52 | 38.37 |
This is a little trickier – the working syntax is as follows:
As we have seen, summarytools can generate both text/markdown and html results. Both types of outputs can be used in Rmarkdown documents. The vignette Recommendations for Using summarytools With Rmarkdown provides good guidelines, but here are a few tips to get started:
knitr
chunk option results = 'asis'
. You can do this on a chunk-by-chunk basis, but it is easier to just set it globally in a “setup” chunk:Refer to this page for more knitr’s options.
method = 'render'
, set up your .Rmd document so that it includes summarytools’ css. The st_css()
function makes this very easy.# ---
# title: "RMarkdown using summarytools"
# output: html_document
# ---
#
# ```{r setup, include=FALSE}
# library(knitr)
# opts_chunk$set(comment = NA, prompt = FALSE, cache = FALSE, results = 'asis')
# library(summarytools)
# st_options(plain.ascii = FALSE, # This is a must in Rmd documents
# style = "rmarkdown", # idem
# dfSummary.varnumbers = FALSE, # This keeps results narrow enough
# dfSummary.valid.col = FALSE) # idem
#```
#
# ```{r, echo=FALSE}
# st_css()
# ```
Since results = 'asis'
can conflict with other packages’ way of generating results, it is sometimes best to use it for individual chunks only.
For data frames containing numerous variables, we can use the max.tbl.height
argument to wrap the results in a scrollable window having the specified height, in pixels. For instance:
print(dfSummary(tobacco, valid.col = FALSE, graph.magnif = 0.75),
max.tbl.height = 300, method = "render")
No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | gender [factor] | 1. F 2. M |
|
22 (2.2%) | |||||||||||||||||||||||||||||||||||||||||||||
2 | age [numeric] | Mean (sd) : 49.6 (18.3) min < med < max: 18 < 50 < 80 IQR (CV) : 32 (0.4) | 63 distinct values | 25 (2.5%) | |||||||||||||||||||||||||||||||||||||||||||||
3 | age.gr [factor] | 1. 18-34 2. 35-50 3. 51-70 4. 71 + |
|
25 (2.5%) | |||||||||||||||||||||||||||||||||||||||||||||
4 | BMI [numeric] | Mean (sd) : 25.7 (4.5) min < med < max: 8.8 < 25.6 < 39.4 IQR (CV) : 5.7 (0.2) | 974 distinct values | 26 (2.6%) | |||||||||||||||||||||||||||||||||||||||||||||
5 | smoker [factor] | 1. Yes 2. No |
|
0 (0%) | |||||||||||||||||||||||||||||||||||||||||||||
6 | cigs.per.day [numeric] | Mean (sd) : 6.8 (11.9) min < med < max: 0 < 0 < 40 IQR (CV) : 11 (1.8) | 37 distinct values | 35 (3.5%) | |||||||||||||||||||||||||||||||||||||||||||||
7 | diseased [factor] | 1. Yes 2. No |
|
0 (0%) | |||||||||||||||||||||||||||||||||||||||||||||
8 | disease [character] | 1. Hypertension 2. Cancer 3. Cholesterol 4. Heart 5. Pulmonary 6. Musculoskeletal 7. Diabetes 8. Hearing 9. Digestive 10. Hypotension [ 3 others ] |
|
778 (77.8%) | |||||||||||||||||||||||||||||||||||||||||||||
9 | samp.wgts [numeric] | Mean (sd) : 1 (0.1) min < med < max: 0.9 < 1 < 1.1 IQR (CV) : 0.2 (0.1) |
|
0 (0%) |
We can use the file
argument with print()
or view()
to indicate that we want to save the results in a file, be it html, Rmd, md, or just plain text (txt). The file extension indicates to summarytools what type of file should be generated.
The append
argument allows adding content to existing files generated by summarytools. This is useful if you want to include several statistical tables in a single file. It is a quick alternative to creating an .Rmd document.
The following options can be set with st_options()
:
Option name | Default | Note |
---|---|---|
style | “simple” | Set to “rmarkdown” in .Rmd documents |
plain.ascii | TRUE | Set to FALSE in .Rmd documents |
round.digits | 2 | Number of decimals to show |
headings | TRUE | Formerly “omit.headings” |
footnote | “default” | Personalize, or set to NA to omit |
display.labels | TRUE | Show variable / data frame labels in headings |
bootstrap.css (*) | TRUE | Include Bootstrap 4 css in html outputs |
custom.css | NA | Path to your own css file |
escape.pipe | FALSE | Useful for some Pandoc conversions |
subtitle.emphasis | TRUE | Controls headings formatting |
lang | “en” | Language (always 2-letter, lowercase) |
(*) Set to FALSE in Shiny apps
Option name | Default | Note |
---|---|---|
freq.totals | TRUE | Display totals row in freq() |
freq.report.nas | TRUE | Display |
ctable.prop | “r” | Display row proportions by default |
ctable.totals | TRUE | Show marginal totals |
descr.stats | “all” | “fivenum”, “common” or vector of stats |
descr.transpose | FALSE | |
descr.silent | FALSE | Hide console messages |
dfSummary.varnumbers | TRUE | Show variable numbers in 1st col. |
dfSummary.labels.col | TRUE | Show variable labels when present |
dfSummary.graph.col | TRUE | Show graphs |
dfSummary.valid.col | TRUE | Include the Valid column in the output |
dfSummary.na.col | TRUE | Include the Missing column in the output |
dfSummary.graph.magnif | 1 | Zoom factor for bar plots and histograms |
dfSummary.silent | FALSE | Hide console messages |
tmp.img.dir | NA | Directory to store temporary images |
st_options() # display all global options values
st_options('round.digits') # display the value of a specific option
st_options(style = 'rmarkdown') # change one or several options' values
st_options(footnote = NA) # Turn off the footnote on all outputs.
# This option was used prior to generating
# the present document.
When a summarytools object is created, its formatting attributes are stored within it. However, you can override most of them when using the print()
method or the view()
function.
Argument | freq | ctable | descr | dfSummary |
---|---|---|---|---|
style | x | x | x | x |
round.digits | x | x | x | |
plain.ascii | x | x | x | x |
justify | x | x | x | x |
headings | x | x | x | x |
display.labels | x | x | x | x |
varnumbers | x | |||
labels.col | x | |||
graph.col | x | |||
valid.col | x | |||
na.col | x | |||
col.widths | x | |||
totals | x | x | ||
report.nas | x | |||
display.type | x | |||
missing | x | |||
split.tables | x | x | x | x |
caption | x | x | x | x |
Argument | freq | ctable | descr | dfSummary |
---|---|---|---|---|
Data.frame | x | x | x | x |
Data.frame.label | x | x | x | x |
Variable | x | x | x | |
Variable.label | x | x | x | |
Group | x | x | x | x |
date | x | x | x | x |
Weights | x | x | ||
Data.type | x | |||
Row.variable | x | |||
Col.variable | x |
Here’s an example in which we override 3 function-specific arguments, and one element of the heading:
tobacco$age.gr
Type: Factor
Freq | % Valid | % Valid Cum. | % Total | % Total Cum. | |
---|---|---|---|---|---|
18-34 | 258 | 26.46 | 26.46 | 25.80 | 25.80 |
35-50 | 241 | 24.72 | 51.18 | 24.10 | 49.90 |
51-70 | 317 | 32.51 | 83.69 | 31.70 | 81.60 |
71 + | 159 | 16.31 | 100.00 | 15.90 | 97.50 |
<NA> | 25 | 2.50 | 100.00 | ||
Total | 1000 | 100.00 | 100.00 | 100.00 | 100.00 |
tobacco$age.gr
Label: Age Group
Freq | % | % Cum. | |
---|---|---|---|
18-34 | 258 | 26.46 | 26.46 |
35-50 | 241 | 24.72 | 51.18 |
51-70 | 317 | 32.51 | 83.69 |
71 + | 159 | 16.31 | 100.00 |
Note that the original attributes are still part of the age_stats object, left unchanged.
print()
or view()
have precedencefreq() / ctable() / descr() / dfSummary()
come secondst_options
come thirdsummarytools uses RStudio’s htmltools package and version 4 of Bootstrap’s cascading stylesheets.
It is possible to include your own css if you wish to customize the look of the output tables. See ?print.summarytools
for all the details, but here is a quick example.
Say you need to make the font size really really small. For this, you would create a .css file - let’s call it “custom.css” - containing a class definition such as the following:
Then, to apply it to a summarytools object and display it in your browser:
To display a smaller table that is not that small, you can use the provided css class st-small
.
To include summarytools functions in Shiny apps, it is recommended that you:
bootstrap.css = FALSE
to avoid interacting with the app’s layoutheadings = FALSE
dfSummary()
using the dfSummary.graph.magnif
global optiondfSummary()
outputs are too wide, try omitting a column or two (valid.col
and varnumbers
, for instance)col.widths
parameter of the print()
method or the view()
functionWhen generating markdown (as opposed to html) summaries in an .Rmd document, three elements are needed to display proper png graphs:
1 - plain.ascii
is FALSE
2 - style
is “grid”
3 - tmp.img.dir
is defined
Why the third element? Although R makes it really easy to create temporary files and directories, they do have long pathnames, especially on Windows. Combine this with the fact that Pandoc currently determines the final (rendered) column widths by counting characters, including those of pathnames pointing to images. What we get is… some issues of proportion (!).
At this time, there seems to be only one solution around this problem: cut down on characters in pathnames. So instead of this:
+-----------+-------------------------------------------------------------------------+---------+
| Variable | Graph | Valid |
+===========+=========================================================================+=========+
| gender\ |  | 978\ |
| [factor] | | (97.8%) |
+----+---------------+----------------------------------------------------------------+---------+
…we aim for this:
+---------------+----------------------+---------+
| Variable | Graph | Valid |
+===============+======================+=========+
| gender\ |  | 978\ |
| [factor] | | (97.8%) |
+---------------+----------------------+---------+
Now CRAN policies are really strict when it comes to writing content in the user directories, or anywhere outside R’s temporary zone (for good reasons). So we need to let the users set this location themselves, therefore implicitly consenting to content being written outside R’s temporary zone.
On Mac OS and Linux, using “/tmp” makes a lot of sense: it’s short, and it’s self-cleaning. On Windows, there is no such convenient directory, so we need to pick one – be it absolute (“/tmp”) or relative (“img”, or simply “.”). Two things are to be kept in mind: it needs to be short (5 characters max) and we need to clean it up manually.
It is now possible to switch the language used in the outputs. So far, the following languages are available, thanks to the R community’s efforts: French (fr), Portuguese (pt), Russian (ru), Spanish (es), and Turkish (tr).
To switch languages, simply use
Any function will now produce outputs using that language:
iris$Species
Type: Facteur
Fréq. | % Valide | % Valide cum. | % Total | % Total cum. | |
---|---|---|---|---|---|
setosa | 50 | 33.33 | 33.33 | 33.33 | 33.33 |
versicolor | 50 | 33.33 | 66.67 | 33.33 | 66.67 |
virginica | 50 | 33.33 | 100.00 | 33.33 | 100.00 |
<NA> | 0 | 0.00 | 100.00 | ||
Total | 150 | 100.00 | 100.00 | 100.00 | 100.00 |
The language used for producing the object is stored within it as an attribute. This is to avoid problems when switching languages between the moment the object is stored, and the moment at which it is printed.
On most Windows systems, it will be necessary to change the LC_CTYPE
element of the locale settings if the character set is not included in the current locale. For instance, in order to get good results – or rather, any results at all – printing in the console with the Russian language, we’ll need to do this:
Then, to go back to default settings:
With the new function use_custom_lang()
, you can add your own set of translations. For this, create a copy of the language_template.csv file located in the summarytools/includes of your package library, or download it from this location.
After you’re done translating the +/- 70 items, simply call the use_custom_lang()
function, giving it as sole argument the path to the csv file you’ve just created. Note that such custom translations will not persist across R sessions. This means that you should always have handy this csv file if you’re to print objects created with it.
Sometimes, all you might want to do is change just a few keywords – say you would rather have “N” instead of “Freq” in the title row of freq()
tables. No need to create a full custom language for that. Rather, use define_keywords()
. Calling this function without any arguments will bring up, on systems that support graphical devices (the vast majority, that is), an editable window allowing the modify only the desired items.
After closing the edit window, you will be offered to export the resulting “custom language” into a .csv file that can be imported later on with use_custom_lang()
.
Note that it is also possible to define one or several keywords using function arguments. For the list of all possible keywords to define, see ?define_keywords
. For instance:
As stated earlier, version 0.9 brought many improvements to summarytools. Here are the key elements:
view(x, method = "pander")
; simply use stby()
instead of by()
print(x)
(as opposed to “stby” objects, their automatic printing will not be optimal; that being said, freq()
now accepts data frames as its first argument, so the need for lapply()
is greatly diminished)st_options()
st_options()
now has as many parameters as there are options to set, making it possible to set all options with only one function call; legacy way of setting options is still supported%>%
, %$%
)freq()
lapply()
with itstby()
ctable()
stby()
descr()
stats
argument, Values “fivenum” and “common” are now allowed, the latter representing the collection of mean, sd, min, med, max, n.valid, and pct.validstby()
dfSummary()
col.widths
can be used to set the width of the resulting table’s columns; this addresses an issue with some graphs not being shown at the desired magnification level (although much effort has been put into improving this as well)max.tbl.height
parameter is added, allowing lengthy summaries to be shown in a scrollable windowomit.headings
parameter has been replaced by the more straightforward (and still boolean) headings
. omit.heandings
is still supported but will be deprecated in future releasestb()
function turns results from freq()
and descr()
into tidy tibblesNo changes break backward compatibility, but at least one legacy feature will disappear in some further release. Namely, the boolean parameter omit.headings
, which has been replaced by the more straightforward headings
. For now, a message is shown whenever the “old” parameter name is used, encouraging users to transition to the newer one.
Check out the GitHub project’s page - from there you can see the latest updates and also submit feature requests.
For a preview of what’s coming in the next release, have a look at the development branch.
The package comes with no guarantees. It is a work in progress and feedback / feature requests are welcome. Just send an email to dominic.comtois@gmail.com, or open an Issue on GitHub if you find a bug or wish to submit a feature request.