This dataset, pharmacy_tbl_df, is a tibble containing hourly client attendance data in a pharmacy located in Geneva, Switzerland. The dataset spans two years, recording the number of clients per hour alongside the date and weekday.
data(pharmacy_tbl_df)A tibble with 17,520 observations and 4 variables:
Date variable indicating the calendar date
Character variable representing the hour of observation
Character variable representing the day of the week
Numeric variable indicating the number of clients observed
The dataset name has been kept as 'pharmacy_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the MedxR package and assists users in identifying its specific characteristics. The suffix 'tbl_df' indicates that the dataset is a tibble. The original content has not been modified in any way.