I am writing an app that will asks the user to submit a numeric value via a slidebar, will then click a push button to continue, a plot is generated with that numeric value, call it y1, as a pont (1, y1) in an x,y plot. the app will then ask the user to do it again, he enters a new value, y2, and the new plot is of (1, y1) and (2, y2).
I would like to have access to the data the user inputted to analyze later. If I could some how get it so that the user input got stored globally such the Rscript could access it I could just have the data emailed to me via sendmailR. How do I get access to the user input? I also am having problems with the re-plotting after each time step. I've looked over all the tutorial material, but am still confused on these issues.
I am writing an app that will asks the user to submit a numeric value via a slidebar, will then click a push button to continue, a plot is generated with that numeric value, call it y1, as a pont (1, y1) in an x,y plot. the app will then ask the user to do it again, he enters a new value, y2, and the new plot is of (1, y1) and (2, y2).
I would like to have access to the data the user inputted to analyze later. If I could some how get it so that the user input got stored globally such the Rscript could access it I could just have the data emailed to me via sendmailR. How do I get access to the user input? I also am having problems with the re-plotting after each time step. I've looked over all the tutorial material, but am still confused on these issues.
--
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.
The answer to your last question is that you should use actionButton and isolate together. I'm answering this from my phone or I would dig up a link for you, but I wrote a more or less detailed answer about actionButton and isolate to another user on this list earlier today. If you can't find it, let me know.