├── .gitignore ├── LICENSE ├── README.md ├── basic-insurer-dashboard ├── README.md ├── data │ ├── sim-data.R │ └── trans.RDS ├── example reports │ ├── .gitignore │ ├── claims-report-as-of-2019-06-20.pdf │ ├── claims-report-as-of-2019-06-20.xlsx │ └── claims-report-as-of-2019-06-24.pptx ├── global.R ├── helpers │ └── format_excel.R ├── server.R ├── server │ ├── 01-dashboard-srv.R │ ├── 02-changes-srv.R │ ├── 03-claims-srv.R │ └── 04-report-srv │ │ ├── 04-excel-srv.R │ │ ├── 04-modal-srv.R │ │ ├── 04-powerpoint-srv.R │ │ ├── 04-report-srv.R │ │ ├── claims_report.Rmd │ │ ├── images │ │ ├── tychobra-logo-blue.png │ │ └── tychobra_logo_blue_co_name.png │ │ ├── mystyles.sty │ │ └── reserve_report.Rmd ├── ui.R ├── ui │ ├── 01-dashboard-ui.R │ ├── 02-changes-ui.R │ ├── 03-claims-ui.R │ └── 04-report-ui.R └── www │ ├── custom.js │ ├── img │ └── orbit-logo-dark.png │ └── styles.css ├── bootstrap-claims-sim ├── README.md ├── global.R ├── report.Rmd ├── server.R ├── ui.R └── www │ ├── css │ └── styles.css │ └── img │ ├── logo-blue.png │ ├── logo-slate.png │ └── logo-white.png ├── freq-sev-claims-sim ├── README.md ├── global.R ├── ractuary-style.css ├── server.R ├── ui.R └── zz-tour.R ├── interest-rate-walk ├── README.md ├── global.R ├── server.R ├── t-bills.csv └── ui.R ├── medicare-map ├── README.md ├── data-prep.R ├── data │ ├── spending-hospital.RDS │ └── spending-state.RDS ├── global.R ├── server.R ├── ui.R └── www │ ├── custom.css │ └── sender-queue.js ├── parallelogram-method ├── README.md ├── global.R ├── server.R └── ui.R └── wc-pm-dashboard ├── README.md ├── global.R ├── server.R ├── server ├── 01-srv-overview.R ├── 02-srv-individual-claims.R └── 99-srv-tour.R ├── ui.R ├── ui ├── 01-ui-overview.R └── 02-ui-individual-claims.R └── www ├── custom.js ├── introjs-tour.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/README.md -------------------------------------------------------------------------------- /basic-insurer-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/README.md -------------------------------------------------------------------------------- /basic-insurer-dashboard/data/sim-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/data/sim-data.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/data/trans.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/data/trans.RDS -------------------------------------------------------------------------------- /basic-insurer-dashboard/example reports/.gitignore: -------------------------------------------------------------------------------- 1 | !* 2 | -------------------------------------------------------------------------------- /basic-insurer-dashboard/example reports/claims-report-as-of-2019-06-20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/example reports/claims-report-as-of-2019-06-20.pdf -------------------------------------------------------------------------------- /basic-insurer-dashboard/example reports/claims-report-as-of-2019-06-20.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/example reports/claims-report-as-of-2019-06-20.xlsx -------------------------------------------------------------------------------- /basic-insurer-dashboard/example reports/claims-report-as-of-2019-06-24.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/example reports/claims-report-as-of-2019-06-24.pptx -------------------------------------------------------------------------------- /basic-insurer-dashboard/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/global.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/helpers/format_excel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/helpers/format_excel.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/01-dashboard-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/01-dashboard-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/02-changes-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/02-changes-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/03-claims-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/03-claims-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/04-excel-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/04-excel-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/04-modal-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/04-modal-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/04-powerpoint-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/04-powerpoint-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/04-report-srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/04-report-srv.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/claims_report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/claims_report.Rmd -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/images/tychobra-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/images/tychobra-logo-blue.png -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/images/tychobra_logo_blue_co_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/images/tychobra_logo_blue_co_name.png -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/mystyles.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/mystyles.sty -------------------------------------------------------------------------------- /basic-insurer-dashboard/server/04-report-srv/reserve_report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/server/04-report-srv/reserve_report.Rmd -------------------------------------------------------------------------------- /basic-insurer-dashboard/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/ui.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/ui/01-dashboard-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/ui/01-dashboard-ui.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/ui/02-changes-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/ui/02-changes-ui.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/ui/03-claims-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/ui/03-claims-ui.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/ui/04-report-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/ui/04-report-ui.R -------------------------------------------------------------------------------- /basic-insurer-dashboard/www/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/www/custom.js -------------------------------------------------------------------------------- /basic-insurer-dashboard/www/img/orbit-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/www/img/orbit-logo-dark.png -------------------------------------------------------------------------------- /basic-insurer-dashboard/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/basic-insurer-dashboard/www/styles.css -------------------------------------------------------------------------------- /bootstrap-claims-sim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/README.md -------------------------------------------------------------------------------- /bootstrap-claims-sim/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/global.R -------------------------------------------------------------------------------- /bootstrap-claims-sim/report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/report.Rmd -------------------------------------------------------------------------------- /bootstrap-claims-sim/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/server.R -------------------------------------------------------------------------------- /bootstrap-claims-sim/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/ui.R -------------------------------------------------------------------------------- /bootstrap-claims-sim/www/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/www/css/styles.css -------------------------------------------------------------------------------- /bootstrap-claims-sim/www/img/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/www/img/logo-blue.png -------------------------------------------------------------------------------- /bootstrap-claims-sim/www/img/logo-slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/www/img/logo-slate.png -------------------------------------------------------------------------------- /bootstrap-claims-sim/www/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/bootstrap-claims-sim/www/img/logo-white.png -------------------------------------------------------------------------------- /freq-sev-claims-sim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/freq-sev-claims-sim/README.md -------------------------------------------------------------------------------- /freq-sev-claims-sim/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/freq-sev-claims-sim/global.R -------------------------------------------------------------------------------- /freq-sev-claims-sim/ractuary-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/freq-sev-claims-sim/ractuary-style.css -------------------------------------------------------------------------------- /freq-sev-claims-sim/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/freq-sev-claims-sim/server.R -------------------------------------------------------------------------------- /freq-sev-claims-sim/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/freq-sev-claims-sim/ui.R -------------------------------------------------------------------------------- /freq-sev-claims-sim/zz-tour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/freq-sev-claims-sim/zz-tour.R -------------------------------------------------------------------------------- /interest-rate-walk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/interest-rate-walk/README.md -------------------------------------------------------------------------------- /interest-rate-walk/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/interest-rate-walk/global.R -------------------------------------------------------------------------------- /interest-rate-walk/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/interest-rate-walk/server.R -------------------------------------------------------------------------------- /interest-rate-walk/t-bills.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/interest-rate-walk/t-bills.csv -------------------------------------------------------------------------------- /interest-rate-walk/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/interest-rate-walk/ui.R -------------------------------------------------------------------------------- /medicare-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/README.md -------------------------------------------------------------------------------- /medicare-map/data-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/data-prep.R -------------------------------------------------------------------------------- /medicare-map/data/spending-hospital.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/data/spending-hospital.RDS -------------------------------------------------------------------------------- /medicare-map/data/spending-state.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/data/spending-state.RDS -------------------------------------------------------------------------------- /medicare-map/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/global.R -------------------------------------------------------------------------------- /medicare-map/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/server.R -------------------------------------------------------------------------------- /medicare-map/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/ui.R -------------------------------------------------------------------------------- /medicare-map/www/custom.css: -------------------------------------------------------------------------------- 1 | th { 2 | text-align: center; 3 | } -------------------------------------------------------------------------------- /medicare-map/www/sender-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/medicare-map/www/sender-queue.js -------------------------------------------------------------------------------- /parallelogram-method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/parallelogram-method/README.md -------------------------------------------------------------------------------- /parallelogram-method/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/parallelogram-method/global.R -------------------------------------------------------------------------------- /parallelogram-method/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/parallelogram-method/server.R -------------------------------------------------------------------------------- /parallelogram-method/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/parallelogram-method/ui.R -------------------------------------------------------------------------------- /wc-pm-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/README.md -------------------------------------------------------------------------------- /wc-pm-dashboard/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/global.R -------------------------------------------------------------------------------- /wc-pm-dashboard/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/server.R -------------------------------------------------------------------------------- /wc-pm-dashboard/server/01-srv-overview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/server/01-srv-overview.R -------------------------------------------------------------------------------- /wc-pm-dashboard/server/02-srv-individual-claims.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/server/02-srv-individual-claims.R -------------------------------------------------------------------------------- /wc-pm-dashboard/server/99-srv-tour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/server/99-srv-tour.R -------------------------------------------------------------------------------- /wc-pm-dashboard/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/ui.R -------------------------------------------------------------------------------- /wc-pm-dashboard/ui/01-ui-overview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/ui/01-ui-overview.R -------------------------------------------------------------------------------- /wc-pm-dashboard/ui/02-ui-individual-claims.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/ui/02-ui-individual-claims.R -------------------------------------------------------------------------------- /wc-pm-dashboard/www/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/www/custom.js -------------------------------------------------------------------------------- /wc-pm-dashboard/www/introjs-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/www/introjs-tour.js -------------------------------------------------------------------------------- /wc-pm-dashboard/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tychobra/shiny-insurance-examples/HEAD/wc-pm-dashboard/www/styles.css --------------------------------------------------------------------------------