VOOZH about

URL: https://www.geeksforgeeks.org/r-language/determine-the-month-on-a-specific-date-in-r-programming-months-function/

⇱ Determine the Month on a Specific Date in R Programming - months() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Determine the Month on a Specific Date in R Programming - months() Function

Last Updated : 15 Jul, 2025
months() function in R Language is used to determine the month on a specific date passed to it as argument.
Syntax: months(date, abbreviate) Parameters: date: Date to be checked abbreviate: Boolean value to abbreviate month
Example 1: Output:
[1] "2020-06-23 UTC"
[1] "June"
Example 2: Output:
[1] "1994-01-17 UTC"
[1] "Jan"
Comment
Article Tags:

Explore