Skip to content

afraniomelo/KydLIB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KydLIB: Know Your Data Library

KydLIB is a Python module that provides tools for exploratory data analysis. It is specially designed to work with time series data typically obtained from process system engineering (PSE) applications, although it can also be useful for many types of data.

There are methods for analyzing and visualizing:

  • linear and nonlinear pair correlations;
  • autocorrelations;
  • signal-to-noise ratios;
  • multivariate Gaussianity.

For details on methodologies and application examples, see:

  • Melo et al. (2022): Open benchmarks for assessment of process monitoring and fault diagnosis techniques: A review and critical analysis. doi:10.1016/j.compchemeng.2022.107964.
  • Laarne et al. (2021): ennemi: Non-linear correlation detection with mutual information. doi:10.1016/j.softx.2021.100686.
  • Zhang et al. (2016): A Novel Strategy of the Data Characteristics Test for Selecting a Process Monitoring Method Automatically. doi:10.1021/acs.iecr.5b03525.
  • Feital and Pinto (2015): Use of variance spectra for in-line validation of process measurements in continuous processes. doi:10.1002/cjce.22219.

Installation

With pip

pip install kydlib

With conda

conda install -c conda-forge kydlib

Usage

Let's download a dataset from the Tennessee Eastman Process benchmark to serve as an example:

import pandas as pd

url = 'https://raw.githubusercontent.com/camaramm/tennessee-eastman-profBraatz/master/d00_te.dat'
df = pd.read_csv(url, delim_whitespace=True, header=None).iloc[:,:22]

To use KydLIB, we must instantiate a Study object providing the data to be analyzed:

import kydlib

s = kydlib.Study(df)

We are now ready to do the exploratory data analysis.

Lineplots

s.lineplot()

Scatterplots

s.scatterplot()

Linear and nonlinear correlations

s.corr_coef()
s.corr_coef_plot()

Autocorrelation

s.autocorrelation()
s.autocorrelation_plot()

Signal-to-noise ratio

s.signal_to_noise()
s.signal_to_noise_plot()

Multivariate Gaussianity

s.gaussianity()
s.gaussianity_plot()

Citing

If this package has helped you in your research, consider citing:

@article{melo_open_2022,
  title = {Open benchmarks for assessment of process monitoring and fault diagnosis techniques: A review and critical analysis},
  journal = {Computers \& Chemical Engineering},
  volume = {165},  
  pages = {107964},
  year = {2022},
  doi = {10.1016/j.compchemeng.2022.107964},
  author = {Melo, Afrânio and Câmara, Maurício M. and Clavijo, Nayher and Pinto, José Carlos}
}