REDCapCAST/docs/search.json

2 lines
15 KiB
JSON
Raw Normal View History

2023-03-08 12:12:59 +01:00
[{"path":"/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Paul Egeler. Author. Andreas Gammelgaard Damsbo. Maintainer, contributor, copyright holder.","code":""},{"path":"/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Egeler P (2023). REDCapCAST: REDCap Castellated data handling. R package version 23.3.2, https://github.com/agdamsbo/REDCapRITS.","code":"@Manual{, title = {REDCapCAST: REDCap Castellated data handling}, author = {Paul Egeler}, year = {2023}, note = {R package version 23.3.2}, url = {https://github.com/agdamsbo/REDCapRITS}, }"},{"path":"/index.html","id":"redcapcast","dir":"","previous_headings":"","what":"REDCap Castellated data handling","title":"REDCap Castellated data handling","text":"REDCap Castellated data handling using repeated instruments. Modified fork SpectrumHealthResearch/REDCapRITS. fork purely minded R usage includes implementations main REDCap_split function. Fork REDCapRITS: REDCap Repeating Instrument Table Splitter","code":""},{"path":"/reference/REDCap_split.html","id":null,"dir":"Reference","previous_headings":"","what":"Split REDCap repeating instruments table into multiple tables — REDCap_split","title":"Split REDCap repeating instruments table into multiple tables — REDCap_split","text":"take output REDCap export split base table child tables repeating instrument. Metadata used determine fields included resultant table.","code":""},{"path":"/reference/REDCap_split.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Split REDCap repeating instruments table into multiple tables — REDCap_split","text":"","code":"REDCap_split( records, metadata, primary_table_name = \"\", forms = c(\"repeating\", \"all\") )"},{"path":"/reference/REDCap_split.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Split REDCap repeating instruments table into multiple tables — REDCap_split","text":"records Exported project records. May data.frame, response, character vector containing JSON API call. metadata Project metadata (data dictionary). May data.frame, response, character vector containing JSON API call. primary_table_name Name given list element primary output table (described README.md). Ignored forms = ''. forms Indicate whether create separate tables repeating instruments forms.","code":""},{"path":"/reference/REDCap_split.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Split REDCap repeating instruments table into multiple tables — REDCap_split","text":"list \"data.frame\"s. number tables differ depending forms option selected. 'repeating': one base table one tables repeating instrument. '': data.frame instrument, regardless whether repeating instrument .","code":""},{"path":"/reference/REDCap_split.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Split REDCap repeating instruments table into multiple tables — REDCap_split","text":"Paul W. Egeler, M.S., GStat","code":""},{"path":"/reference/REDCap_split.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Split REDCap repeating instruments table into multiple tables — REDCap_split","text":"","code":"if (FALSE) { # Using an API call ------------------------------------------------------- library(RCurl) # Get the records records <- postForm( uri = api_url, # Supply your site-specific URI token = api_token, # Supply your own API token content = 'record', format = 'json', returnFormat = 'json' ) # Get the metadata metadata <- postForm( uri = api_url, # Supply your site-specific URI token = api_token, # Supply your own API token content = 'metadata', format = 'json' ) # Convert exported JSON strings into a list of data.frames REDCapRITS::REDCap_split(records, metadata) # Using a raw data export ------------------------------------------------- # Get the r