Browse Source

Corrección en el gráfico individual, dónde aparecían agrupados los dos laterales cuando no es exp de vacunación.

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

+ 1
- 1
invivos/app.R

@ -410,7 +410,7 @@ server <- function(input, output) {
labs(x="Days after tumor challenge")+ labs(x="Days after tumor challenge")+
theme_bw() theme_bw()
}else{ }else{
ggplot(table, aes(Timepoint, Volume, color=Group, group=`ID animal`))+
ggplot(table, aes(Timepoint, Volume, color=Group, group=paste0(`ID animal`, `ID tumor`)))+
# geom_errorbar(stat="summary", width=0.05)+ # geom_errorbar(stat="summary", width=0.05)+
geom_line()+ geom_line()+
geom_point()+ geom_point()+

Loading…
Cancel
Save