Skip to main content

A toolbox for Statistical Process Control

Project description

Statistical Process Control Toolbox Documentation

Welcome to the Statistical Process Control (SPC) Toolbox Documentation. This toolbox provides a comprehensive set of tools for monitoring and analyzing manufacturing processes. The toolbox is designed to help quality assurance professionals and engineers to maintain high standards of quality by identifying variations in processes using various SPC charts.

Installation

To install the SPC Toolbox, use the following command:

pip install spc-toolbox

Quick Start

Here's a quick example of how to use the XBarChart class to monitor process means:

import pandas as pd
from spc_toolbox import XBarChart

# Load data from CSV
df = pd.read_csv("data/XBar-RChart.csv")

# Initialize XBarChart
xbarChart = XBarChart()

# Fit data to the chart
xbarChart.fit(index=df.index, values=df, axis=1, dispersion_type="range")

# Plot the chart
xbarChart.plot()

This example demonstrates how to create an XBarChart object, fit it with sample data, and plot the control chart to visualize the process means.

Control Charts

The SPC Toolbox provides several types of control charts, each designed to monitor different aspects of a manufacturing process. Here are the main control charts available in the toolbox:

  • XBarChart: Monitors the average of subgroup means in a process.
  • RChart: Tracks the range of values within subgroups to assess process variability.
  • SChart: Monitors the standard deviation of subgroups to evaluate process dispersion.
  • UChart: Tracks the number of defects per unit of output to assess process quality.
  • PChart: Monitors the proportion of defective items in a sample to evaluate process quality.
  • IChart: Tracks the number of defects per unit of output in a Poisson process.
  • MRChart: Monitors the moving range of consecutive observations to assess process variability.

Each control chart class provides methods for fitting data, plotting the control chart, and accessing statistical parameters.

Contributing

If you would like to contribute to the SPC Toolbox, please read our contributing guidelines for more information on how to get started.

License

The SPC Toolbox is released under the 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

spc_toolbox-0.1.1.tar.gz (9.0 kB view hashes)

Uploaded Source

Built Distribution

spc_toolbox-0.1.1-py3-none-any.whl (13.2 kB view hashes)

Uploaded Python 3

Supported by

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