Skip to content

Commit

Permalink
Merge branch 'main' into 32_wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelru authored Apr 30, 2024
2 parents 7d415f8 + 67001e8 commit 32b44b5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions book/graphs/other/brg01.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ tbl <- ggplot(sd_l, aes(x = ACTARM, y = stat_lbl, label = value)) +
theme_bw() +
tbl_theme
plot <- ggpubr::ggarrange(graph, tbl,
heights = c(4, 1),
plot <- cowplot::plot_grid(graph, tbl,
rel_heights = c(4, 1),
ncol = 1, nrow = 2, align = "v"
)
plot
Expand Down
8 changes: 4 additions & 4 deletions book/graphs/other/bwg01.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@ tbl_1 <- ggplot(adlb_long, aes(x = ARMCD, y = type_lbl, label = stat), vjust = 1
labs(caption = "The whiskers extend to the minimum and maximum values.") +
theme_bp
plot <- ggpubr::ggarrange(bp_annos(bp_9, oc), tbl_1,
heights = c(4, 2),
plot <- cowplot::plot_grid(bp_annos(bp_9, oc), tbl_1,
rel_heights = c(4, 2),
ncol = 1, nrow = 2, align = "v"
)
plot
Expand All @@ -409,8 +409,8 @@ tbl_2 <- adlb_long %>%
labs(caption = "The whiskers extend to the minimum and maximum values.") +
theme_bp
plot <- ggpubr::ggarrange(bp_annos(bp_9, oc), tbl_2,
heights = c(6, 1),
plot <- cowplot::plot_grid(bp_annos(bp_9, oc), tbl_2,
rel_heights = c(6, 1),
ncol = 1, nrow = 2, align = "v"
)
plot
Expand Down
4 changes: 2 additions & 2 deletions package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tlg.catalog.pkg
Title: Tables, Listings and Graphs Catalog
Version: 0.1.0.9015
Version: 0.1.0.9016
Authors@R: c(
person("Joe", "Zhu", , "[email protected]", role = c("aut", "cre")),
person("Pawel", "Rucki", , "[email protected]", role = "aut"),
Expand All @@ -13,12 +13,12 @@ Depends:
Suggests:
binom,
broom,
cowplot,
DescTools,
dplyr,
forcats,
formatters,
ggplot2,
ggpubr,
ggrepel,
grid,
knitr,
Expand Down
2 changes: 1 addition & 1 deletion package/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `tlg-catalog` 0.1.0.9015
# `tlg-catalog` 0.1.0.9016

- Reorganize files into `/book` and `/package` for testability purposes.
- The TLG Catalog is here!
Expand Down

0 comments on commit 32b44b5

Please sign in to comment.