from_yaml {deident} | R Documentation |
Restore a serialized deident from file
Description
Restore a serialized deident from file
Usage
from_yaml(path)
Arguments
path |
Path to serialized deident. |
Examples
deident <- deident(ShiftsWorked, Pseudonymizer, Employee)
.tempfile <- tempfile(fileext = ".yml")
deident$to_yaml(.tempfile)
deident.yaml <- from_yaml(.tempfile)
deident.yaml$mutate(ShiftsWorked)
[Package deident version 1.0.0 Index]