Ceramic Strength

This practical will use a case study from NIST Engineering Statistics Handbook analysing the effects of machining factors on the strength of ceramics to demonstrate visualisation using pandas. And much of the analysis/discussion follows theirs.

Background / Data

Dataset JAHANMI2.DAT

The data for this case study were collected by Said Jahanmir of the NIST Ceramics Division in 1996 in connection with a NIST/industry ceramics consortium for strength optimization of ceramic strength The motivation for studying this data set is to illustrate the analysis of multiple factors from a designed experiment

The goals of this case study are:

To download the data, run the following code

1
2
3
4
import os, urllib
if not os.path.exists('JAHANMI2.DAT'): 
    print ('Downloading remote data file ...')
    urllib.request.urlretrieve('https://www.itl.nist.gov/div898/handbook/datasets/JAHANMI2.DAT', 'JAHANMI2.DAT')

The original analyse was carried out in R, we are going to reproduce this in Python/pandas.