Skip to content
Snippets Groups Projects
Commit 36f0a295 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

fixed plot-not-occuring bug in TutorialCLI

parent 8f43c4dd
No related branches found
No related tags found
5 merge requests!685Release 2.4,!684Release 2.4,!567Release 2.2.1,!566Release 2.2,!501Release 2.1
Pipeline #58309 failed with stage
in 1 minute and 34 seconds
# ! /usr/bin/env python
# -*- coding: utf-8 -*-
from sphinxdoc.coredoc.core import SaQC
\ No newline at end of file
This diff is collapsed.
......@@ -217,7 +217,7 @@ Process multiple variables
You can also define multiple tests for multiple variables in your data. These
are then executed sequentially and can be plotted seperately. To not interrupt processing, the plots
get stored to files.
get stored to files. (We route the storage to the repos resources folder...)
.. literalinclude:: ../ressources/data/myconfig4.csv
......@@ -228,9 +228,7 @@ get stored to files.
qc = saqc.fromConfig(configpath('4'), data)
which gives you separate plots for each line where the plotting option is set to
``True`` as well as one summary "data plot" that depicts the joint flags from all
tests:
which gives you separate plots for each call to plot:
.. list-table::
......
SaQC
====
saqc Package
------------
.. automodule:: saqc
Functions
^^^^^^^^^
.. automodsumm:: saqc
:functions-only:
:toctree: ../_api
Classes
^^^^^^^
.. automodsumm:: saqc
:classes-only:
:toctree: ../_api
saqc
====
saqc.constants Module
---------------------
.. automodule:: saqc.constants
Variables
^^^^^^^^^
.. automodsumm:: saqc.constants
:variables-only:
:toctree: ../_api
:skip: ENVIRONMENT
SaQC
====
sphinxdoc.coredoc Package
-------------------------
.. automodule:: sphinxdoc.coredoc
Classes
^^^^^^^
.. automodsumm:: sphinxdoc.coredoc
:classes-only:
:toctree: ../_api
......@@ -4,5 +4,5 @@ SM1;flagRange(min=10, max=60)
SM2;flagRange(min=10, max=60)
SM1;flagMAD(window="15d", z=3.5)
SM2;flagMAD(window="30d", z=3.5)
SM1;plot(store_kwargs={'format':'png','fname':'../ressources/temp/SM1processingResults'})
SM2;plot(store_kwargs={'format':'png','fname':'../ressources/temp/SM2processingResults'})
\ No newline at end of file
SM1;plot(path='../ressources/temp/SM1processingResults')
SM2;plot(path='../ressources/temp/SM2processingResults')
\ No newline at end of file
sphinxdoc/ressources/temp/SM1processingResults.png

54.9 KiB

sphinxdoc/ressources/temp/SM2processingResults.png

141 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment