2
I have the following df with date in date and time format:
MATRICULA <- c('111','222','333','444','555')
DATA_INICIO <- c('17/03/2017 22:25','15/01/2019 20:01',
'10/12/2013 01:01','10/10/2018 14:22','22/04/2015 07:29')
DADOS <- data.frame(MATRICULA,DATA_INICIO)
How do I select only the Time and create a column with it?