version bump - regression - data overview

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-04-02 11:31:04 +02:00
commit f249aaa9ab
No known key found for this signature in database
29 changed files with 2888 additions and 1239 deletions

View file

@ -350,7 +350,7 @@ data_description <- function(data) {
#' @param na.rm remove NAs
#' @param ... passed to base_sort_by
#'
#' @returns
#' @returns vector
#' @export
#'
#' @examples
@ -363,3 +363,9 @@ sort_by <- function(x,y,na.rm=FALSE,...){
out
}
}
get_ggplot_label <- function(data,label){
assertthat::assert_that(ggplot2::is.ggplot(data))
data$labels[[label]]
}