I have commented out the code for rendering plots in the server function call.
I replaced it with a dummy plot "hist(runif(500, 1, 99))". The Shiny app now displays a plot
Now you just need to patch my dummy plot with whatever plot you want it to show. I would recommend holding off on using the input part until you get the gannt chart showing (just hardcode). And then apply a second patch to show the selected input.
I have commented out the code for rendering plots in the server function call.
I replaced it with a dummy plot "
hist(runif(500, 1, 99))
". The Shiny app now displays a plotNow you just need to patch my dummy plot with whatever plot you want it to show. I would recommend holding off on using the input part until you get the gannt chart showing (just hardcode). And then apply a second patch to show the selected input.