modify_dimension_records: Apply dimension record update operations

View source: R/star_schema_modify_dimension_records.R

modify_dimension_recordsR Documentation

Apply dimension record update operations

Description

Given a list of dimension record update operations, they are applied on the dimensions of the star_schema object. Update operations must be defined with the set of functions available for that purpose.

Usage

modify_dimension_records(st, updates = record_update_set())

## S3 method for class 'star_schema'
modify_dimension_records(st, updates = record_update_set())

Arguments

st

A star_schema object.

updates

A record_update_set object.

Details

When dimensions are defined, records can be detected that must be modified as part of the data cleaning process: frequently to unify two or more records due to data errors or missing data. This is not immediate because facts must be adapted to the new set of dimension instances.

This operation allows us to unify records and automatically propagate modifications to facts.

The list of update operations can be applied repeatedly to new data received to be incorporated into the star_schema object.

Value

A star_schema object.

See Also

Other data cleaning functions: get_conformed_dimension_names(), get_conformed_dimension(), get_dimension_names(), get_dimension(), match_records(), modify_conformed_dimension_records(), record_update_set(), update_record(), update_selection_general(), update_selection()

Examples


st <- st_mrs_age |>
  modify_dimension_records(updates_st_mrs_age)


starschemar documentation built on Nov. 11, 2023, 5:09 p.m.