Created
October 24, 2020 16:23
-
-
Save addiversitas/644db150966b02a6b41446a2c30b3a30 to your computer and use it in GitHub Desktop.
slider input animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sliderInput("dateSel", "Date", | |
min = min(covidData$Date_reported), | |
max = max(covidData$Date_reported), | |
value = min(covidData$Date_reported), | |
step = 1, | |
timeFormat = "%d %b %y", | |
animate = animationOptions(interval = 500, loop = FALSE) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment