I have imported data from an excel worksheet. one column has dates/periods in mm/dd/yy format.
I have multiple worksheets. So I used lst = readWorksheet(wb, sheet = getSheets(wb))
to import the worksheets and a list is created.
I then converted the first worksheet into a dataframe
klrm=as.data.frame(lst$Arst)
But the first column which is the date column comes up as date and has 00:00:00 attached with it.
I checked this variable and it was a character variable.
Could someone help me remove those 00:00:00 ?