@@ -4,51 +4,44 @@ A unified repository for an MBA-level quantitative financial analysis of healthc
44
55This repository combines:
66
7- - a textbook and teaching materials
8- - Julia source code for financial and health system analytics
7+ - textbook and teaching materials
8+ - Julia source code for healthcare finance analytics
99- data schemas and ETL plans
10- - references from MBA syllabi, textbooks, and PubMed-driven evidence reviews
11- - future interactive applications and dashboards
10+ - references from MBA syllabi and evidence reviews
11+ - interactive application/dashboard prototypes
12+
13+ ## Quickstart (package API)
14+
15+ ``` julia
16+ using HealthcareFinance
17+
18+ margin = operating_margin (1_000_000.0 , 800_000.0 )
19+ beu = break_even_units (100_000.0 , 50.0 , 30.0 )
20+ forecast = forecast_series ([100.0 , 120.0 , 140.0 , 160.0 ]; method= :linear_trend , horizon= 2 )
21+ ```
1222
1323## Repository goals
1424
15251 . Build a rigorous textbook on quantitative financial analysis of healthcare systems.
16- 2 . Create reusable Julia modules for healthcare finance, reimbursement, forecasting, econometrics, simulation, and value-based care.
26+ 2 . Create reusable Julia modules for finance, reimbursement, forecasting, econometrics, simulation, and value-based care.
17273 . Organize datasets, schemas, and provenance for reproducible analysis.
18- 4 . Support future deployment as an interactive educational and analytical platform.
28+ 4 . Support deployment as an interactive educational and analytical platform.
1929
2030## Top-level structure
2131
22- - ` book/ ` — textbook manuscript, chapter files, outlines, references
32+ - ` book/ ` — textbook manuscript and references
2333- ` src/ ` — Julia package source code
2434- ` test/ ` — automated tests
2535- ` examples/ ` — runnable examples and demos
26- - ` notebooks/ ` — exploratory notebooks
2736- ` data/ ` — schemas, synthetic data, ETL notes, provenance
28- - ` references/ ` — bibliography and structured literature review materials
29- - ` docs/ ` — project documentation and architecture notes
30-
31- ## Planned major modules
32-
33- - Financial accounting and ratio analysis
34- - Reimbursement and revenue cycle analytics
35- - Budgeting and forecasting
36- - Cost-effectiveness and health economics
37- - Econometrics and causal inference
38- - Simulation and scenario analysis
39- - Value-based care and population health finance
40-
41- ## Initial package name
42-
43- ` HealthcareFinance `
37+ - ` references/ ` — bibliography and literature-review materials
38+ - ` docs/ ` — architecture and project documentation
39+ - ` app/ ` — dashboard applications
4440
45- ## Next milestones
41+ ## Package entrypoint
4642
47- 1 . Establish full directory scaffold.
48- 2 . Draft textbook outline and chapter sequence.
49- 3 . Create Julia package skeleton.
50- 4 . Add core financial functions and tests.
51- 5 . Add literature-review workflow for PubMed and MBA course synthesis.
43+ Use ` HealthcareFinance ` as the canonical package module.
44+ ` HealthcareFinanceSystem ` remains available as a compatibility wrapper.
5245
5346## License
5447
0 commit comments