├── .github └── workflows │ ├── cla.yaml │ ├── deploy.yml │ └── docs.yaml ├── .gitignore ├── .lintr ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── RNA-seq ├── .Rprofile ├── README.md ├── RNA-seq.Rproj ├── app.R ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── _internal ├── quarto │ ├── .gitignore │ ├── _quarto.yml │ ├── assets │ │ ├── img │ │ │ ├── RNA-seq.gif │ │ │ ├── RNA-seq.png │ │ │ ├── basic-teal.gif │ │ │ ├── basic-teal.png │ │ │ ├── custom-transform.gif │ │ │ ├── custom-transform.png │ │ │ ├── delayed-data.gif │ │ │ ├── delayed-data.png │ │ │ ├── early-dev.gif │ │ │ ├── early-dev.png │ │ │ ├── efficacy.gif │ │ │ ├── efficacy.png │ │ │ ├── exploratory.gif │ │ │ ├── exploratory.png │ │ │ ├── longitudinal.gif │ │ │ ├── longitudinal.png │ │ │ ├── patient-profile.gif │ │ │ ├── patient-profile.png │ │ │ ├── python.gif │ │ │ ├── python.png │ │ │ ├── safety.gif │ │ │ ├── safety.png │ │ │ ├── teal-as-shiny-module.gif │ │ │ └── teal-as-shiny-module.png │ │ ├── style.scss │ │ └── www │ │ │ ├── logo-nest.png │ │ │ ├── missing.png │ │ │ └── teal.gallery.png │ ├── demo-apps.yml │ ├── demo-template.ejs │ ├── demo.qmd │ └── index.qmd └── utils │ ├── app_readme_template.Rmd │ ├── generate_app_readme.R │ └── sourceme.R ├── basic-teal ├── .Rprofile ├── README.md ├── app.R ├── basic-teal.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── custom-transform ├── .Rprofile ├── README.md ├── app.R ├── delayed-data.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── cypress.config.js │ ├── cypress │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── delayed-data ├── .Rprofile ├── README.md ├── app.R ├── custom-transform.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── cypress.config.js │ ├── cypress │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── early-dev ├── .Rprofile ├── README.md ├── app.R ├── early-dev.Rproj ├── renv.lock └── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json ├── efficacy ├── .Rprofile ├── README.md ├── app.R ├── efficacy.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── exploratory ├── .Rprofile ├── README.md ├── app.R ├── exploratory.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── longitudinal ├── .Rprofile ├── README.md ├── app.R ├── longitudinal.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── patient-profile ├── .Rprofile ├── README.md ├── app.R ├── patient-profile.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json ├── python ├── .Rprofile ├── README.md ├── app.R ├── python.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json └── requirements.txt ├── safety ├── .Rprofile ├── README.md ├── app.R ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.json ├── safety.Rproj └── tests │ ├── .gitignore │ ├── cypress.config.js │ ├── cypress │ ├── .gitignore │ ├── e2e │ │ └── app.cy.js │ └── support │ │ └── commands.js │ ├── package-lock.json │ └── package.json └── teal-as-shiny-module ├── .Rprofile ├── README.md ├── app.R ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.json └── teal-as-shiny-module.Rproj /.github/workflows/cla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/.github/workflows/cla.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/.lintr -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/README.md -------------------------------------------------------------------------------- /RNA-seq/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /RNA-seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/README.md -------------------------------------------------------------------------------- /RNA-seq/RNA-seq.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/RNA-seq.Rproj -------------------------------------------------------------------------------- /RNA-seq/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/app.R -------------------------------------------------------------------------------- /RNA-seq/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/renv.lock -------------------------------------------------------------------------------- /RNA-seq/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/renv/.gitignore -------------------------------------------------------------------------------- /RNA-seq/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/renv/activate.R -------------------------------------------------------------------------------- /RNA-seq/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/renv/settings.json -------------------------------------------------------------------------------- /RNA-seq/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /RNA-seq/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/tests/cypress.config.js -------------------------------------------------------------------------------- /RNA-seq/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /RNA-seq/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /RNA-seq/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /RNA-seq/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/tests/package-lock.json -------------------------------------------------------------------------------- /RNA-seq/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/RNA-seq/tests/package.json -------------------------------------------------------------------------------- /_internal/quarto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/.gitignore -------------------------------------------------------------------------------- /_internal/quarto/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/_quarto.yml -------------------------------------------------------------------------------- /_internal/quarto/assets/img/RNA-seq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/RNA-seq.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/RNA-seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/RNA-seq.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/basic-teal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/basic-teal.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/basic-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/basic-teal.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/custom-transform.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/custom-transform.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/custom-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/custom-transform.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/delayed-data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/delayed-data.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/delayed-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/delayed-data.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/early-dev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/early-dev.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/early-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/early-dev.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/efficacy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/efficacy.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/efficacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/efficacy.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/exploratory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/exploratory.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/exploratory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/exploratory.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/longitudinal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/longitudinal.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/longitudinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/longitudinal.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/patient-profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/patient-profile.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/patient-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/patient-profile.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/python.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/python.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/safety.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/safety.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/safety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/safety.png -------------------------------------------------------------------------------- /_internal/quarto/assets/img/teal-as-shiny-module.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/teal-as-shiny-module.gif -------------------------------------------------------------------------------- /_internal/quarto/assets/img/teal-as-shiny-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/img/teal-as-shiny-module.png -------------------------------------------------------------------------------- /_internal/quarto/assets/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/style.scss -------------------------------------------------------------------------------- /_internal/quarto/assets/www/logo-nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/www/logo-nest.png -------------------------------------------------------------------------------- /_internal/quarto/assets/www/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/www/missing.png -------------------------------------------------------------------------------- /_internal/quarto/assets/www/teal.gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/assets/www/teal.gallery.png -------------------------------------------------------------------------------- /_internal/quarto/demo-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/demo-apps.yml -------------------------------------------------------------------------------- /_internal/quarto/demo-template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/demo-template.ejs -------------------------------------------------------------------------------- /_internal/quarto/demo.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/demo.qmd -------------------------------------------------------------------------------- /_internal/quarto/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/quarto/index.qmd -------------------------------------------------------------------------------- /_internal/utils/app_readme_template.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/utils/app_readme_template.Rmd -------------------------------------------------------------------------------- /_internal/utils/generate_app_readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/utils/generate_app_readme.R -------------------------------------------------------------------------------- /_internal/utils/sourceme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/_internal/utils/sourceme.R -------------------------------------------------------------------------------- /basic-teal/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /basic-teal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/README.md -------------------------------------------------------------------------------- /basic-teal/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/app.R -------------------------------------------------------------------------------- /basic-teal/basic-teal.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/basic-teal.Rproj -------------------------------------------------------------------------------- /basic-teal/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/renv.lock -------------------------------------------------------------------------------- /basic-teal/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/renv/.gitignore -------------------------------------------------------------------------------- /basic-teal/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/renv/activate.R -------------------------------------------------------------------------------- /basic-teal/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/renv/settings.json -------------------------------------------------------------------------------- /basic-teal/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /basic-teal/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/tests/cypress.config.js -------------------------------------------------------------------------------- /basic-teal/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /basic-teal/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /basic-teal/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /basic-teal/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/tests/package-lock.json -------------------------------------------------------------------------------- /basic-teal/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/basic-teal/tests/package.json -------------------------------------------------------------------------------- /custom-transform/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /custom-transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/README.md -------------------------------------------------------------------------------- /custom-transform/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/app.R -------------------------------------------------------------------------------- /custom-transform/delayed-data.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/delayed-data.Rproj -------------------------------------------------------------------------------- /custom-transform/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/renv.lock -------------------------------------------------------------------------------- /custom-transform/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/renv/.gitignore -------------------------------------------------------------------------------- /custom-transform/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/renv/activate.R -------------------------------------------------------------------------------- /custom-transform/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/renv/settings.json -------------------------------------------------------------------------------- /custom-transform/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/tests/cypress.config.js -------------------------------------------------------------------------------- /custom-transform/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /custom-transform/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /custom-transform/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/tests/package-lock.json -------------------------------------------------------------------------------- /custom-transform/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/custom-transform/tests/package.json -------------------------------------------------------------------------------- /delayed-data/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /delayed-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/README.md -------------------------------------------------------------------------------- /delayed-data/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/app.R -------------------------------------------------------------------------------- /delayed-data/custom-transform.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/custom-transform.Rproj -------------------------------------------------------------------------------- /delayed-data/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/renv.lock -------------------------------------------------------------------------------- /delayed-data/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/renv/.gitignore -------------------------------------------------------------------------------- /delayed-data/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/renv/activate.R -------------------------------------------------------------------------------- /delayed-data/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/renv/settings.json -------------------------------------------------------------------------------- /delayed-data/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/tests/cypress.config.js -------------------------------------------------------------------------------- /delayed-data/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /delayed-data/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /delayed-data/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/tests/package-lock.json -------------------------------------------------------------------------------- /delayed-data/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/delayed-data/tests/package.json -------------------------------------------------------------------------------- /early-dev/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /early-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/README.md -------------------------------------------------------------------------------- /early-dev/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/app.R -------------------------------------------------------------------------------- /early-dev/early-dev.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/early-dev.Rproj -------------------------------------------------------------------------------- /early-dev/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/renv.lock -------------------------------------------------------------------------------- /early-dev/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/renv/.gitignore -------------------------------------------------------------------------------- /early-dev/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/renv/activate.R -------------------------------------------------------------------------------- /early-dev/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/early-dev/renv/settings.json -------------------------------------------------------------------------------- /efficacy/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /efficacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/README.md -------------------------------------------------------------------------------- /efficacy/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/app.R -------------------------------------------------------------------------------- /efficacy/efficacy.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/efficacy.Rproj -------------------------------------------------------------------------------- /efficacy/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/renv.lock -------------------------------------------------------------------------------- /efficacy/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/renv/.gitignore -------------------------------------------------------------------------------- /efficacy/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/renv/activate.R -------------------------------------------------------------------------------- /efficacy/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/renv/settings.json -------------------------------------------------------------------------------- /efficacy/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /efficacy/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/tests/cypress.config.js -------------------------------------------------------------------------------- /efficacy/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /efficacy/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /efficacy/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /efficacy/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/tests/package-lock.json -------------------------------------------------------------------------------- /efficacy/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/efficacy/tests/package.json -------------------------------------------------------------------------------- /exploratory/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /exploratory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/README.md -------------------------------------------------------------------------------- /exploratory/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/app.R -------------------------------------------------------------------------------- /exploratory/exploratory.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/exploratory.Rproj -------------------------------------------------------------------------------- /exploratory/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/renv.lock -------------------------------------------------------------------------------- /exploratory/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/renv/.gitignore -------------------------------------------------------------------------------- /exploratory/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/renv/activate.R -------------------------------------------------------------------------------- /exploratory/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/renv/settings.json -------------------------------------------------------------------------------- /exploratory/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /exploratory/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/tests/cypress.config.js -------------------------------------------------------------------------------- /exploratory/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /exploratory/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /exploratory/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /exploratory/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/tests/package-lock.json -------------------------------------------------------------------------------- /exploratory/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/exploratory/tests/package.json -------------------------------------------------------------------------------- /longitudinal/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /longitudinal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/README.md -------------------------------------------------------------------------------- /longitudinal/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/app.R -------------------------------------------------------------------------------- /longitudinal/longitudinal.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/longitudinal.Rproj -------------------------------------------------------------------------------- /longitudinal/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/renv.lock -------------------------------------------------------------------------------- /longitudinal/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/renv/.gitignore -------------------------------------------------------------------------------- /longitudinal/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/renv/activate.R -------------------------------------------------------------------------------- /longitudinal/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/renv/settings.json -------------------------------------------------------------------------------- /longitudinal/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /longitudinal/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/tests/cypress.config.js -------------------------------------------------------------------------------- /longitudinal/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /longitudinal/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /longitudinal/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /longitudinal/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/tests/package-lock.json -------------------------------------------------------------------------------- /longitudinal/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/longitudinal/tests/package.json -------------------------------------------------------------------------------- /patient-profile/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /patient-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/README.md -------------------------------------------------------------------------------- /patient-profile/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/app.R -------------------------------------------------------------------------------- /patient-profile/patient-profile.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/patient-profile.Rproj -------------------------------------------------------------------------------- /patient-profile/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/renv.lock -------------------------------------------------------------------------------- /patient-profile/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/renv/.gitignore -------------------------------------------------------------------------------- /patient-profile/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/renv/activate.R -------------------------------------------------------------------------------- /patient-profile/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/renv/settings.json -------------------------------------------------------------------------------- /patient-profile/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /patient-profile/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/tests/cypress.config.js -------------------------------------------------------------------------------- /patient-profile/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /patient-profile/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /patient-profile/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /patient-profile/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/tests/package-lock.json -------------------------------------------------------------------------------- /patient-profile/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/patient-profile/tests/package.json -------------------------------------------------------------------------------- /python/.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/.Rprofile -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/README.md -------------------------------------------------------------------------------- /python/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/app.R -------------------------------------------------------------------------------- /python/python.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/python.Rproj -------------------------------------------------------------------------------- /python/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/renv.lock -------------------------------------------------------------------------------- /python/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/renv/.gitignore -------------------------------------------------------------------------------- /python/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/renv/activate.R -------------------------------------------------------------------------------- /python/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/renv/settings.json -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /safety/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /safety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/README.md -------------------------------------------------------------------------------- /safety/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/app.R -------------------------------------------------------------------------------- /safety/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/renv.lock -------------------------------------------------------------------------------- /safety/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/renv/.gitignore -------------------------------------------------------------------------------- /safety/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/renv/activate.R -------------------------------------------------------------------------------- /safety/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/renv/settings.json -------------------------------------------------------------------------------- /safety/safety.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/safety.Rproj -------------------------------------------------------------------------------- /safety/tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /safety/tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/tests/cypress.config.js -------------------------------------------------------------------------------- /safety/tests/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | /screenshots/ 2 | /videos/ 3 | -------------------------------------------------------------------------------- /safety/tests/cypress/e2e/app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/tests/cypress/e2e/app.cy.js -------------------------------------------------------------------------------- /safety/tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /safety/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/tests/package-lock.json -------------------------------------------------------------------------------- /safety/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/safety/tests/package.json -------------------------------------------------------------------------------- /teal-as-shiny-module/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /teal-as-shiny-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/README.md -------------------------------------------------------------------------------- /teal-as-shiny-module/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/app.R -------------------------------------------------------------------------------- /teal-as-shiny-module/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/renv.lock -------------------------------------------------------------------------------- /teal-as-shiny-module/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/renv/.gitignore -------------------------------------------------------------------------------- /teal-as-shiny-module/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/renv/activate.R -------------------------------------------------------------------------------- /teal-as-shiny-module/renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/renv/settings.json -------------------------------------------------------------------------------- /teal-as-shiny-module/teal-as-shiny-module.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insightsengineering/teal.gallery/HEAD/teal-as-shiny-module/teal-as-shiny-module.Rproj --------------------------------------------------------------------------------