fefat: fixed Euler plotting without axis text

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-08-08 11:49:09 +02:00
commit 62b5d7a668
No known key found for this signature in database
5 changed files with 18 additions and 6 deletions

View file

@ -7,6 +7,7 @@
#'
#' @examples
#' mtcars |> plot_hbars(pri = "carb", sec = "cyl")
#' mtcars |> plot_hbars(pri = "carb", sec = "cyl", ter="am")
#' mtcars |> plot_hbars(pri = "carb", sec = NULL)
plot_hbars <- function(data, pri, sec, ter = NULL) {
out <- vertical_stacked_bars(data = data, score = pri, group = sec, strata = ter)