powered by
When using the MCOE 'SQL' tables, it will merge codebook descriptions from CDE
left_join_codebook(df, tablename, field)
An `tibble` of the same type as `.data`. The output has an one column names `definition` which contains labels for the passed argument `field`.
local dataframe you want to append labels to
which 'SQL' table is the data from
which field in the table do you want the labels for
try( sbac.filtered <- tbl(con, "CAASPP") |> head(100) |> collect() |> left_join_codebook("CAASPP", "Subgroup_ID") )
Run the code above in your browser using DataLab