Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

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

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:




# R program to find the month 
# on a specific date
  
# Specifying the date
date <- as.POSIXlt("2020-06-23")
date
  
# Calling months() function
months(date)

Output:

[1] "2020-06-23 UTC"
[1] "June"

Example 2:




# R program to find the month 
# on a specific date
  
# Specifying the date
date <- as.POSIXlt("1994-01-17")
date
  
# Calling months() function
months(date, abbreviate = TRUE)

Output:

[1] "1994-01-17 UTC"
[1] "Jan"
My Personal Notes arrow_drop_up
Last Updated : 24 Jun, 2020
Like Article
Save Article
Similar Reads