View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

How to check data quality with a Widget for Jupyter Notebook

In this example, we will first read the dataset test_qc.pkl that contains water temperature data and then use a Jupyter Notebook widget to check the quality of the data and flag the incorrect data.

To run this example on your computer, you need to download the dataset.

import mooda as md

# Location of the dataset
path = r'docs\examples\data\test_qc.pkl'
# Read the dataset
wf = md.read_pkl(path)

wf

Output wf

Open the widget, loading the WaterFrame with the parameter TEMP (Water Temperature)

Then, check all test (click on ‘Do it!’) with the following configuration:

Finally, click on ‘Run Tests’. The execution of the tests take a while. At the end of each test, the widget shows a graph with the result.

The graphics are interactive. To view the bad data, click the option in the graph legend.

gui = md.widget_qc(wf, 'TEMP', range_test=[0, 50])
gui

QC Widget

Run test Plot 1

Run test Plot 2

Run test Plot 3

Run test Plot 4

Run test Plot 5

Return to the Index of examples.