R/project.R
explore_field_list.Rd
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 = ".")
a coding/data dictionary created by merge_coding_data_dict or by build_data_dict()
none - a reactable table will be created in the document, with a searchable window.
if(interactive()){
data(coding_dict)
data(cohort)
data(data_dict)
cdata <- merge_coding_data_dict(coding_dict, data_dict)
explore_field_list(cdata)
}