Skip to content

data-agnostic, shiny-idiomatic filter module

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.md
Notifications You must be signed in to change notification settings

dgkf/shinyDataFilter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0a653d4 · Dec 12, 2024

History

37 Commits
Dec 12, 2024
Nov 21, 2024
Jul 9, 2022
Jul 12, 2022
Jul 12, 2022
Jul 12, 2022
Jul 12, 2022
Jul 12, 2022
Jul 12, 2022
Jul 8, 2022
Jul 8, 2022
Jul 12, 2022
Jul 12, 2022
Dec 12, 2024
Jul 12, 2022

Repository files navigation

shinyDataFilter

CRAN R-CMD-check Codecov

data-agnostic, shiny-idiomatic filter module

shinyDataFilter

Built on top of Joe Cheng’s excellent R/Pharma 2018 shiny demo and experimenting with pushing his concept of hyper-modular shiny components as far as we could. In addition to what Joe showed off at the time, this shiny module comes with drag-and-drop reordering and overlayed visualizations of each filter variable’s data qualities.

Getting started

Installation

# install.packages("devtools")
devtools::install_github("dgkf/shinyDataFilter")

Example App

Then, run this sample app to build filters with shinyDataFilter:

library(shiny)
app <- system.file("examples", "basic_app", "app.R", package = "shinyDataFilter")
shinyAppFile(app)

If you’d like to inspect the code for the app

file.edit(app)  # or
file.show(app)