Quick show me some really impressive results in Rmarkdown! See example.html or see the equivalent in LaTeX example.pdf
Tables are now all longtables in LaTeX. Vignettes are split to another project: tangram-vignettes.
Just a quick note that this release is a major refactor that makes the tangram call context aware when used with Rmarkdown. Calls to rendering for html or latex are no longer required (but could still be used). Also, each cell’s rendering now has a dispatch table in the transform so one can easily override how numbers are formated. This release will be pushed to CRAN when I finished testing the entire LaTeX UNICODE support.
What began as an extensible library to quickly generate tables from
formulas, has evolved into a library that supports magrittr
%>%
style commands on abstract table objects. The
formula interface is a complicated piece of code in it’s own right, but
is only one of many methods now available in the generation of tables.
There were a lot of lessons learned to get to this final point, and it’s
worth talking about what is now the core of the library, and what has
become the best practices in the design of the interface.
It’s now been used to make 30-40 page reproducible DSMB (data safety monitoring board) reports on multiple clinical trials. Internally, several biostatistical reports are using it to improve the quality of presentation. This shakedown of formats and usage has vastly improved the overall quality of the package. See fda-example.html for some examples–don’t be put off by size of the examples. They are reusable over and over for custom content devoted to a given task. These two transforms and their constructions, once built have to date been used on at least 5 different submitted reports.
A tangram object is at it’s heart a list of lists containing
cells
which can be subclassed from just about anything, but
the best overall choice is basically a vector of character
,
which contains text with minor extensions to Rmarkdown. There are two
types of style, one is internal to a cell and it’s formatting of text.
The other is overall styling of a table which is a choice best left to
the rendering call. The Rmarkdown/extensions supported are as
follows:
*italic*
or _italic_
Makes the font chosen
italic.**bold**
or __bold__
Makes the font chosen
bold.inline code
.~~strikethrough~~
for # Header
for header font, and the various other
multiples of hash marks.~subscript~
for a subscript (extension).^superscript^
for a superscript
(extension).The original library had custom objects for specific statistical meanings. However, most of these are not required or needed anymore and with each version I am working to eliminate most if not all of them. There is one exception that is difficult and that is the fraction. There is no clean way to support fractions in Rmarkdown that I’ve come up with. I am considering another extension in the support. However, in the long run all of these custom cell objects and their handling will probably vanish.
This tangram
object representing the abstract table in
memory now has all the internal formatting of a cell representable in a
simple and direct manner. A cell object can have the following
attributes:
sep
a seperator to use for rendering between character
strings in a vectorreference
a reference character to append as
superscript to the field. Not required, as this can be handled now via
the Rmarkdown above. Will probably deprecate soon.units
the units of the described label. Maintains
compability with Hmisc handling of units on objects.colspan
the ability of a cell to take up multiple
columns that follow to the right. The cells it covers should be set to
NA.rowspan
the ability of a cell to take up multiple rows
that follow below. The cells it covers should be set to NA.A tangram
object itself can have an attribute
footnote
to contain footnotes to display. Some formula
transforms automatically supply this with their bundle for
reference.
Additional subclassing of cells carries through to special handling. For example in the HTML rendering code all of these become CSS classes so that one can specify CSS rendering however an end user likes. Several of the core statistical cells also allow for flexbox rendering in CSS. LaTeX is more fixed in it’s rendering, but deals with these issues handily.
Functions like cell_label
will generate a cell
label.
> cell_label("Joe")
Joe
> class(cell_label("Joe"))
[1] "cell_label" "cell" "character"
The class information is important for style decisions later in the
manner of CSS, and helper functions exist for the top level class all
labeled as cell_*
. The current handled information by the
provided styles (you can of course write your own) is as follows:
Note: Most of the previous versoin classes are all deprecated in favor of straight Markdown
Tables are composible
> tbl <- tangram(drug ~ sex, pbc) + tangram(drug ~ bili, pbc)
> tbl
===========================================================================================================
N D-penicillamine placebo not randomized Test Statistic
154 158 106
-----------------------------------------------------------------------------------------------------------
sex : female 418 0.903 139/154 0.867 137/158 0.925 98/106 X^2_2=2.38, P=0.304
Serum Bilirubin (mg/dl) 418 0.70 *1.30* 3.60 0.80 *1.40* 3.22 0.70 *1.40* 3.12 F_{2,415}=0.03, P=0.972
===========================================================================================================
There are some basic operators, but adding more is quite easy. Just drop me a suggestion and I can generally turn it around pretty quickly. In fact, I’m focused on adding these in general right now.
> tbl %>%
del_row(2) %>%
del_col(2) %>%
insert_row(1, "", "Yabba", "Dabba", cell_header("DOOOO"), "", class="cell_header") %>%
drop_statistics() %>%
add_indent(2)
===============================================================================
D-penicillamine placebo not randomized
Yabba Dabba DOOOO
-------------------------------------------------------------------------------
sex : female 0.903 139/154 0.867 137/158 0.925 98/106
Serum Bilirubin (mg/dl) 0.70 *1.30* 3.60 0.80 *1.40* 3.22 0.70 *1.40* 3.12
===============================================================================
By the way, referring to specific rows and columns in a table and using operators on these introduce brittleness into your table reproducibility. Say a variable is added or removed, all the absolute references are now broken! Sometimes it’s necessary, but in general to be avoided if possible.
The formula interface allows for reproducible and consistent formatting into tables from data frames. I cannot stress the idea of consistent enough in this regard. While working on this project I’ve seen numerous professional tables where the method of display for information of the same type changes several times in the same table. The reader is forced to adapt his cognitition multiple times and this makes communication of the message in the data more difficult. Consistency of representation of data in a table is paramount to good design.
But I want to use dplyr to generate my table! Well, you can have your cake and eat it too.
> library(dplyr)
> mtcars %>%
group_by(cyl) %>%
summarise(disp = round(mean(disp),2), N=n()) %>%
tangram()
===============
cyl disp N
---------------
4 105.14 11
6 183.31 7
8 353.1 14
===============
This allows for all the downstream rich rendering choices into LaTex, HTML5, rmd, or rtf to work with your summaries from dplyr.
There were several requests to modify exactly how a cell in a table was generated in the provided Hmisc transform. I’ve added callback tables as part of the transform object so that things can be overridden. This was used to provide styles as well, the original statistical transforms were just modified with different cell rendering via these callbacks.
The hmisc transform looks like this now:
hmisc <- list(
Type = hmisc_data_type,
Numerical = list(
Numerical = summarize_spearman,
Categorical = summarize_kruskal_horz
),
Categorical = list(
Numerical = summarize_kruskal_vert,
Categorical = summarize_chisq
),
Cell = hmisc_cell,
Footnote = "N is the number of non-missing value. ^1^Kruskal-Wallis. ^2^Pearson. ^3^Wilcoxon."
)
The Cell
item in the list contains the list of call
backs used by the hmisc
transform. Thus one can still
define their own set of transforms, or just use an existing an modify
the portion needed.
hmisc_cell <- list(
n = cell_n,
iqr = hmisc_iqr,
fraction = hmisc_fraction,
fstat = hmisc_fstat,
chi2 = hmisc_chi2,
spearman = hmisc_spearman,
wilcox = hmisc_wilcox,
p = hmisc_p
)
Here’s an example that keeps hmisc the same but adds percentages to fractions.
> my_transform <- hmisc
> my_transform[['Cell']][['fraction']] <- function(numerator, denominator, format=3, ...)
{ paste0('%', render_f(100*numerator/denominator, format)) }
> tangram(1 ~ sex[1]+drug[1]+bili, pbc, test=FALSE, id="override", transform=my_transform)
=========================================
N All
(N=418)
-----------------------------------------
sex : female 418 %89.5
drug 418
D-penicillamine %36.8
placebo %37.8
not randomized %25.4
Serum Bilirubin 418 0.80 *1.40* 3.40
=========================================
N is the number of non-missing value. ^1 Kruskal-Wallis. ^2 Pearson. ^3 Wilcoxon.
Thus the framework is entirely separate from the specification of transforms at the formula and the cell level.
Look in the R/cell-hmisc.R
file for details on cell
rendering and the interface expected by the hmisc
transform.
P.S. I tested copy and paste from the HTML of a vignette into an email with gmail and it worked flawlessly. Nice.
July 21 2018 v0.6 Major Refactor. Callbacks added for cell rendering. Rmarkdown and knitr aware of context. Style support improved and UNICODE to LaTeX mappings in progress.
Jun 4 2018 v0.4 Numerous bug fixes. The package was used for DSMB report submissions to the FDA, and several examples of IRR and other wonderful things have been produced. The full shakedown is complete, and fixes and updates are becoming smaller and smaller as the package stabilizes. LaTeX is a workable render format. It has rtf output that works acceptibly. Work continues towards formatted output in Word, with traceability.
Jun 27 2017 v0.3 A major refactor, cells in the table object are no
longer ‘special’ and are just straight S3 objects. Two adapter layers of
code are deleted, interface is stablizing. Used tangram
as
an S3 object and replaced various table generating calls to a single
overloaded function.
Sep 27 2017 v0.3.2 Multiple bug fixes from earlier refactor. Added support for LaTeX. A new example from FDA work.
The idea of creating a quick summary of a data set has been around a good while. The use of a statistical formulas to create summaries exists in SAS in PROC REPORT, and in the R package Hmisc. The SAS has a rich syntax which allows for generation of a wide array of summary tables, but is limited to a subset of SAS functions. The SAS generation is further limited to a fairly crude appearing table, with limited options for output generation. Hmisc offers wonderful output, but is fixed in the analysis that can be performed.
This project intends to create a table grammar that is simple to use, while providing ultimate freedom to the end user when generating summary tables from data sets. This project contains the reference implementation in the language R, but is not limited to R.
For an example using Rmarkdown, see example.html
A formula, a data frame (spreadsheet), and a transform function input into the framework will output an abstract table, that can be rendered into text, LaTeX, Word, or HTML5.
Formulas will be in the Columns ~ Rows
syntax.
A user supplies a set of data and a formula which produces a summary object. This summary object is then passed to a renderer which is responsible for the final production of a table in a target language. The user can alter labeling, variable type detection, output table data genertion or add or alter output format. Each concern of the pipeline is separated from other concerns.
For example, one may wish for summary tables which match the New England Journal of Medicine format in LaTeX. A provided bundle of table generation will create the desired analysis directly from the data, and allow for specifying a style to the rendered LaTeX. The same formula and data could be used for a statistical report inside a department and the Hmisc table generation could be selected. In the end, the user is no longer bound to any decision in the table summary chain, beyond the grammar, and is free to change at will–or contribute more target bundles to share with others.
A formula consists of a column specification, a tilde “~” and a row-specification.
A specification is a combination of expressions with a “+” joining them. Note one can add more variables to either columns or rows in this manner.
An expression can be a variable name from the data, or a variable joined with an expression via the “*” operator.
a either variable name from the data, or a variable name joined with an expression.
<table-formula> ::= <expression> "~" <expression>
<expression> ::= <term> "+" <expression> | <term>
<term> ::= <factor> "\*" <term> | <factor>
<factor> ::= <data-name> |
"(" <expression>" ")" |
<function-name> "(" <r-expression> ")" |
The operators + and * are distributive, i.e. term1 * (term2 + term3) == term1 * term2 + term1 * term3
The operators are not commutative, i.e. term1 + term2 =/= term2 + term1
The operators are associative.
Thus this grammar loosely corresponds to a noncommutative ring (+, *), which is non-albelian, a monoid under multiplication, and is distributive. It is not a true ring, in that elements once reduced do not appear back in the set operated on, as the grammar is describing a final product that is non-reducible, the final table.
If a function is encountered, this is executed and expected to return a variable with a label that is useable in generating summaries.
A parser creates an abstract syntax tree of the formula. It will apply any distributive requests to requested variables. Functions will create additional data, by passing in the current dataframe and executing the command.
This concludes the syntax phase of compiling a table. The next phase is where semantic meaning of the formula is created.
The user now has the choice what semantic content is desired for constructing the statistical summary. One might appreciate the default summary statistics and asthetic layout of Hmisc. One might want to generate data ready for the New England Journal of Medicine or it might just be statistics about a particular model that is central to the idea.
At this point, if statistical p-values are to be used a table should have a consistent viewpoint of what the null hypothesis is. A consistent viewpoint is essentially to a readers understanding the collection of information being presented. For example, Hmisc takes the viewpoint that the null hypothesis is indepedence of variables between row and column. Thus the table is exploring what possible relationships exist, and giving the reader a feel for the ranges of the data. Then based on what data type a variable is an appropriate statistical test is chosen.
In preparing this reference implementation, it was discovered that there are some fundamental basic types of data in relationship to statistical operations. Unsurprisingly, most class or type definitions in languages represent the underlying machine storage format. This viewpoint of type is at odds with being able to succienctly define how table summaries are generated from provided data. A formal definition of the types of data available is required. However, the user of the library can freely change or amend the types provided and/or type determination.
The default of this library is similar choices as made by Hmisc. That is, a column of data in a data frame will be classified into one of the following types:
The consequence of supporting these types must be explored in terms of the algebraic operators. First of all a Categorical or Binomial will expand to be a number of columns or rows corresponding to their groups. Binomial is kept as a special case for handling dropping of one for terseness in expression. Numerical is used as is, and will only have a single row or column in correspondence with it’s variable.
A Categorical * Categorical
creates nested groups for
consideration, which results in a categorical.
A Numerical * Numerical
will just treat this as the
numerical product of the two variables.
A Categorical * Numerical
, or vice versa creates several
numerical variables for consideration, filtered by the category they are
in.
Please, note that this is not a constraint of the table grammar
language, but simply compiler choices. One is free to consume the
abstract syntax tree and make different decisions about the meaning of
Numerical * Numerical
, and for that matter how types are
determined and what they are. The important thing to remember is
that all combinations of types be considered if writing a table
compiler!
As mentioned default analysis bundle mimics Hmisc. An intersection occurs between variables defined on the columns and rows.
It performs a Chi^2 test for Categorical X Categorical
.
Each intersection of groups contains the overall fraction in that
category.
The Continuous X Numerical
intersection provides
quantiles, and the results of a Kruskal–Wallis test.
Hmisc does not provide for a Continuous X Continous
variable, but in remaining consistent with other tests a Spearman
correlation test is provided.
Internally, a table consists of cells. A cell may be renderable, or it might be another table. An expansion function for flattening a table is used prerendering.
This choice forces a consistency requirement upon any author of compiler packages for tables. The number of rows and columns that analysis generates must be consistent across types. For example, for the default Hmisc descriptive compiler, the following table shows how many cells (rows X columns) are generated when analysis is done between a row type and a column type:
Binomial | Categorical (M values) | Numerical | |
---|---|---|---|
Binomial | 1 X 3 | 1 X (M + 2) | 1 X 3 |
Categorical (N values) | (N+1) X 3 | (N+1) X (M + 2) | (N+1) X 3 |
Numerical | 1 X 3 | 1 X (M + 2) | 1 X 3 |
Note that the first term is consistent across each row, and the second term is consistent across each column. This insures that upon flattening that the number of rows and columns remain consistent.
Note: Multicolumn and multirow formatting is on the todo list.
<table-formula> ::= <expression> "~" <expression>
<expression> ::= <term> "+" <expression> | <term>
<term> ::= <factor> "\*" <term> | <factor>
<factor> ::= "(" <expression>" ")" |
<variable> |
<function-name> "(" <r-expression> ")"
<function-name> ::= <identifier>
<variable> ::= <identifier>
( "::" <identifier> )
( "[" ( <integer> | '"' <format> '"' "]" )
<identifier> ::= 1 | ( [A-Za-z\_] | .[A-Za-z\_] ) [A-Za-z0-9\_.]+
<format> ::= "%" (<flags>) (<width>) (. <precision>) <specifier>
<flags> ::= <flag> | <flag> <flags>
<flag> ::= "-" | "+" | " " | "#" | "0"
<width> ::= <integer>
<precision> ::= <integer>
<specifier> ::= [diuoxXfFeEgGaAcspn]
<integer> ::= [0-9]+
A variable identifier can specify desired resolution, and / or the
type it should be treated as. For example:
albumin[2]::Numerical
specifies that albumin should be
reported with 2 significant digits and treated as a Numerical variable.
An alternate approach allows for sprintf specification, such as
albumin["%0.2g"]
Instead of focusing on machine representation as type, what if statistical type were the focus? The following types I feel are more sensible and useful to real world measurements:
This information defines what operations and tests can be done on data far better than worrying about the number of bits in the storage format. The type could define exactly what tests are allowed on data.