Answers for "how to return the date with only the day in it in r"

R
0

how to return the date with only the day in it in r

format(as.Date(df$x,format="%Y-%m-%d"), format = "%d")

# or

format(df_meas$Time, format= %d")
# where df_meas$Time is of as.POSIXlt class
Posted by: Guest on November-17-2020

Code answers related to "how to return the date with only the day in it in r"

Browse Popular Code Answers by Language