How to convert given dates from a column to day into another column

How to convert given dates from a column to day into another column

Does something like this help?

xx  <- as.Date("2023/06/28")  # create date
yy  <- weekdays(xx) # get day of the week

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.