... I am building a Shiny app from a dataset with large observations. When I set "paging = F" in the renderDT argument, both my RStudio and Shiny crashes/freezes. Once I remove "paging = F", it stops freezing. What do I do? Below is my snippet.
My guess is species_data has an extremely large number of rows, so when "paging=F" is specified, the browser tries to render all the rows and crashes. I 've encountered this problem in apps I've created and handled it by adding one or more filters that will limit the number of rows to be returned. In essence, I set the filter defaults to the "most common" view for users, and then they can change the filters as they desire.