We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e05c3b commit 68fc193Copy full SHA for 68fc193
1 file changed
dms_datastore/auto_screen.py
@@ -9,6 +9,7 @@
9
import copy
10
import pandas as pd
11
import matplotlib.pyplot as plt
12
+from dms_datastore.logging_config import configure_logging, resolve_loglevel
13
from dms_datastore.read_ts import *
14
from vtools.functions.error_detect import *
15
from vtools.data.timeseries import to_dataframe
@@ -133,7 +134,7 @@ def plot_anomalies(
133
134
raise ValueError("Time series could not be plotted")
135
ax0.legend()
136
if plot_label is None:
- plot_label = f"Station: {station_id} Subloc: {subloc} Param {param}"
137
+ plot_label = f"Station: ??? Subloc: ??? Param ???"
138
ax0.set_title(plot_label)
139
ts_masked = ts.mask(mask).interpolate(limit=gap_fill_final)
140
ax1.plot(ts_masked.index, ts_masked.value)
0 commit comments