date | R Documentation |
This dataset provides a comprehensive date dimension table, including various calendar attributes such as year, quarter, month, and day-related information.
date
A data frame with multiple rows and 18 columns:
Date
. The actual calendar date.
integer
. Unique identifier for the date (often used in data warehouses).
integer
. The calendar year (e.g., 2024).
character
. Year and quarter combination (e.g., "2024-Q1").
integer
. Numeric representation of year and quarter (e.g., 202401 for Q1 of 2024).
integer
. The quarter of the year (1 to 4).
character
. Year and month combination (e.g., "2024-01").
character
. Abbreviated year and month (e.g., "Jan 2024").
integer
. Numeric representation of year and month (e.g., 202401 for January 2024).
character
. Full month name (e.g., "January").
character
. Abbreviated month name (e.g., "Jan").
integer
. Numeric representation of the month (1 to 12).
character
. Full name of the day of the week (e.g., "Monday").
character
. Abbreviated day of the week (e.g., "Mon").
integer
. Numeric representation of the day of the week (1 for Monday to 7 for Sunday).
logical
. Indicates if the date is a working day (TRUE/FALSE).
integer
. Sequential working day number within the year.
Generated from fpaR::date
## Not run:
data(date)
head(date)
summary(date)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.