.readthedocs.yml
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
NOTICE
README.md
pyproject.toml
docs/API_REFERENCE.md
docs/ARCHITECTURE.md
docs/ASYMMETRIC_MODELS_COMPLETE.md
docs/BENCHMARK_ANALYSIS.md
docs/COINTEGRATION_USER_GUIDE.md
docs/COMPREHENSIVE_TESTING_COMPLETE.md
docs/GARCH_IMPLEMENTATION_COMPLETE.md
docs/INTEGRATION_TEST_RESULTS.md
docs/KALMAN_FILTER_COMPLETE.md
docs/LOCAL_LEVEL_COMPLETE.md
docs/MATHEMATICAL_FORMULATIONS.md
docs/ML_TESTS_SCHEMA_UPDATE_COMPLETE.md
docs/ML_UNIT_TESTS_COMPLETE.md
docs/Makefile
docs/PHASE_2_1_COMPLETE.md
docs/PHASE_2_1_FINAL_SUMMARY.md
docs/PHASE_2_2_PLAN.md
docs/PROPHET_IMPLEMENTATION_COMPLETE.md
docs/USER_GUIDE.md
docs/VAR_IMPLEMENTATION_COMPLETE.md
docs/VAR_USER_GUIDE.md
docs/changelog.rst
docs/citations.rst
docs/conf.py
docs/contributing.rst
docs/development.rst
docs/examples.rst
docs/index.rst
docs/installation.rst
docs/license.rst
docs/quickstart.rst
docs/requirements.txt
docs/testing.rst
docs/api/anomaly.rst
docs/api/core.rst
docs/api/econometric.rst
docs/api/index.rst
docs/api/ml.rst
docs/api/regional.rst
docs/api/state_space.rst
docs/api/volatility.rst
docs/api_reference/COINTEGRATION_API.md
docs/api_reference/VAR_API.md
docs/mathematical_formulations/ECONOMETRIC_MATH.md
docs/user_guide/anomaly.rst
docs/user_guide/econometric.rst
docs/user_guide/index.rst
docs/user_guide/machine_learning.rst
docs/user_guide/regional.rst
docs/user_guide/state_space.rst
docs/user_guide/volatility.rst
examples/arima_forecasting.py
examples/example_01_garch_volatility_forecasting.py
examples/example_02_egarch_leverage_analysis.py
examples/example_03_gjr_garch_threshold_detection.py
examples/example_04_kalman_filter_tracking.py
examples/example_arima_run.py
examples/example_cointegration_run.py
examples/example_prophet_run.py
examples/example_sarima_run.py
examples/example_var_run.py
examples/regional_analysis.py
examples/sarima_seasonal_forecasting.py
examples/data/README.md
examples/data/employment_sample.csv
examples/data/financial_returns.csv
examples/data/financial_returns_sample.csv
examples/data/gdp_sample.csv
examples/data/generate_datasets.py
examples/data/generate_sample_data.py
examples/data/regional_industry.csv
examples/data/regional_industry_sample.csv
examples/data/revenue_anomaly_sample.csv
examples/notebooks/01_economic_forecasting.ipynb
examples/notebooks/02_business_forecasting_prophet.ipynb
examples/notebooks/03_volatility_modeling.ipynb
examples/notebooks/03_volatility_modeling_garch.ipynb
examples/notebooks/04_regional_analysis.ipynb
examples/notebooks/05_anomaly_detection.ipynb
krl_core/__init__.py
krl_core/base_model.py
krl_core/model_input_schema.py
krl_core/model_registry.py
krl_core/plotly_adapter.py
krl_core/results.py
krl_core/utils.py
krl_models/__init__.py
krl_models/anomaly/__init__.py
krl_models/anomaly/isolation_forest.py
krl_models/anomaly/stl_decomposition.py
krl_models/econometric/__init__.py
krl_models/econometric/cointegration_model.py
krl_models/econometric/prophet_model.py
krl_models/econometric/sarima_model.py
krl_models/econometric/var_model.py
krl_models/ml/__init__.py
krl_models/ml/random_forest.py
krl_models/ml/regularized_regression.py
krl_models/ml/xgboost_model.py
krl_models/regional/__init__.py
krl_models/regional/location_quotient.py
krl_models/regional/shift_share.py
krl_models/state_space/__init__.py
krl_models/state_space/kalman_filter.py
krl_models/state_space/local_level.py
krl_models/volatility/__init__.py
krl_models/volatility/egarch_model.py
krl_models/volatility/garch_model.py
krl_models/volatility/gjr_garch_model.py
tests/__init__.py
tests/conftest.py
tests/anomaly/__init__.py
tests/anomaly/test_isolation_forest.py
tests/anomaly/test_stl_anomaly.py
tests/econometric/test_cointegration_model.py
tests/econometric/test_prophet_model.py
tests/econometric/test_sarima_model.py
tests/econometric/test_var_model.py
tests/fixtures/__init__.py
tests/fixtures/synthetic_timeseries.py
tests/integration/test_econometric_real_data.py
tests/integration/test_econometric_simple.py
tests/integration/test_error_handling.py
tests/integration/test_workflows.py
tests/ml/test_random_forest.py
tests/ml/test_regularized_regression.py
tests/ml/test_xgboost.py
tests/regional/__init__.py
tests/regional/test_location_quotient.py
tests/regional/test_shift_share.py
tests/state_space/test_kalman_smoke.py
tests/state_space/test_kalman_unit.py
tests/state_space/test_local_level_smoke.py
tests/state_space/test_local_level_unit.py
tests/unit/__init__.py
tests/unit/test_arima_model.py
tests/unit/test_model_input_schema.py
tests/unit/test_model_registry.py
tests/unit/test_plotly_adapter.py
tests/unit/test_results.py
tests/unit/test_utils.py
tests/volatility/test_asymmetric_smoke.py
tests/volatility/test_asymmetric_unit.py
tests/volatility/test_garch.py
tests/volatility/test_garch_smoke.py
tests/volatility/test_garch_unit.py