This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################ | |
# Packages Required | |
# Pkg.add("DifferentialEquations") | |
# Pkg.add("DataFrames") | |
# Pkg.add("Dierckx") | |
# Pkg.add("Plots") | |
# From: Christopher Rackauckas | |
# If the problem was stiff, I think the best option right now is the algorithm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unlockREDCap(c(test_conn = 'TestRedcapAPI', | |
sandbox_conn = 'SandboxAPI'), | |
keyring = 'MyKeyring', | |
envir = globalenv(), | |
url = 'https://<REDCAP_URL>/api/') | |
# After user interaction to unlock the local encrypted keyring | |
# the global environment will contain the REDCap connections | |
# `test_conn` and `sandbox_conn` | |
# |