Browse Source

Corrección firstoper en sección survival.

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

+ 2
- 2
invivos/app.R

@ -645,9 +645,9 @@ server <- function(input, output) {
}else{
firstoper<- filter(table, !is.na(substr(Observations,1,1)) & substr(Observations,1,1) == "*") %>%
pull(DayPostInoc) %>% min(na.rm = T)
print(firstoper)
if (firstoper == Inf){firstoper<-c()}
if (input$operated == TRUE & nrow(firstoper) > 0){
if (input$operated == TRUE & length(firstoper) > 0){
table<-table %>% filter(DayPostInoc < firstoper)
}else{
deadmice<-filter(table, !is.na(substr(Observations,1,1)) & substr(Observations,1,1) == "+") %>%

Loading…
Cancel
Save