dm_mrs_age: Star Definition for Mortality Reporting System by Age

dm_mrs_ageR Documentation

Star Definition for Mortality Reporting System by Age

Description

Definition of facts and dimensions for the Mortality Reporting System considering the age classification.

Usage

dm_mrs_age

Format

A dimensional_model object.

Examples

# Defined by:

dm_mrs_age <- dimensional_model() |>
  define_fact(
    name = "mrs_age",
    measures = c(
      "Deaths"
    ),
    agg_functions = c(
      "SUM"
    ),
    nrow_agg = "nrow_agg"
  ) |>
  define_dimension(
    name = "when",
    attributes = c(
      "Week Ending Date",
      "WEEK",
      "Year"
    )
  ) |>
  define_dimension(
    name = "when_available",
    attributes = c(
      "Data Availability Date",
      "Data Availability Week",
      "Data Availability Year"
    )
  ) |>
  define_dimension(
    name = "where",
    attributes = c(
      "REGION",
      "State",
      "City"
    )
  ) |>
  define_dimension(
    name = "who",
    attributes = c(
      "Age Range"
    )
  )


josesamos/starschemar documentation built on May 6, 2024, 5:57 a.m.