Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahG-579462 committed Dec 11, 2024
1 parent d6fce9b commit 82e7cdf
Showing 1 changed file with 13 additions and 41 deletions.
54 changes: 13 additions & 41 deletions tests/test_sdba/test_loess.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from __future__ import annotations

import logging

import numpy as np
import pandas as pd
import pytest
Expand Down Expand Up @@ -73,50 +75,20 @@ def test_loess_smoothing(use_dask, open_dataset):
def test_loess_smoothing_nan(use_dask):
# create data with one axis full of nan
# (random array taken from np.random.randn)
# fmt: off
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,
]
)
)
# fmt: on
data = data.reshape(2, 2, 10)
data[0, 0] = [np.nan] * 10
da = xr.DataArray(
Expand Down

0 comments on commit 82e7cdf

Please sign in to comment.