Skip to content

Commit

Permalink
descending order by percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
edward-burn committed Dec 4, 2024
1 parent 20fca6f commit 9c7c46c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inst/shiny/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,8 @@ server <- function(input, output, session) {
})
output$summarise_large_scale_characteristics_tidy <- DT::renderDT({
DT::datatable(
getTidyDataSummariseLargeScaleCharacteristics(),
getTidyDataSummariseLargeScaleCharacteristics() |>
dplyr::arrange(dplyr::desc(percentage)),
options = list(scrollX = TRUE),
rownames = FALSE
)
Expand Down

0 comments on commit 9c7c46c

Please sign in to comment.