I am new to shiny but was wondering if there is any way to store a filtered datatable (using the column filters) in a R object so that this filtered data can be passed to histogram and plot functions.
EDIT May 7, 15: Including the author's expanded explanation from comments
I want the table to get filtered using the built-in column filters and then want the plot to automatically adjust. I've already tried the DT package but I don't like very much of the column filters that come with this package as it is not possible (I think) to remove the filters from a subset of the columns in the table
selectInputwidget) and then your plot automatically adjusts? - Colonel BeauvelDTpackage, to render your DataTableinput$table_rows_allholds the indices of the filtered rows. There is an example here - NicE