From 044db609c949a3fe0fdf06bc1f825ab7fb3cb762 Mon Sep 17 00:00:00 2001 From: John Gerrard Holland Date: Wed, 13 Mar 2024 17:54:36 -0400 Subject: [PATCH] revert change to boot.ci call --- src/icesat2waves/local_modules/m_general_ph3.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/icesat2waves/local_modules/m_general_ph3.py b/src/icesat2waves/local_modules/m_general_ph3.py index 31cc322..cf709d1 100644 --- a/src/icesat2waves/local_modules/m_general_ph3.py +++ b/src/icesat2waves/local_modules/m_general_ph3.py @@ -1748,7 +1748,8 @@ def RAMSAC_regression_bootstrap(time, freq, time_lin_arg=None, plot=False, **kwa RAMS_predicted_line = time_lin * RAMS_slope + RAMS_intercept _logger.debug("%s %s", RAMS_slope, RAMS_intercept) - RAMS_out=boot.ci((time, freq), simple_RAMSAC_regression_estimator, method="bca", **kwargs + RAMS_out = boot.ci( + (time, freq), simple_RAMSAC_regression_estimator, method="bca", **kwargs ) slope = np.append(RAMS_slope, RAMS_out[:, 0])