--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to a topic in the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/shiny-discuss/AUBTRnSGx3c/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to shiny-discus...@googlegroups.com.
Hi Andrew,
I see your point. I made some change. But I met the same problem,evaluation nested too deeply: infinite recursion / options(expressions=)?.
I tried to use other's computer to run the same code, now there isn't the problem as you mentioned.
I still put my code here, https://gist.github.com/OliverBears/5373430
Can anyone help me out?
Best wishes,
Oliver
--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
Thank you Joe & Winston. Sorry for the late reply.
Now the program is working.
I changed the sentence
data[data$time >= start && data$time <= end,], to data[data$time >= start & data$time <= end,].
And I also converted the format of the data in the date frame.