updated docs
Some checks failed
pkgdown.yaml / pkgdown (push) Has been cancelled

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-03-31 14:37:28 +02:00
commit f73af16ae1
No known key found for this signature in database
10 changed files with 69 additions and 17 deletions

View file

@ -133,6 +133,15 @@ sentence_paste <- function(data, and.str = "and") {
}
#' Correlations plot demo app
#'
#' @returns
#' @export
#'
#' @examples
#' \dontrun{
#' cor_demo_app()
#' }
cor_demo_app <- function() {
ui <- shiny::fluidPage(
shiny::sliderInput(
@ -152,4 +161,3 @@ cor_demo_app <- function() {
shiny::shinyApp(ui, server)
}
cor_demo_app()