Using shiny and ggplot2 I am trying to create a scatter plot that will go through the Time variable (starting from 00:00 and ending at 24:00) and plot X and Y when the time for that coordinate comes up. Which will create a frame by frame reference on how the points are moving around.
df: df example
ui.R - Slider Widget Input
sliderInput("time", "Time:", 00:00, 24:00, 00:00,
step = 00:01, animate=
animationOptions(interval=300, loop=TRUE))
In the widget I specified step = 00:01 so it should go through one minute intervals, however, it actually goes through 1 hour intervals.
I can't figure out the scatter plot section for the server side and how to get it to draw from the df that I have in the environment.