Learn R Programming

⚠️There's a newer version (1.10.0) of this package.Take me there.

shiny

Easily build rich and productive interactive web apps in R — no HTML/CSS/JavaScript required.

Features

  • An intuitive and extensible reactive programming model which makes it easy to transform existing R code into a "live app" where outputs automatically react to new user input.
    • Compared to event-based programming, reactivity allows Shiny to do the minimum amount of work when input(s) change, and allows humans to more easily reason about complex MVC logic.
  • A prebuilt set of highly sophisticated, customizable, and easy-to-use widgets (e.g., plots, tables, sliders, dropdowns, date pickers, and more).
  • An attractive default look based on Bootstrap which can also be easily customized with the bslib package or avoided entirely with more direct R bindings to HTML/CSS/JavaScript.
  • Seamless integration with R Markdown, making it easy to embed numerous applications natively within a larger dynamic document.
  • Tools for improving and monitoring performance, including native support for async programming, caching, load testing, and more.
  • Modules: a framework for reducing code duplication and complexity.
  • An ability to bookmark application state and/or generate code to reproduce output(s).
  • A rich ecosystem of extension packages for more custom widgets, input validation, unit testing, and more.

Installation

To install the stable version from CRAN:

install.packages("shiny")

Getting Started

Once installed, load the library and run an example:

library(shiny)
# Launches an app, with the app's source code included
runExample("06_tabsets")
# Lists more prepackaged examples
runExample()

For more examples and inspiration, check out the Shiny User Gallery.

For help with learning fundamental Shiny programming concepts, check out the Mastering Shiny book and the Shiny Tutorial. The former is currently more up-to-date with modern Shiny features, whereas the latter takes a deeper, more visual, dive into fundamental concepts.

Join the conversation

If you want to chat about Shiny, meet other developers, or help us decide what to work on next, join us on Discord.

Getting Help

To ask a question about Shiny, please use the RStudio Community website.

For bug reports, please use the issue tracker and also keep in mind that by writing a good bug report, you're more likely to get help with your problem.

Contributing

We welcome contributions to the shiny package. Please see our CONTRIBUTING.md file for detailed guidelines of how to contribute.

License

The shiny package as a whole is licensed under the GPLv3. See the LICENSE file for more details.

R version support

Shiny is supported on the latest release version of R, as well as the previous four minor release versions of R. For example, if the latest release R version is 4.1, then that version is supported, as well as 4.0, 3.6, 3.5, and 3.4.

Copy Link

Version

Install

install.packages('shiny')

Monthly Downloads

457,663

Version

1.8.1.1

License

GPL-3 | file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Winston Chang

Last Published

April 2nd, 2024

Functions in shiny (1.8.1.1)

actionButton

Action button/link
absolutePanel

Panel with absolute positioning
NS

Namespaced IDs for inputs/outputs
MockShinySession

Mock Shiny Session
bindEvent

Make an object respond only to specified reactive events
Progress

Reporting progress (object-oriented API)
bindCache

Add caching with reactivity to an object
callModule

Invoke a Shiny module
ExtendedTask

Task or computation that proceeds in the background
bookmarkButton

Create a button for bookmarking/sharing
applyInputHandlers

Apply input handlers to raw input values
brushOpts

Create an object representing brushing options
conditionalPanel

Conditional Panel
column

Create a column within a UI definition
bootstrapLib

Bootstrap libraries
bootstrapPage

Create a Bootstrap page
checkboxInput

Checkbox Input Control
brushedPoints

Find rows of data selected on an interactive plot.
clickOpts

Control interactive plot point events
checkboxGroupInput

Checkbox Group Input Control
createRenderFunction

Implement custom render functions
createWebDependency

Create a web dependency
downloadButton

Create a download button or link
domains

Reactive domains
diskCache

Create disk cache (deprecated)
downloadHandler

File Downloads
debounce

Slow down a reactive expression with debounce/throttle
devmode

Shiny Developer Mode
fluidPage

Create a page with fluid layout
freezeReactiveVal

Freeze a reactive value
enableBookmarking

Enable bookmarking for a Shiny application
exportTestValues

Register expressions for export in test mode
dateInput

Create date input
dateRangeInput

Create date range input
fillPage

Create a page that fills the window
fillRow

Flex Box-based row/column layouts
fileInput

File Upload Control
exprToFunction

Convert an expression to a function
flowLayout

Flow layout
htmlOutput

Create an HTML output element
getCurrentTheme

Obtain Shiny's Bootstrap Sass theme
getQueryString

Get the query string / hash component from the URL
helpText

Create a help text element
fixedPage

Create a page with a fixed layout
getCurrentOutputInfo

Get output information
headerPanel

Create a header panel
is.reactivevalues

Checks whether an object is a reactivevalues object
inputPanel

Input panel
isTruthy

Truthy and falsy values
httpResponse

Create an HTTP response object
isolate

Create a non-reactive scope for an expression
insertUI

Insert and remove UI objects
invalidateLater

Scheduled Invalidation
icon

Create an icon
isRunning

Check whether a Shiny application is running
maskReactiveContext

Evaluate an expression without a reactive context
memoryCache

Create memory cache (deprecated)
markRenderFunction

Mark a function as a render function
markdown

Insert inline Markdown
makeReactiveBinding

Make a reactive variable
moduleServer

Shiny modules
modalDialog

Create a modal dialog UI
navlistPanel

Create a navigation list panel
markOutputAttrs

Mark a render function with attributes that will be used by the output
knitr_methods

Knitr S3 methods
navbarPage

Create a page with a top level navigation bar
loadSupport

Load an app's supporting R files
insertTab

Dynamically insert/remove a tabPanel
onFlush

Add callbacks for Shiny session events
onStop

Run code after an application or session ends
plotOutput

Create an plot or image output element
observe

Create a reactive observer
plotPNG

Capture a plot as a PNG file.
numericInput

Create a numeric input control
outputOptions

Set options for an output object.
parseQueryString

Parse a GET query string from a URL
pageWithSidebar

Create a page with a sidebar
reactiveVal

Create a (single) reactive value
reactiveValues

Create an object for storing reactive values
observeEvent

Event handler
reactiveFileReader

Reactive file reader
reactiveConsole

Activate reactivity in the console
reactiveTimer

Timer
reactivePoll

Reactive polling
radioButtons

Create radio buttons
reactive

Create a reactive expression
reactiveValuesToList

Convert a reactivevalues object to a list
reactlog

Reactive Log Visualizer
passwordInput

Create a password input control
registerInputHandler

Register an Input Handler
onBookmark

Add callbacks for Shiny session bookmarking events
reexports

Objects exported from other packages
renderPlot

Plot Output
renderCachedPlot

Plot output with cached images
renderImage

Image file output
dataTableOutput

Table output with the JavaScript DataTables library
renderPrint

Text Output
removeInputHandler

Deregister an Input Handler
renderUI

UI Output
tableOutput

Table Output
req

Check for required values
registerThemeDependency

Register a theme dependency
restoreInput

Restore an input value
repeatable

Make a random number generator repeatable
runApp

Run Shiny Application
addResourcePath

Resource Publishing
runGadget

Run a gadget
runExample

Run Shiny Example Applications
safeError

Declare an error safe for the user to see
selectInput

Create a select list input control
serverInfo

Collect information about the Shiny Server environment
runTests

Runs the tests associated with this Shiny app
session

Session object
runUrl

Run a Shiny application from a URL
shiny-package

Web Application Framework for R
shiny.appobj

Shiny App object
shinyAppTemplate

Generate a Shiny application from a template
shinyApp

Create a Shiny app object
showModal

Show or remove a modal dialog
sidebarLayout

Layout a sidebar and main area
showBookmarkUrlModal

Display a modal dialog for bookmarking
sizeGrowthRatio

Create a sizing function that grows at a given ratio
showTab

Dynamically hide/show a tabPanel
showNotification

Show or remove a notification
setBookmarkExclude

Exclude inputs from bookmarking
shinyServer

Define Server Functionality
shinyUI

Create a Shiny UI handler
tabsetPanel

Create a tabset panel
tabPanel

Create a tab panel
setSerializer

Add a function for serializing an input before bookmarking application state
stopApp

Stop the currently running Shiny app
submitButton

Create a submit button
splitLayout

Split layout
stacktrace

Stack trace manipulation functions
updateCheckboxInput

Change the value of a checkbox input on the client
updateCheckboxGroupInput

Change the value of a checkbox group input on the client
updateDateRangeInput

Change the start and end values of a date range input on the client
updateDateInput

Change the value of a date input on the client
textInput

Create a text input control
textOutput

Create a text output element
snapshotPreprocessOutput

Add a function for preprocessing an output before taking a test snapshot
updateActionButton

Change the label or icon of an action button on the client
titlePanel

Create a panel containing an application title.
snapshotPreprocessInput

Add a function for preprocessing an input before taking a test snapshot
validate

Validate input values and other conditions
urlModal

Generate a modal dialog that displays a URL
updateTextAreaInput

Change the value of a textarea input on the client
updateTextInput

Change the value of a text input on the client
updateNumericInput

Change the value of a number input on the client
updateQueryString

Update URL in browser's location bar
withMathJax

Load the MathJax library and typeset math expressions
withProgress

Reporting progress (functional API)
snapshotExclude

Mark an output to be excluded from test snapshots
testServer

Reactive testing for Shiny server functions and modules
getShinyOption

Get or set Shiny options
sliderInput

Slider Input Widget
shinyDeprecated

Print message for deprecated functions in Shiny
updateSelectInput

Change the value of a select input on the client
verticalLayout

Lay out UI elements vertically
varSelectInput

Select variables from a data frame
updateRadioButtons

Change the value of a radio input on the client
updateTabsetPanel

Change the selected tab on the client
textAreaInput

Create a textarea input control
updateSliderInput

Update Slider Input Widget
viewer

Viewer options
wellPanel

Create a well panel