I want to update a dataframe with user input in an R Shiny app. The user selects a row of data, and then chooses the value to update the Species column with using selectInput
. The updates need to accumulate each time, i.e., the new updates update the previously updated data. I tried using reactiveValues
as per this