months()
La función en R Language se usa para determinar el mes en una fecha específica que se le pasa como argumento.
Sintaxis: meses (fecha, abreviar)
Parámetros:
fecha: fecha a comprobar
abreviar: valor booleano para abreviar mes
Ejemplo 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)
Producción:
[1] "2020-06-23 UTC" [1] "June"
Ejemplo 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)
Producción:
[1] "1994-01-17 UTC" [1] "Jan"
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA