summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/plotter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plotter.py b/lib/plotter.py
index 78f3f90..2508676 100755
--- a/lib/plotter.py
+++ b/lib/plotter.py
@@ -332,7 +332,7 @@ def plot_param_fit(
def boxplot(ticks, measurements, xlabel="", ylabel="", modeldata=None, output=None):
fig, ax1 = plt.subplots(figsize=(10, 6))
- ax1.set_title("dfatool unparam")
+ ax1.set_title(f"dfatool unparam (n={len(measurements[0])})")
plt.subplots_adjust(left=0.1, right=0.95, top=0.95, bottom=0.1)
bp = plt.boxplot(measurements, notch=0, sym="+", vert=1, whis=1.5)