Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 11, 2024
1 parent 4e6608d commit d6fce9b
Showing 1 changed file with 41 additions and 11 deletions.
52 changes: 41 additions & 11 deletions tests/test_sdba/test_loess.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from __future__ import annotations

import logging

import numpy as np
import pandas as pd
import pytest
Expand Down Expand Up @@ -77,17 +75,49 @@ def test_loess_smoothing_nan(use_dask):
# (random array taken from np.random.randn)
data = np.array(
[
-0.993, -0.980, -0.452, -0.076, 0.447,
0.389, 2.408, 0.966, -0.793, 0.090,
-0.173, 1.713, -1.579, 0.454, -0.272,
-0.005, -0.926, -2.022, -1.661, -0.493,
-0.643, 0.891, 0.194, 0.086, 0.983,
-1.048, 2.032, 1.174, -0.441, -0.204,
-1.126, 0.933, 1.987, 0.638, 0.789,
0.767, 0.676, -1.028, 1.422, 0.453,
-0.993,
-0.980,
-0.452,
-0.076,
0.447,
0.389,
2.408,
0.966,
-0.793,
0.090,
-0.173,
1.713,
-1.579,
0.454,
-0.272,
-0.005,
-0.926,
-2.022,
-1.661,
-0.493,
-0.643,
0.891,
0.194,
0.086,
0.983,
-1.048,
2.032,
1.174,
-0.441,
-0.204,
-1.126,
0.933,
1.987,
0.638,
0.789,
0.767,
0.676,
-1.028,
1.422,
0.453,
]
)
data = data.reshape(2,2,10)
data = data.reshape(2, 2, 10)
data[0, 0] = [np.nan] * 10
da = xr.DataArray(
data,
Expand Down

0 comments on commit d6fce9b

Please sign in to comment.