Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Fix for link being broken in plot_qc_step_change. #890

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/qc/plot_arm_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
-------------------------------------------------------------

This is an example of how to use existing or create new quality
control varibles and extend the quality control flagging. The
control variables and extend the quality control flagging. The
anicllary quality control variable can be expanded by integrating
external Data Quality Reports, adding additional generic ACT tests,
instrument specific ACT tests, or reading a configuraiton file of
instrument specific ACT tests, or reading a configuration file of
known failures to clean up the data variable.

"""
Expand Down
4 changes: 4 additions & 0 deletions examples/qc/plot_qc_step_change.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"""
Plotting flagged data gaps with a step change test
--------------------------------------------------

This is an example for how to use the step change detection test.
The test uses the cumulative sum control chart to detect when
Expand All @@ -7,6 +9,8 @@
returned as a data shift. This example produces two plots,
one with the data gap flagged and one without.

Author: Ken Kehoe

"""

from matplotlib import pyplot as plt
Expand Down
Loading