library(REDCapR)
uri<-"https://redcap-dev-2.ouhsc.edu/redcap/api/"
token<-"9A068C425B1341D69E83064A2D273A70"
dummy_data<-redcap_read_oneshot(redcap_uri=uri, token=token)$data
#testing create_batch_glossary function
#breaks 5 rows into two batches of 2 and one of 1
create_batch_glossary(nrow(dummy_data), batch_size=2)
#creates one batch of 5, as we do not have enough rows to spill over to new batch
create_batch_glossary(nrow(dummy_data), batch_size=6)
#divides five rows into five batches of one row each.
# I would be verys surprised if this turned out to be helpful to anyone.
create_batch_glossary(nrow(dummy_data), batch_size=1)
#returns an error message.
create_batch_glossary(nrow(dummy_data), batch_size=0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.