This function leverages reactable to give a searchable table of fields. It's most useful in a Jupyter Notebook or RMarkdown/Quarto Document

explore_field_list(ds_id, path = ".")

Arguments

coding_data_dict
  • a coding/data dictionary created by merge_coding_data_dict or by build_data_dict()

Value

none - a reactable table will be created in the document, with a searchable window.

Examples

if(interactive()){
  data(coding_dict)
  data(cohort)
  data(data_dict)

  cdata <- merge_coding_data_dict(coding_dict, data_dict)

  explore_field_list(cdata)
}