diff --git a/DESCRIPTION b/DESCRIPTION index 5195fa7b6..bf1532137 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: rtables Title: Reporting Tables -Version: 0.6.6.9011 -Date: 2024-02-23 +Version: 0.6.7 +Date: 2024-04-15 Authors@R: c( person("Gabriel", "Becker", , "gabembecker@gmail.com", role = "aut", comment = "Original creator of the package"), @@ -29,7 +29,7 @@ URL: https://github.com/insightsengineering/rtables, https://insightsengineering.github.io/rtables/ BugReports: https://github.com/insightsengineering/rtables/issues Depends: - formatters (>= 0.5.5.9005), + formatters (>= 0.5.6), magrittr (>= 1.5), methods, R (>= 2.10) diff --git a/NEWS.md b/NEWS.md index 32f6a2269..6e8ccdf3b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -## rtables 0.6.6.9011 +## rtables 0.6.7 ### New Features * Added `top_level_section_div` for `basic_table` to set section dividers for top level rows. * Added `keep_label_rows` to `as_result_df` to have these lines visible. diff --git a/man/formatters_methods.Rd b/man/formatters_methods.Rd index d2ffe1ef9..c50ac3c5c 100644 --- a/man/formatters_methods.Rd +++ b/man/formatters_methods.Rd @@ -233,3 +233,8 @@ The technically present root tree node is excluded from the summary returned by both \code{make_row_df} and \code{make_col_df} (see \code{\link[rtables:make_col_df]{rtables::make_col_df()}}), as it is simply the row/column structure of \code{tt} and thus not useful for pathing or pagination. } +\examples{ +# Expected error with matrix_form. For real case examples consult {rtables} documentation +mf <- basic_matrix_form(iris) +# make_row_df(mf) # Use table obj instead +}