Browse Source

Corregir lectura de fechas en excel.

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

+ 2
- 1
invivos/app.R

@ -347,7 +347,8 @@ server <- function(input, output) {
analysis$taula_vol<-NULL
observe({
if (!is.null(input$file_analy)){
table<-read.xlsx(input$file_analy$datapath, sheet = 1, check.names = F, sep.names = " ")
table<-read.xlsx(input$file_analy$datapath, sheet = 1, check.names = F, sep.names = " ", detectDates = T)
table$Date<-format(table$Date, format="%d/%m/%Y")
if ("sex" %in% colnames(table)){table<-select(table, -sex)}
table$Long<-gsub(",",".", table$Long)
table$Wide<-gsub(",",".", table$Wide)

Loading…
Cancel
Save