Extract data tibbles from a REDCapTidieR supertibble and bind them to an environment
Source:R/bind_tibbles.R
bind_tibbles.Rd
Take a supertibble generated with read_redcap()
and bind its data tibbles (i.e. the tibbles in the redcap_data
column) to
an environment. The default is the global environment.
Arguments
- supertbl
A supertibble generated by
read_redcap()
. Required.- environment
The environment to bind the tibbles to. Default is
rlang::global_env()
.- tbls
A vector of the
redcap_form_name
s of the data tibbles to bind to the environment. Default isNULL
which binds all data tibbles.