From 4e7982fbce269b101660ed266b4e0dbe37fc6a33 Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Tue, 1 Aug 2023 17:32:16 -0800 Subject: [PATCH] Linting --- examples/advanced/plot_standardization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/advanced/plot_standardization.py b/examples/advanced/plot_standardization.py index b0128f34..34fbe26d 100644 --- a/examples/advanced/plot_standardization.py +++ b/examples/advanced/plot_standardization.py @@ -99,7 +99,7 @@ # %% # We perform a scale-correction for the standardization, to ensure that the spread of the data is exactly 1. -# The NMAD is used as a robust measure for the spread (see :ref:`robuststats-nmad`). +# The NMAD is used as a robust measure for the spread (see :ref:`robuststats-nmad`). print(f"NMAD before scale-correction: {nmad(z_dh.data):.1f}") scale_fac_std = nmad(z_dh.data) z_dh = z_dh / scale_fac_std