Skip to main content

processbehavior

PyPI version Python versions CI License

A Python library for Process Behavior Analysis following Thomas A. Bishop's Variance Analysis System (VAS) methodology.

Unlike traditional SPC packages, processbehavior faithfully implements Bishop's VAS equation-by-equation: automatic detection of the three-state design lineage (PDS / ODS / ADS), variance decomposition via R1-R6 residuals, and chart selection routed by the data your study can actually analyze.

Installation

pip install processbehavior

Plotting (plotly) is included. For Excel export and static image export, install the corresponding extras:

pip install "processbehavior[excel]"   # openpyxl, for result.to_excel(...)
pip install "processbehavior[images]"  # kaleido, for static plot images

Quickstart

import processbehavior as pb

# Generate a sample dataset (replace with your own DataFrame)
df = pb.make_design(state=1, seed=42)
# Columns: 'time', 'factor 1', 'factor 2', 'y'

# Formulate — detects PDS / ODS / ADS and builds the analysis dataset
study = pb.formulate(
    df,
    response='y',
    time='time',
    factors=['factor 1', 'factor 2'],
)
print(f"Observed:   ODS {study.observed_design_state.sds}")
print(f"Analytical: ADS {study.analytical_design_state.sds}")
print(f"Recommended chart: {study.recommended_chart}")

# Execute analysis (routes by ADS)
result = study.execute()                       # uses the recommended chart
stats = result.statistics('Xbar')              # always {'N', 'center', 'lpl', 'upl'}
print(f"Center: {stats['center']}")

# When subgroup sizes differ the limits differ per subgroup, so the scalar
# 'lpl'/'upl' are None and stats['limits_vary'] is True. The per-subgroup
# limits live in the chart table:
print(result.get_chart('Xbar')[['center', 'lpl', 'upl']].head())

# Plot (interactive plotly figure)
result.plot()

# Export to Excel (requires the [excel] extra)
result.to_excel('analysis.xlsx')

The whole pipeline is one expression when you don't need the intermediate objects:

pb.formulate(df, response='y', factors=['factor 1'], time='time').execute().plot()

Use pb.ProcessBehavior(df) directly when you want the fluent derived-variable verbs (.transform(...), .bin(...)), which attach before formulating. With that object in hand, pbd.cols.<column_name> provides IDE auto-completion for column references.

Key Concepts

Two-Step Workflow

The API mirrors how analysts think:

  1. formulate() - Understand your data structure. Detects PDS / ODS / ADS, identifies valid charts, and computes residuals. This is the expensive step.
  2. execute() - Run analysis. Produces charts from the pre-computed data. This is cheap and can be called multiple times for different charts from the same study.

Design-State Lineage (PDS / ODS / ADS)

processbehavior reports three design states at three points in the analysis lifecycle:

State Computed from Codomain Meaning
PDS — Planned Your declared factors and time (or an explicit plan=) {1, 2} What you intended to collect
ODS — Observed Raw data, before NA filtering {1..6} What was actually collected (cells with all-NA responses count as "attempted but empty")
ADS — Analytical Tidy data, after NA filtering {0, 1, 2, 3} What survives tidying; drives chart selection, residual availability, and variance decomposition

The integer codes are Bishop's reference scale ("Bishop Table 1"):

Code Cell Sizes (N_kt)
1 Complete grid, all N_kt >= 2 (full replication)
2 Complete grid, all N_kt = 1 (no replication)
3 Complete grid, mix of N_kt = 1 and N_kt >= 2
4 Incomplete grid, occupied cells N_kt >= 2
5 Incomplete grid, occupied cells N_kt = 1
6 Incomplete grid, mixed N_kt

ODS values in {4, 5, 6} collapse to ADS values in {1, 2, 3} during tidying (empty cells drop and the surviving subset becomes the analytical grid).

Access the lineage on a formulated study:

study.plan_design_state        # PDS (when a plan was supplied)
study.observed_design_state    # ODS — what the raw data showed
study.analytical_design_state  # ADS — what the analysis is fit for
study.design()                 # DesignReport: full lineage in one object

Residual System (R1-R6)

For factorial designs (ADS 1-3), processbehavior decomposes variation into diagnostic residuals:

  • R1 - The response centered at 0 (Bishop §13.1); the building block for the rest
  • R2 - Within-cell noise (measurement error, short-term fluctuation)
  • R3 - Interaction between design conditions and time
  • R4 - Time main effects (trends, seasonality, batch effects)
  • R5 - Design condition main effects, all factors combined
  • R6 - A single design factor's main effect (machine-to-machine, operator bias)
# Chart any residual
result = study.execute(chart='Xbar', value='R4')  # Time main effects
result = study.execute(chart='Xbar', value='R5')  # Design condition main effects
result = study.execute(chart='Xbar', value='R6', by=['machine'])  # One factor's effect

Not every chart pairs with every residual — the valid pairs depend on the ADS. study.residual_charts lists them, and study.why_not('X', value='R4') explains any pair it refuses.

Stratified Analysis

For X/mR charts with grouping factors, processbehavior produces a single combined chart with per-stratum limits:

result = study.execute(chart='X', by=['machine'])

# Drill into a specific stratum
for stratum in result.strata:
    focused = result.focus(stratum)
    focused.plot()

Validation

processbehavior's analytical outputs are continuously verified against Dr. Thomas A. Bishop's Minitab reference results. The validator at validation/e2e_bishop_report.py runs 280 numerical assertions through the full formulate → execute → capability / loss / maximum-information pipeline:

Analytical Design State Datasets validated Assertions Status
ADS 1 (full replication) PM SDS 1 from PBTESTDATABASE_T100.csv 102 ✅ all pass
ADS 2 (no replication) PM SDS 2 89 ✅ all pass
ADS 3 (partial replication) PM SDS 3 89 ✅ all pass

Reference data is Bishop's published Minitab golden output. The library matches every chart center, control limit, signal classification, capability index, and loss-function value to within the precision Bishop reports.

ODS 4–6 (incomplete-grid scenarios) are detected and routed correctly but their end-to-end Bishop-reference coverage is pending. The synthetic generators in make_design(state=4|5|6) produce data with the structural shape Bishop's Table 1 specifies; full numerical validation against Bishop's incomplete-grid Minitab output is on the roadmap (issue #109).

The full report renders to validation/e2e_bishop_report.html.

Features

  • Three-state lineage: PDS / ODS / ADS detected automatically; chart selection routes by ADS
  • Correct charts: Xbar-S, X (Individual), mR (Moving Range), Histogram with proper limit calculations
  • Variance decomposition: R1-R6 residuals for factorial designs
  • Effects analysis: Main effects, time effects, and interaction effects
  • Stratified charts: Automatic per-stratum limits for grouped individual data
  • Signal detection: all eight Western Electric rules on X/mR; Rule 1 (3-sigma) on Xbar/S, where the run- and zone-based rules need a time order that subgroup comparisons don't have
  • Beyond the charts: capability indices (Cp/Cpk/Pp/Ppk), Taguchi loss decomposition, and maximum-information analysis — validated in the same Bishop-reference CI gate
  • IDE support: Column auto-completion via ProcessBehavior(df).cols
  • Self-diagnostic errors: Helpful messages that say what's available and how to fix it
  • Excel export: Publication-ready workbooks with charts and statistics
  • Interactive plots: Plotly-based charts with hover details

Scope

processbehavior is the computational engine for Bishop's VAS methodology. It handles data ingestion, design-state lineage detection (PDS / ODS / ADS), residual computation, chart generation, and export.

For the curated analyst experience — guided workflows, interactive dashboards, and collaboration features — see processbehavior.com.

For the methodological foundation — the theory behind VAS, design-state classification, and residual interpretation — see Bishop's published book below and the forthcoming book by Dr. Thomas A. Bishop and Chris Nicholas.

References

The methodology this library implements:

Bishop, Thomas A. (2021). The Scientific Basis for Modern Analytic Practice. Lulu Press. 279 pp.

To cite the software itself, see CITATION.cff.

License

Apache 2.0

Download files

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

Source Distribution

processbehavior-0.2.0.tar.gz (623.7 kB view details)

Uploaded Source

Built Distribution

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

processbehavior-0.2.0-py3-none-any.whl (274.2 kB view details)

Uploaded Python 3

File details

Details for the file processbehavior-0.2.0.tar.gz.

File metadata

  • Download URL: processbehavior-0.2.0.tar.gz
  • Upload date:
  • Size: 623.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for processbehavior-0.2.0.tar.gz
Algorithm Hash digest
SHA256 7011e95b3bfef7a0a5c81a8769024622f844c2e6347701678044911971b758cb
MD5 80e9babaf168625aa68a2aaf6bc0ee91
BLAKE2b-256 e43652cb6e34938f7cce66c68e23102d15b9b719400368097f53144f191c9e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for processbehavior-0.2.0.tar.gz:

Publisher: publish.yml on cnicholas/processbehavior

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file processbehavior-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: processbehavior-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 274.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for processbehavior-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 065fa234437fb8d0a43aaebd2a5207d3d912abc98c8db8a96fb2303179c9a2dc
MD5 e0e36dc5d3a94e5c7b4b8ef97314c95f
BLAKE2b-256 32afa008926e5eeddcbcda45f637a21aa2caff40b0d098102c9f5de89b58fa2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for processbehavior-0.2.0-py3-none-any.whl:

Publisher: publish.yml on cnicholas/processbehavior

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page