elena1234

Date format

Apr 12th, 2022 (edited)
773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.39 KB | None | 0 0
  1. # Dates
  2. # %d Day of the month (decimal number)
  3. # %m Month (decimal number)
  4. # %b Month (abbreviated)
  5. # %B Month (full name)
  6. # %y Year (2 digits)
  7. # %Y Year (4 digits)
  8.  
  9. date <- "05-27-84"
  10. betterDate <- as.Date(date, format = "%m-%d-%y")
  11. betterDate
  12.  
  13. my.date <- "Май/03/2022"
  14. date.format <- as.Date(my.date, format = "%B/%d/%Y")
  15. date.format
  16.  
  17. strptime("11:02:03", format = "%H:%M:%S")
  18.  
Add Comment
Please, Sign In to add comment