From ffc930ce5f8572fad07d4e06775dbc01f94f1be4 Mon Sep 17 00:00:00 2001 From: Costa <47926492N@ICO.SCS.local> Date: Thu, 24 Feb 2022 14:23:39 +0100 Subject: [PATCH] =?UTF-8?q?Correcci=C3=B3n=20en=20el=20gr=C3=A1fico=20indi?= =?UTF-8?q?vidual,=20d=C3=B3nde=20aparec=C3=ADan=20agrupados=20los=20dos?= =?UTF-8?q?=20laterales=20cuando=20no=20es=20exp=20de=20vacunaci=C3=B3n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- invivos/app.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invivos/app.R b/invivos/app.R index a3bd72e..aae2bce 100755 --- a/invivos/app.R +++ b/invivos/app.R @@ -410,7 +410,7 @@ server <- function(input, output) { labs(x="Days after tumor challenge")+ theme_bw() }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_line()+ geom_point()+