Split dataframe into two on the basis of date in R code example
Example: r split date and time into two columns
df$Date <- as.Date(df$Start)
df$Time <- format(df$Start,"%H:%M:%S")
df$Date <- as.Date(df$Start)
df$Time <- format(df$Start,"%H:%M:%S")