enrich_dimension_export: Export selected attributes of a dimension

View source: R/star_schema_enrich_dimension.R

enrich_dimension_exportR Documentation

Export selected attributes of a dimension

Description

Export the selected attributes of a dimension, without repeated combinations, to enrich the dimension.

Usage

enrich_dimension_export(st, name = NULL, attributes = NULL)

## S3 method for class 'star_schema'
enrich_dimension_export(st, name = NULL, attributes = NULL)

Arguments

st

A star_schema object.

name

A string, name of the dimension.

attributes

A vector of attribute names.

Details

If it is a role dimension they cannot be exported, you have to work with the associated role playing dimension.

Value

A tibble object.

See Also

Other dimension enrichment functions: enrich_dimension_import_test(), enrich_dimension_import()

Examples


tb <-
  enrich_dimension_export(st_mrs_age,
                          name = "when_common",
                          attributes = c("week", "year"))


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