Browse Source

En análisis, coger sólo las 11 primeras columnas.

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

+ 1
- 2
invivos/app.R

@ -354,7 +354,7 @@ server <- function(input, output) {
analysis$taula_vol<-NULL analysis$taula_vol<-NULL
observe({ observe({
if (!is.null(input$file_analy)){ if (!is.null(input$file_analy)){
table<-read.xlsx(input$file_analy$datapath, sheet = 1, check.names = F, sep.names = " ", detectDates = T)
table<-read.xlsx(input$file_analy$datapath, sheet = 1, check.names = F, sep.names = " ", detectDates = T,cols=1:11)
if("ID.animal" %in% colnames(table)){ if("ID.animal" %in% colnames(table)){
table<-table %>% table<-table %>%
rename(Animal=`ID.animal`, Side=`ID.tumor`) rename(Animal=`ID.animal`, Side=`ID.tumor`)
@ -367,7 +367,6 @@ server <- function(input, output) {
relocate(Side, .after = "Group") relocate(Side, .after = "Group")
table$DayPostInoc<-as.numeric(table$DayPostInoc) table$DayPostInoc<-as.numeric(table$DayPostInoc)
} }
table$Date<-format(table$Date, format="%d/%m/%Y") table$Date<-format(table$Date, format="%d/%m/%Y")
if ("sex" %in% colnames(table)){table<-select(table, -sex)} if ("sex" %in% colnames(table)){table<-select(table, -sex)}
for (i in 1:nrow(table)){ for (i in 1:nrow(table)){

Loading…
Cancel
Save