I have a dataset which I show the DT table for all data, I would like to get the data of selected rows, then plot figures for selected rows. right now I implemented code for one row, how can I consider a couple of rows?
I mean how can I get data of selected rows at the same time (more than one )
I wrote this line of code which gets only one row.
</>
selected_data = data.frame(c[input$fancyTable_rows_selected,])
</>
thanks in advance.