industries

Pyvorin for Clinical Trials

Patient stratification, adverse event detection, and statistical analysis.

Published May 30, 2026

Patient Stratification

Match patients to trials using compiled eligibility criteria.

def is_eligible(patient, criteria):
    for criterion in criteria:
        if not criterion.check(patient):
            return False
    return True

Adverse Event Detection

Signal detection algorithms like PRR and ROR for pharmacovigilance.

Statistical Analysis

Log-rank tests, Cox regression, and Kaplan-Meier estimators.