--- id: carelytics version: "0.1.3" license: MIT license_treatment: permissive maintenance: aging --- # carelytics — A Python library for Healthcare Data Analytics and Revenue Cycle Management. License: permissive · Maintenance: aging · Downloads: 217.1K/mo ## What it is and what it does Carelytics is a Python library for healthcare data analytics focused on revenue cycle management (RCM) workflows. It wraps pandas, numpy, and scikit-learn to provide domain-specific functions for validating and cleaning healthcare datasets, standardizing formats for interoperability (FHIR-ready), and running predictive models such as claim denial and hospital readmission prediction. The package includes utilities for handling protected health information (PHI) de-identification, analyzing patient encounters and lab data, and computing RCM metrics like average accounts receivable days and net collection rates. The library is organized into modular components: validators and cleaners for data preparation, predictive models for denial and readmission risk, claim-level and patient-level analytics, and FHIR parsing for standards compliance. It is intended for healthcare analysts, researchers, and developers working with EHR or claims data who want to accelerate analytics workflows without building these functions from scratch. Use it for: - Clean and validate EHR datasets before loading into hospital performance dashboards or analytics platforms. - Predict claim denial risk on incoming claims to flag high-risk submissions for manual review before submission. - Identify patients at high readmission risk using demographics and vitals to enable proactive care interventions. - Standardize lab values and vital signs across multiple data sources for statistical analysis or clinical research. - De-identify patient datasets to remove PHI before sharing with external researchers or analytics vendors. - Compute RCM key performance indicators (denial rates, collection efficiency, AR aging) for revenue cycle dashboards. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Carelytics provides healthcare data cleaning, validation, and predictive analytics for revenue cycle management, including denial prediction, readmission risk modeling, and FHIR-compliant data standardization. Yes, with conditions. Install if you are working on healthcare data analytics or RCM workflows and want pre-built validation, cleaning, and predictive modeling functions. The low install friction and permissive MIT license are favorable. However, the package is early-stage (270 days old, no visible recent commits), so verify that the FHIR parsing, de-identification, and prediction models meet your accuracy and compliance requirements before deploying to production. No known vulnerabilities. ## Install pip install carelytics uv add carelytics poetry add carelytics ## Installing carelytics Before you install: Low install friction with a pure-Python wheel and three common dependencies (pandas, numpy, scikit-learn). Package is aging at 270 days since release with no recent commits visible; early-stage maturity should be expected. License in practice: MIT license is permissive and imposes no restrictions on commercial use, modification, or redistribution, making it suitable for most healthcare analytics workflows without licensing concerns. Quickstart: pip install carelytics import pandas as pd from carelytics.utils import validator, cleaner from carelytics.models import denial_prediction df = pd.read_csv("claims.csv") validator.validate_columns(df, ["claim_id", "payer", "amount"]) df = cleaner.fill_missing(df, "median") pred = denial_prediction.predict_denials(df) Requires Python ≥ 3.7 and pandas, numpy, scikit-learn installed. De-identification and FHIR modules may require additional validation before use with real PHI. Verify before relying: - Whether FHIR parsing and validation modules are fully functional or placeholder stubs - Whether de-identification utilities meet HIPAA safe harbor or expert determination standards - Production readiness and test coverage of denial and readmission prediction models - Whether the package has been validated against real healthcare datasets or EHR systems ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: aging - Downloads: 217.1K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags healthcare data cleaning validation, revenue cycle management analytics, claim denial prediction, hospital readmission prediction, FHIR data standardization, healthcare PHI de-identification, patient encounter analytics, healthcare-analytics, revenue-cycle-management, clinical-data [View on SkillFed](https://skillfed.io/packages/carelytics) · [View on PyPI](https://pypi.org/project/carelytics/)