Skip to contents

Updates an object's footnote metadata - equations, notes, or abbreviations

Usage

update_object_footnotes(
  file_path,
  overwrite = FALSE,
  equations = NULL,
  notes = NULL,
  abbrevs = NULL
)

Arguments

file_path

Path to object or object's metadata file

overwrite

Boolean to overwrite existing entries or append. Default is to append

equations

String or vector of strings of equations to add

notes

String or vector of strings of notes to add

abbrevs

String or vector of strings of abbreviations to add

Examples

if (FALSE) { # \dontrun{
update_object_footnotes("example_metadata.json", equations = c("K10 = CL/VC", "K12 = Q/VC"))
} # }