├── .Rprofile ├── .cache └── .gitignore ├── .gitattributes ├── .gitignore ├── DDWizard.Rproj ├── Makefile ├── NEWS.md ├── README.md ├── _docs ├── app_structure.Rmd ├── app_structure.html ├── ddnotes.Rmd ├── ddnotes.html ├── modules.png ├── modules.svg └── test_checklist.md ├── app.R ├── common.R ├── conf.R ├── inspect_helpers.R ├── inspect_plot_template.txt ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf ├── tab_design.R ├── tab_inspect.R ├── tests ├── startup-expected │ ├── 001.json │ └── 001.png └── startup.R ├── tests_RUnit ├── .cache │ └── .gitignore ├── runit_common.R ├── runit_designers.R └── runit_inspect_helpers.R ├── uihelpers.R └── www ├── brand.png ├── custom.css ├── custom.js ├── data_protection_policy.html ├── get_started.html └── legal_notice.html /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/.cache/.gitignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | _docs/*.html linguist-generated=true 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/.gitignore -------------------------------------------------------------------------------- /DDWizard.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/DDWizard.Rproj -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/README.md -------------------------------------------------------------------------------- /_docs/app_structure.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/app_structure.Rmd -------------------------------------------------------------------------------- /_docs/app_structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/app_structure.html -------------------------------------------------------------------------------- /_docs/ddnotes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/ddnotes.Rmd -------------------------------------------------------------------------------- /_docs/ddnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/ddnotes.html -------------------------------------------------------------------------------- /_docs/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/modules.png -------------------------------------------------------------------------------- /_docs/modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/modules.svg -------------------------------------------------------------------------------- /_docs/test_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/_docs/test_checklist.md -------------------------------------------------------------------------------- /app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/app.R -------------------------------------------------------------------------------- /common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/common.R -------------------------------------------------------------------------------- /conf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/conf.R -------------------------------------------------------------------------------- /inspect_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/inspect_helpers.R -------------------------------------------------------------------------------- /inspect_plot_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/inspect_plot_template.txt -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- 1 | library/ 2 | python/ 3 | staging/ 4 | -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /tab_design.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tab_design.R -------------------------------------------------------------------------------- /tab_inspect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tab_inspect.R -------------------------------------------------------------------------------- /tests/startup-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests/startup-expected/001.json -------------------------------------------------------------------------------- /tests/startup-expected/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests/startup-expected/001.png -------------------------------------------------------------------------------- /tests/startup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests/startup.R -------------------------------------------------------------------------------- /tests_RUnit/.cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests_RUnit/.cache/.gitignore -------------------------------------------------------------------------------- /tests_RUnit/runit_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests_RUnit/runit_common.R -------------------------------------------------------------------------------- /tests_RUnit/runit_designers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests_RUnit/runit_designers.R -------------------------------------------------------------------------------- /tests_RUnit/runit_inspect_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/tests_RUnit/runit_inspect_helpers.R -------------------------------------------------------------------------------- /uihelpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/uihelpers.R -------------------------------------------------------------------------------- /www/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/www/brand.png -------------------------------------------------------------------------------- /www/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/www/custom.css -------------------------------------------------------------------------------- /www/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/www/custom.js -------------------------------------------------------------------------------- /www/data_protection_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/www/data_protection_policy.html -------------------------------------------------------------------------------- /www/get_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/www/get_started.html -------------------------------------------------------------------------------- /www/legal_notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeclareDesign/DDWizard/HEAD/www/legal_notice.html --------------------------------------------------------------------------------