Skip to content

Commit

Permalink
Merge branch 'main' into 785_colsubsetexpr_refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Melkiades authored Apr 23, 2024
2 parents ebc6826 + b16e0be commit 5415d6d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = "aut",
comment = "Original creator of the package"),
Expand Down Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -11,6 +11,7 @@
* Fixed `sort_at_path` pathing to ignore leading `"root"` element (regardless of actual root element name) to match current `tt_at_path` behavior.
* Fixed `section_div` for analysis of multiple variables (`AnalyzeMultiVars`).
* Fixed mismatch between indentation declared in row info (`mf_rinfo(mf)`) and actual selected indentation from `matrix_form(mf, indent_rownames = FALSE)`.
* Fixed bug in `as_html` preventing indentation from being applied in `Viewer` output.

### Miscellaneous
* Removed deprecated functions `add_analyzed_var` and `trim_zero_rows`.
Expand Down
2 changes: 1 addition & 1 deletion R/as_html.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ as_html <- function(x,

stopifnot(is(x, "VTableTree"))

mat <- matrix_form(x)
mat <- matrix_form(x, indent_rownames = TRUE)

nlh <- mf_nlheader(mat)
nc <- ncol(x) + 1
Expand Down
5 changes: 5 additions & 0 deletions man/formatters_methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5415d6d

Please sign in to comment.