Browse Source

Corregir renderizado cutoff

master
marcelcosta 3 years ago
parent
commit
3c4dfdc9ee
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      invivos/app.R

+ 2
- 1
invivos/app.R

@ -243,7 +243,8 @@ server <- function(input, output) {
output$cutoffUI<-renderUI({
if (!is.null(analysis$taula_def)){
observeEvent(analysis$taula_def, {})
max_val<-max(analysis$taula_def$Volume)
print(analysis$taula_def)
max_val<-max(analysis$taula_def$Volume, na.rm = T)
sliderInput("cutoff", "Cutoff para Survival", min=0, max=round(max_val), step=round(max_val)/200, value=max_val)
}
})

Loading…
Cancel
Save