this is my dataframe:
df<-structure(list(InstrumentSymbol = c("AALR3", "AALR3", "AALR3",
"AALR3"), SessionDate = structure(c(18072, 18072, 18072, 18072
), class = "Date"), TradeDateTime = structure(c(1561467600, 1561467900,
1561468200, 1561468500), class = c("POSIXct", "POSIXt"), tzone = "America/Sao_Paulo"),
n.trades = c(16L, 7L, 16L, 8L)), row.names = c(NA, 4L), class = "data.frame")
As you can see column 3 has the date and the time date together. How can I simply split this two variables in two columns? The third column should be a date and the fourth time date.
Any help?