Compare household impacts with and without Rhode Island CTC reform.
This calculator models the Rhode Island Child Tax Credit reform proposal, showing how different household configurations would be affected by the CTC implementation. The calculator uses PolicyEngine US's microsimulation model to provide accurate benefit calculations.
Key Features:
- Baseline vs. Reform: Compare household finances with and without RI CTC
- Income Analysis: See how credits change across income levels
- Household Flexibility: Model different family configurations
- RI-Specific: Focused on Rhode Island residents
# Install dependencies
pip install -r requirements.txt
# Run the app
streamlit run app.pyThe app will open at http://localhost:8501
Based on PolicyEngine US PR #6643:
- Eligibility: Children under age 18
- Credit Structure: Non-refundable child tax credit
- Phase-out: Based on AGI (Adjusted Gross Income)
- State: Rhode Island residents only
.
├── app.py                          # Main Streamlit application
├── requirements.txt                # Python dependencies
├── pyproject.toml                  # Project configuration
├── ri_ctc_calc/                    # Calculator package
│   ├── __init__.py
│   └── calculations/               # Calculation modules
│       ├── __init__.py
│       ├── household.py            # Household building utilities
│       ├── ctc.py                  # CTC calculation functions
│       └── reforms.py              # Reform definitions
└── tests/                          # Test files
# Run tests
pytest tests/
# Format code
black .Built with:
- PolicyEngine US: Open-source tax-benefit microsimulation
- Streamlit: Interactive web interface
- Plotly: Data visualization
Open source - see PolicyEngine US license for underlying calculations.
Calculations powered by PolicyEngine US