Skip to content

Commit

Permalink
updated download cluster on demo page
Browse files Browse the repository at this point in the history
  • Loading branch information
Hailey-Z committed Mar 14, 2023
1 parent cb9772f commit 1d3de70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server.R
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,9 @@ imputed_data_dm<-reactive({
individual_cluster_dm <- reactive({
cluster_number <- input$cluster_number_dm
cluster_all <- heatmap_input_dm()[[2]]
data_result_dm()[cluster_all[[cluster_number]],]
single_cluster <- cluster_all[names(cluster_all)==cluster_number] %>% unlist()
# data_result_dm()[cluster_all[[cluster_number]],]
data_result_dm()[single_cluster,]
})


Expand Down

0 comments on commit 1d3de70

Please sign in to comment.