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,])
</>
Hi,
Are you able to select two or more rows (in the opposite case, you have changed the default selection = "multiple" )?
In any case, you should be able to get the data of the selected rows this way