Problem:
I have an R-Shiny dashboard where I have a table inputted. It shows the observation/row number for all elements, and I would like to remove that because it is distracting. Any ideas?
I have an R-Shiny dashboard where I have a table inputted. It shows the observation/row number for all elements, and I would like to remove that because it is distracting. Any ideas?
The renderTable page says that rownames
is an optional logical variable, so adding rownames = TRUE
to your renderTable
function should be sufficient