geyser: Shiny Module Demo

R & Python package demonstrating Shiny module patterns using Old Faithful geyser data

Shiny Geyser App with and without Modules

byandell.github.io/geyser

This repo demonstrates how to take the Faithful Geyser Shiny example and modularize it, either by putting ui() and server() as functions in a separate file from app.R or by using Shiny module technology.

This repo is organized as both an R package and a Python package. You can explore this repo online or clone the repo at https://github.com/byandell/geyser.

Quick Installation

R Package

# Install via pak
pak::pak("byandell/geyser")

Python Package

pip install --quiet git+https://github.com/byandell/geyser.git

Exploring the Repo