Home > Software engineering >  How to update a dataframe in R Shiny with user input
How to update a dataframe in R Shiny with user input

Time:12-12

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 enter image description here

  • Related