Skip to main content

Process Mining library aimed at making PM accessible to new users

Project description

Heraclitus

Heraclitus Logo

PyPI Version Python Versions License Stars

A Python library aimed at making Process Mining accessible to new users. Works well with PM4PY but adds additional features for analysis and visualization.

Features

  • EventLog Management: Easy to use interface for loading, filtering, and manipulating process event data
  • Process Visualization:
    • Static process maps and activity frequency charts
    • Interactive visualizations with Plotly
    • Timeline visualizations and bottleneck dashboards
  • Time Metrics: Calculate cycle times, waiting times, and processing times
  • Statistical Analysis:
    • Compare process variants and identify bottlenecks
    • Distribution fitting and hypothesis testing
  • Large Dataset Support:
    • DuckDB integration for handling datasets larger than memory
    • Efficient querying and filtering of large process logs
  • Machine Learning:
    • Predictive models for process outcomes
    • Duration prediction with regression and classification
    • Feature engineering tools for process data
  • Anomaly Detection:
    • Identify unusual process behaviors
    • Detect outlier cases and process variants
    • Visualize anomalies for investigation
  • Process Discovery:
    • Custom process discovery algorithms
    • Conformance checking capabilities
    • BPMN export functionality
  • PM4PY Integration:
    • Seamless conversion between Heraclitus and PM4PY formats
    • Use PM4PY algorithms with Heraclitus EventLogs
    • Enhanced visualizations for process models
  • Performance Optimization:
    • Vectorized operations for metrics
    • Caching for repeated calculations
  • XES Format Support (NEW in v0.3.0):
    • IEEE 1849-2016 standard compliant XES import/export
    • Extended EventLog class with XES methods
    • Support for XES extensions and global attributes
  • Improved Documentation (NEW in v0.3.0):
    • Comprehensive Jupyter notebook tutorials
    • More detailed examples

Installation

# Install from PyPI
pip install heraclitus

# Install with PM4PY integration
pip install heraclitus[pm4py]

# Install with machine learning features
pip install heraclitus[ml]

# Install with all optional dependencies
pip install heraclitus[pm4py,ml,dev]

Or install from source:

git clone https://github.com/yourusername/heraclitus.git
cd heraclitus
pip install -e .

Quick Start

import pandas as pd
from heraclitus.data import EventLog
from heraclitus.visualization import create_interactive_process_map
from heraclitus.metrics import calculate_cycle_time

# Create an event log from a DataFrame
df = pd.read_csv("your_data.csv")
event_log = EventLog(df)

# Analyze cycle time
avg_time = calculate_cycle_time(event_log, unit="hours")
print(f"Average cycle time: {avg_time:.2f} hours")

# Create an interactive visualization
fig = create_interactive_process_map(event_log)
fig.write_html("process_map.html")  # Interactive HTML file

Working with Large Datasets

from heraclitus.data import DuckDBConnector

# Initialize DuckDB connector
db = DuckDBConnector("process_data.duckdb")

# Load large CSV file
db.load_csv("large_event_log.csv", table_name="events")

# Query and convert to EventLog
filtered_log = db.query_to_eventlog("""
    SELECT * FROM events 
    WHERE timestamp >= '2023-01-01' 
    AND activity = 'Process Application'
""")

# Analyze the filtered log
print(f"Filtered log contains {filtered_log.case_count()} cases")

Machine Learning and Anomaly Detection

from heraclitus.ml import OutcomePredictor, ProcessAnomalyDetector, FeatureExtractor

# Extract features from event log
feature_extractor = FeatureExtractor(event_log)
features_df = feature_extractor.extract_case_features()

# Train a prediction model
predictor = OutcomePredictor()
model_info = predictor.train(event_log, model_type="random_forest")
predictions = predictor.predict(features_df)

# Detect process anomalies
anomaly_detector = ProcessAnomalyDetector()
anomaly_detector.train(event_log, method="isolation_forest")
anomalies = anomaly_detector.detect_anomalies(features_df)

Requirements

  • Python 3.10-3.12
  • pandas
  • matplotlib
  • numpy
  • scipy
  • plotly
  • duckdb
  • scikit-learn (for ML features)

Examples

Check out the examples directory for detailed usage examples:

  • basic_usage.py: Simple EventLog operations
  • statistical_analysis.py: Statistical comparisons and bottleneck analysis
  • interactive_visualization.py: Interactive Plotly visualizations
  • duckdb_large_datasets.py: Working with large datasets
  • machine_learning.py: Predictive modeling and anomaly detection
  • process_discovery.py: Process discovery and conformance checking
  • xes_format.py: XES format import and export (NEW)

Documentation

See the Documentation for comprehensive guides and tutorials.

Development

See the Developer Guide for detailed information on the architecture and design principles.

Run tests:

pytest tests/

Roadmap

See ROADMAP.md for planned features and improvements.

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines.

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

heraclitus-0.3.0.tar.gz (51.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

heraclitus-0.3.0-py3-none-any.whl (52.7 kB view details)

Uploaded Python 3

File details

Details for the file heraclitus-0.3.0.tar.gz.

File metadata

  • Download URL: heraclitus-0.3.0.tar.gz
  • Upload date:
  • Size: 51.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for heraclitus-0.3.0.tar.gz
Algorithm Hash digest
SHA256 e383a3dbeed68e4df2a5cb0ae5f926280bdf991817fd532dd21663b6e0ba6fef
MD5 e99e79d43b0013bf93e86148e101a789
BLAKE2b-256 d0e072cb5d0c98bfed5590c6289ad18d389386442fb71c8d4547ce8933be46df

See more details on using hashes here.

File details

Details for the file heraclitus-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: heraclitus-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for heraclitus-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cd8dd18f5383c92a20a5f08d79dcf1c29eecf6ce068cef58f1dc44abd520cb80
MD5 f8d1df0a4a2125e39b47fab980604f21
BLAKE2b-256 3552191bc439a9eded897118d4beb112df125d2c8aed7b009b3a40b29e246cce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page