Skip to contents

From the planned update, it obtains the function with the source code of the transformations performed on the original data in string vector format.

Usage

get_transformation_code(sdbu)

# S3 method for star_database_update
get_transformation_code(sdbu)

Arguments

sdbu

A star_database_update object.

Value

A vector of strings.

Examples


f1 <- flat_table('ft_num', ft_cause_rpd) |>
  as_star_database(mrs_cause_schema_rpd) |>
  replace_attribute_values(
    name = "When Available",
    old = c('1962', '11', '1962-03-14'),
    new = c('1962', '3', '1962-01-15')
  ) |>
  group_dimension_instances(name = "When")
f2 <- flat_table('ft_num2', ft_cause_rpd) |>
  update_according_to(f1)
code <- f2 |>
  get_transformation_code()