Skip to content

Instantly share code, notes, and snippets.

View MarijaStanojcic's full-sized avatar

Marija Stanojcic MarijaStanojcic

View GitHub Profile
@jeroen
jeroen / magickshiny.R
Last active November 8, 2024 19:54
Magick shiny demo
# Minimal example of Shiny widget using 'magick' images
ui <- fluidPage(
titlePanel("Magick Shiny Demo"),
sidebarLayout(
sidebarPanel(
fileInput("upload", "Upload new image", accept = c('image/png', 'image/jpeg')),
textInput("size", "Size", value = "500x500"),
@wch
wch / app.r
Last active February 2, 2025 16:41
Shiny example app with dynamic number of plots
max_plots <- 5
ui <- fluidPage(
headerPanel("Dynamic number of plots"),
sidebarPanel(
sliderInput("n", "Number of plots", value=1, min=1, max=5)
),