Releases: insightsengineering/rtables
rtables v0.3.3
This version completely refactors the rtables
package. We do provide a backwards compatibility layer with the
rtable
, rcell
, rrow
, rheader
, and rtabulate
family of functions. However the table data structure and main
tabulation framework have changed. We provide extensive documentation in the manuals help(package = "rtables")
and
vignettes vignette(package = "rtables")
of the package.
The changes to rtables
have been undertaken to better meet the requirements of creating and analyzing & reporting
tables in the context of clinical trials.
v0.3.2.4 (used in Phuse EU Connect 2020 talk)
Used in talk "A Novel Way of Creating Tables in R using the refactored rtables R package" by Adrian Waddell in SD05 - Software Demonstration Stream at Phuse EU Connect 2020.
v0.3.2.3 (used in JSM 2020 Talk)
Version of rtables
used in Gabriel Becker's Joint Statistical Meetings 2020 presentation.
v0.3.1.1 (used in useR!2020 talk)
Layouting and tabulation framework in place as illustrated by the useR 2020 talk.
Should not be considered production code.
rtables 0.1.2
rbind.rtable
now supports binding rtables with rows, e.g.rbind(tbl1, rrow(), tbl2)
orrbind(tbl1, rrow("row name"), tbl2)
.rbindl_rtables
supportsNULL
objects in the list (except for the first element)- add
indent
function header_add_N
deals gracefully withNULL
objects
rtables 0.1.1
Changes from version 0.1.0
:
rtablulate
family of functions do not support therow_*_data_args
arguments anymore. Instead, thecol_wise_args
argument is introduced.- add functions
order_rrows
,sort_rrows
,order_rtables
, andsort_rtables
are introduced. - prevent
rtables
from being unlisted withunlist.rtables
Viewer
now also accepts objects of classshiny.tag
(defined in packagehtmltools
)as.html
acceptsclass.table
,class.tr
,class.th
, andclass.td
as an argument- added
sprintf_format
for formatting rcells (thanks to Doug Kelkhoff @dgkf for the suggestion) - added
"(N=xx)"
and">999.9"
format labels
Pre-release version of 0.1.1
Merge pull request #10 from Roche/devel pre-release for rtables version 0.1.0.5
First official release
v0.0.1 bug fix: ncol=1 tables work now