Browse Source

Corregir problema con estadística.

master
Costa 3 years ago
parent
commit
b9d77ac3f2
1 changed files with 2 additions and 11 deletions
  1. +2
    -11
      app.R

+ 2
- 11
app.R

@ -132,7 +132,7 @@ server <- function(input, output) {
dades$maps<<-t_maps dades$maps<<-t_maps
} }
if (length(unique(dades$taula %>% pull(Groups))) < 2){ if (length(unique(dades$taula %>% pull(Groups))) < 2){
dades$stats<<-1
dades$stats<<-null
} }
c(ctrl, mock)[c(ctrl, mock) %in% colnames(t_substr)] c(ctrl, mock)[c(ctrl, mock) %in% colnames(t_substr)]
@ -183,22 +183,13 @@ server <- function(input, output) {
observeEvent(dades$stats, {}) observeEvent(dades$stats, {})
t_stats<-dades$stats t_stats<-dades$stats
if (!is.null(dades$stats)){ if (!is.null(dades$stats)){
if (t_stats == 1){
validate(
need(t_stats == 1, "Con un sólo grupo no se puede hacer estadística")
)
}else{
return(
t_stats %>% t_stats %>%
flextable() %>% flextable() %>%
theme_vanilla() %>% theme_vanilla() %>%
fontsize(size=14, part="all") %>% fontsize(size=14, part="all") %>%
padding(padding=10, part="all") %>% padding(padding=10, part="all") %>%
color(~ p.adj < 0.05, color = "red")%>% color(~ p.adj < 0.05, color = "red")%>%
autofit()
) %>%
htmltools_value()
}
autofit() %>% htmltools_value()
} }
}) })

Loading…
Cancel
Save