skillfed

carelytics

A Python library for Healthcare Data Analytics and Revenue Cycle Management.

carelytics v0.1.3 217.1K downloads/30d#9,365 on PyPI
Permissive license MIT AGING released

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 on this page — 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

carelytics on PyPI

pip

pip install carelytics

uv

uv add carelytics

poetry

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 the current Python release (>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies 3 — pandas, numpy, scikit-learn
Maintenance aging — 270 days since the last release
First released
Downloads 217,136/month — #9,365 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: carelytics-0.1.3-py3-none-any.whl

Intended Audience :: Healthcare IndustryLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3Topic :: Scientific/Engineering :: Information AnalysisTopic :: Software Development :: Libraries :: Python Modules

Tags

healthcare data cleaning validationrevenue cycle management analyticsclaim denial predictionhospital readmission predictionFHIR data standardizationhealthcare PHI de-identificationpatient encounter analytics
healthcare-analyticsrevenue-cycle-managementclinical-data

More Python Modules packages