Skip to contents

Reads the change log file and applies all recorded changes to the provided data frame. Automatically converts values to the appropriate data types based on the target column.

Usage

apply_change_log(data)

Arguments

data

A data frame containing the master data

Value

A data frame with all changes from the change log applied

Examples

if (FALSE) { # \dontrun{
data <- data.frame(embrace_id = c("001", "002"), value = c(10, 20))
updated_data <- apply_change_log(data)
} # }