1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366
|
from __future__ import annotations
import itertools
import logging
import warnings
from collections.abc import Callable
from functools import partial, reduce
from typing import TYPE_CHECKING, Any
from unittest.mock import MagicMock, patch
import numpy as np
import pandas as pd
import pytest
from numpy_groupies.aggregate_numpy import aggregate
import flox
import flox.dask
from flox import set_options, xrutils
from flox import xrdtypes as dtypes
from flox.aggregations import Aggregation, _initialize_aggregation
from flox.cohorts import find_group_cohorts
from flox.core import (
HAS_NUMBAGG,
_choose_engine,
_convert_expected_groups_to_index,
_validate_reindex,
groupby_reduce,
)
from flox.dask import _normalize_indexes, subset_to_blocks
from flox.factorize import factorize_
from flox.lib import _is_sparse_supported_reduction
from flox.rechunk import _get_optimal_chunks_for_groups, rechunk_for_blockwise, rechunk_for_cohorts
from flox.reindex import ReindexArrayType, ReindexStrategy, reindex_
from flox.scan import groupby_scan
from . import (
ALL_FUNCS,
BLOCKWISE_FUNCS,
SCIPY_STATS_FUNCS,
assert_equal,
assert_equal_tuple,
has_cubed,
has_dask,
has_sparse,
raise_if_dask_computes,
requires_cubed,
requires_dask,
requires_sparse,
to_numpy,
)
logger = logging.getLogger("flox")
logger.setLevel(logging.DEBUG)
labels = np.array([0, 0, 2, 2, 2, 1, 1, 2, 2, 1, 1, 0])
nan_labels = labels.astype(float) # copy
nan_labels[:5] = np.nan
labels2d = np.array([labels[:5], np.flip(labels[:5])])
if has_dask:
import dask
import dask.array as da
from dask.array import from_array
dask.config.set(scheduler="sync")
else:
def dask_array_ones(*args):
return None
if has_cubed:
import cubed
DEFAULT_QUANTILE = 0.9
REINDEX_SPARSE_STRAT = ReindexStrategy(blockwise=False, array_type=ReindexArrayType.SPARSE_COO)
REINDEX_SPARSE_PARAM = pytest.param(
REINDEX_SPARSE_STRAT, marks=(requires_dask, pytest.mark.skipif(not has_sparse, reason="no sparse"))
)
if TYPE_CHECKING:
from flox.core import T_Agg, T_Engine, T_ExpectedGroupsOpt, T_Method
def _get_array_func(func: str) -> Callable:
if func == "count":
def npfunc(x, **kwargs):
x = np.asarray(x)
return (~xrutils.isnull(x)).sum(**kwargs)
elif func in ["nanfirst", "nanlast"]:
npfunc = getattr(xrutils, func)
elif func in SCIPY_STATS_FUNCS:
import scipy.stats
if "nan" in func:
func = func[3:]
nan_policy = "omit"
else:
nan_policy = "propagate"
def npfunc(x, **kwargs):
spfunc = partial(getattr(scipy.stats, func), nan_policy=nan_policy)
with warnings.catch_warnings():
warnings.filterwarnings("ignore", r"After omitting NaNs, one or more axis-slices")
result = getattr(spfunc(x, **kwargs), func)
return result
else:
npfunc = getattr(np, func)
return npfunc
def test_alignment_error():
da = np.ones((12,))
labels = np.ones((5,))
with pytest.raises(ValueError):
groupby_reduce(da, labels, func="mean")
@pytest.mark.parametrize("dtype", (float, int))
@pytest.mark.parametrize("chunk", [False, pytest.param(True, marks=requires_dask)])
# TODO: make this intp when python 3.8 is dropped
@pytest.mark.parametrize("expected_groups", [None, [0, 1, 2], np.array([0, 1, 2], dtype=np.int64)])
@pytest.mark.parametrize(
"func, array, by, expected",
[
("sum", np.ones((12,)), labels, [3, 4, 5]), # form 1
("sum", np.ones((12,)), nan_labels, [1, 4, 2]), # form 1
("sum", np.ones((2, 12)), labels, [[3, 4, 5], [3, 4, 5]]), # form 3
("sum", np.ones((2, 12)), nan_labels, [[1, 4, 2], [1, 4, 2]]), # form 3
(
"sum",
np.ones((2, 12)),
np.array([labels, labels]),
[6, 8, 10],
), # form 1 after reshape
("sum", np.ones((2, 12)), np.array([nan_labels, nan_labels]), [2, 8, 4]),
# (np.ones((12,)), np.array([labels, labels])), # form 4
("count", np.ones((12,)), labels, [3, 4, 5]), # form 1
("count", np.ones((12,)), nan_labels, [1, 4, 2]), # form 1
("count", np.ones((2, 12)), labels, [[3, 4, 5], [3, 4, 5]]), # form 3
("count", np.ones((2, 12)), nan_labels, [[1, 4, 2], [1, 4, 2]]), # form 3
(
"count",
np.ones((2, 12)),
np.array([labels, labels]),
[6, 8, 10],
), # form 1 after reshape
("count", np.ones((2, 12)), np.array([nan_labels, nan_labels]), [2, 8, 4]),
("nanmean", np.ones((12,)), labels, [1, 1, 1]), # form 1
("nanmean", np.ones((12,)), nan_labels, [1, 1, 1]), # form 1
("nanmean", np.ones((2, 12)), labels, [[1, 1, 1], [1, 1, 1]]), # form 3
("nanmean", np.ones((2, 12)), nan_labels, [[1, 1, 1], [1, 1, 1]]), # form 3
("nanmean", np.ones((2, 12)), np.array([labels, labels]), [1, 1, 1]),
("nanmean", np.ones((2, 12)), np.array([nan_labels, nan_labels]), [1, 1, 1]),
# (np.ones((12,)), np.array([labels, labels])), # form 4
],
)
def test_groupby_reduce(
engine: T_Engine,
func: T_Agg,
array: np.ndarray,
by: np.ndarray,
expected: list[float],
expected_groups: T_ExpectedGroupsOpt,
chunk: bool,
dtype: np.typing.DTypeLike,
) -> None:
array = array.astype(dtype)
if chunk:
array = da.from_array(array, chunks=(3,) if array.ndim == 1 else (1, 3))
by = da.from_array(by, chunks=(3,) if by.ndim == 1 else (1, 3))
if func == "mean" or func == "nanmean":
expected_result = np.array(expected, dtype=np.float64)
elif func == "sum":
expected_result = np.array(expected, dtype=dtypes._maybe_promote_int(array.dtype))
elif func == "count":
expected_result = np.array(expected, dtype=np.intp)
(result, *groups) = groupby_reduce(
array,
by,
func=func,
expected_groups=expected_groups,
fill_value=123,
engine=engine,
)
(groups_array,) = groups
# we use pd.Index(expected_groups).to_numpy() which is always int64
# for the values in this test
if expected_groups is None:
g_dtype = by.dtype
elif isinstance(expected_groups, np.ndarray):
g_dtype = expected_groups.dtype
else:
g_dtype = np.dtype(np.int64)
assert_equal(groups_array, np.array([0, 1, 2], g_dtype))
assert_equal(expected_result, result)
def gen_array_by(size, func):
by = np.ones(size[-1])
rng = np.random.default_rng(12345)
array = rng.random(tuple(6 if s == 1 else s for s in size))
if ("nan" in func or "fill" in func) and "nanarg" not in func:
array[[1, 4, 5], ...] = np.nan
elif "nanarg" in func and len(size) > 1:
array[[1, 4, 5], 1] = np.nan
if func in ["any", "all"]:
array = array > 0.5
return array, by
@pytest.mark.parametrize("to_sparse", [pytest.param(True, marks=requires_sparse), False])
@pytest.mark.parametrize(
"chunks",
[
None,
pytest.param(-1, marks=requires_dask),
pytest.param(3, marks=requires_dask),
pytest.param(4, marks=requires_dask),
],
)
@pytest.mark.parametrize("size", [(1, 12), (12,), (12, 9)])
@pytest.mark.parametrize("nby", [1, 2, 3])
@pytest.mark.parametrize("add_nan_by", [True, False])
@pytest.mark.parametrize("func", ALL_FUNCS)
def test_groupby_reduce_all(to_sparse, nby, size, chunks, func, add_nan_by, engine):
if ("arg" in func and engine in ["flox", "numbagg"]) or (func in BLOCKWISE_FUNCS and chunks != -1):
pytest.skip()
array, by = gen_array_by(size, func)
if to_sparse:
import sparse
array = sparse.COO.from_numpy(array)
if not _is_sparse_supported_reduction(func):
pytest.skip()
if chunks:
array = dask.array.from_array(array, chunks=chunks)
by = (by,) * nby
by = [b + idx for idx, b in enumerate(by)]
if add_nan_by:
for idx in range(nby):
by[idx][2 * idx : 2 * idx + 3] = np.nan
by = tuple(by)
nanmask = reduce(np.logical_or, (np.isnan(b) for b in by))
finalize_kwargs = [{}]
if "var" in func or "std" in func:
finalize_kwargs = finalize_kwargs + [{"ddof": 1}, {"ddof": 0}]
fill_value = np.nan
tolerance = {"rtol": 1e-13, "atol": 1e-15}
elif "quantile" in func:
finalize_kwargs = [
{"q": DEFAULT_QUANTILE},
{"q": [DEFAULT_QUANTILE / 2, DEFAULT_QUANTILE]},
]
fill_value = None
tolerance = None
else:
fill_value = None
tolerance = None
# for constructing expected
array_func = _get_array_func(func)
for kwargs in finalize_kwargs:
if "quantile" in func and isinstance(kwargs["q"], list) and engine != "flox":
continue
flox_kwargs = dict(func=func, engine=engine, finalize_kwargs=kwargs, fill_value=fill_value)
with np.errstate(invalid="ignore", divide="ignore"):
with warnings.catch_warnings():
warnings.filterwarnings("ignore", r"All-NaN (slice|axis) encountered")
warnings.filterwarnings("ignore", r"Degrees of freedom <= 0 for slice")
warnings.filterwarnings("ignore", r"Mean of empty slice")
# computing silences a bunch of dask warnings
array_ = to_numpy(array)
if "arg" in func and add_nan_by:
# NaNs are in by, but we can't call np.argmax([..., NaN, .. ])
# That would return index of the NaN
# This way, we insert NaNs where there are NaNs in by, and
# call np.nanargmax
func_ = f"nan{func}" if "nan" not in func else func
array_[..., nanmask] = np.nan
expected = getattr(np, func_)(array_, axis=-1, **kwargs)
else:
expected = array_func(array_[..., ~nanmask], axis=-1, **kwargs)
for _ in range(nby):
expected = np.expand_dims(expected, axis=-1)
if func in BLOCKWISE_FUNCS:
assert chunks == -1
actual, *groups = groupby_reduce(array, *by, **flox_kwargs)
if "quantile" in func and isinstance(kwargs["q"], list):
assert actual.ndim == expected.ndim == (array.ndim + nby)
else:
assert actual.ndim == expected.ndim == (array.ndim + nby - 1)
expected_groups = tuple(np.array([idx + 1.0]) for idx in range(nby))
for actual_group, expect in zip(groups, expected_groups):
assert_equal(actual_group, expect)
if "arg" in func:
assert actual.dtype.kind == "i"
assert_equal(expected, actual, tolerance)
if "nan" not in func and "arg" not in func:
# test non-NaN skipping behaviour when NaNs are present
nanned = array_.copy()
# remove nans in by to reduce complexity
# We are checking for consistent behaviour with NaNs in array
by_ = tuple(np.nan_to_num(b, nan=np.nanmin(b)) for b in by)
nanned[[1, 4, 5], ...] = np.nan
nanned.reshape(-1)[0] = np.nan
actual, *_ = groupby_reduce(nanned, *by_, **flox_kwargs)
expected_0 = array_func(nanned, axis=-1, **kwargs)
for _ in range(nby):
expected_0 = np.expand_dims(expected_0, -1)
assert_equal(expected_0, actual, tolerance)
if not has_dask or chunks is None or func in BLOCKWISE_FUNCS:
continue
params = list(
itertools.product(
["map-reduce"],
[True, False, None, REINDEX_SPARSE_STRAT],
)
)
params.extend(itertools.product(["cohorts"], [False, None]))
if chunks == -1:
params.extend([("blockwise", None)])
combine_error = RuntimeError("This combine should not have been called.")
for method, reindex in params:
if isinstance(reindex, ReindexStrategy) and not _is_sparse_supported_reduction(func):
continue
call = partial(
groupby_reduce,
array,
*by,
method=method,
reindex=reindex,
**flox_kwargs,
)
if ("arg" in func or func in ["first", "last"]) and reindex is True:
# simple_combine with argreductions not supported right now
with pytest.raises(NotImplementedError):
call()
continue
if method == "blockwise":
# no combine necessary
mocks = {
"_simple_combine": MagicMock(side_effect=combine_error),
"_grouped_combine": MagicMock(side_effect=combine_error),
}
else:
if "arg" not in func:
# make sure we use simple combine
mocks = {"_grouped_combine": MagicMock(side_effect=combine_error)}
else:
mocks = {"_simple_combine": MagicMock(side_effect=combine_error)}
with patch.multiple(flox.dask, **mocks):
actual, *groups = call()
for actual_group, expect in zip(groups, expected_groups):
assert_equal(actual_group, expect, tolerance)
if "arg" in func:
assert actual.dtype.kind == "i"
if isinstance(reindex, ReindexStrategy):
import sparse
expected = sparse.COO.from_numpy(expected)
assert_equal(actual, expected, tolerance)
@requires_dask
@pytest.mark.parametrize("size", ((12,), (12, 5)))
@pytest.mark.parametrize("func", ("argmax", "nanargmax", "argmin", "nanargmin"))
def test_arg_reduction_dtype_is_int(size, func):
"""avoid bugs being hidden by the xfail in the above test."""
rng = np.random.default_rng(12345)
array = rng.random(size)
by = np.ones(size[-1])
if "nanarg" in func and len(size) > 1:
array[[1, 4, 5], 1] = np.nan
expected = getattr(np, func)(array, axis=-1)
expected = np.expand_dims(expected, -1)
actual, _ = groupby_reduce(array, by, func=func, engine="numpy")
assert actual.dtype.kind == "i"
actual, _ = groupby_reduce(da.from_array(array, chunks=3), by, func=func, engine="numpy")
assert actual.dtype.kind == "i"
def test_groupby_reduce_count():
array = np.array([0, 0, np.nan, np.nan, np.nan, 1, 1])
labels = np.array(["a", "b", "b", "b", "c", "c", "c"])
result, _ = groupby_reduce(array, labels, func="count")
assert_equal(result, np.array([1, 1, 2], dtype=np.intp))
def test_func_is_aggregation():
from flox.aggregations import mean
array = np.array([0, 0, np.nan, np.nan, np.nan, 1, 1])
labels = np.array(["a", "b", "b", "b", "c", "c", "c"])
expected, _ = groupby_reduce(array, labels, func="mean")
actual, _ = groupby_reduce(array, labels, func=mean)
assert_equal(actual, expected)
@requires_dask
@pytest.mark.parametrize("func", ("sum", "prod"))
@pytest.mark.parametrize("dtype", [np.float32, np.float64, np.int32, np.int64])
def test_groupby_reduce_preserves_dtype(dtype, func):
array = np.ones((2, 12), dtype=dtype)
by = np.array([labels] * 2)
result, _ = groupby_reduce(from_array(array, chunks=(-1, 4)), by, func=func)
expect_dtype = dtypes._maybe_promote_int(array.dtype)
assert result.dtype == expect_dtype
def test_numpy_reduce_nd_md():
array = np.ones((2, 12))
by = np.array([labels] * 2)
expected = aggregate(by.ravel(), array.ravel(), func="sum")
result, groups = groupby_reduce(array, by, func="sum", fill_value=123)
actual = reindex_(result, groups, pd.Index(np.unique(by)), axis=0, fill_value=0)
np.testing.assert_equal(expected, actual)
array = np.ones((4, 2, 12))
by = np.array([labels] * 2)
expected = aggregate(by.ravel(), array.reshape(4, 24), func="sum", axis=-1, fill_value=0)
result, groups = groupby_reduce(array, by, func="sum")
actual = reindex_(result, groups, pd.Index(np.unique(by)), axis=-1, fill_value=0)
assert_equal(expected, actual)
array = np.ones((4, 2, 12))
by = np.broadcast_to(np.array([labels] * 2), array.shape)
expected = aggregate(by.ravel(), array.ravel(), func="sum", axis=-1)
result, groups = groupby_reduce(array, by, func="sum")
actual = reindex_(result, groups, pd.Index(np.unique(by)), axis=-1, fill_value=0)
assert_equal(expected, actual)
array = np.ones((2, 3, 4))
by = np.ones((2, 3, 4))
actual, _ = groupby_reduce(array, by, axis=(1, 2), func="sum")
expected = np.sum(array, axis=(1, 2), keepdims=True).squeeze(2)
assert_equal(actual, expected)
@requires_dask
@pytest.mark.parametrize("reindex", [None, False, True, REINDEX_SPARSE_PARAM])
@pytest.mark.parametrize("func", ALL_FUNCS)
@pytest.mark.parametrize("add_nan", [False, True])
@pytest.mark.parametrize("dtype", (float,))
@pytest.mark.parametrize(
"shape, array_chunks, group_chunks",
[
((12,), (3,), 3), # form 1
((12,), (3,), (4,)), # form 1, chunks not aligned
((12,), ((3, 5, 4),), (2,)), # form 1
((10, 12), (3, 3), -1), # form 3
((10, 12), (3, 3), 3), # form 3
],
)
def test_groupby_agg_dask(func, shape, array_chunks, group_chunks, add_nan, dtype, engine, reindex):
"""Tests groupby_reduce with dask arrays against groupby_reduce with numpy arrays"""
if func in ["first", "last"] or func in BLOCKWISE_FUNCS:
pytest.skip()
if "arg" in func and (engine in ["flox", "numbagg"] or reindex):
pytest.skip()
if isinstance(reindex, ReindexStrategy) and not _is_sparse_supported_reduction(func):
pytest.skip()
rng = np.random.default_rng(12345)
array = dask.array.from_array(rng.random(shape), chunks=array_chunks).astype(dtype)
array = dask.array.ones(shape, chunks=array_chunks)
labels = np.array([0, 0, 2, 2, 2, 1, 1, 2, 2, 1, 1, 0])
if add_nan:
labels = labels.astype(float)
labels[:3] = np.nan # entire block is NaN when group_chunks=3
labels[-2:] = np.nan
kwargs = dict(
func=func,
expected_groups=[0, 1, 2],
fill_value=False if func in ["all", "any"] else 123,
)
expected, _ = groupby_reduce(array.compute(), labels, engine="numpy", **kwargs)
actual, _ = groupby_reduce(array.compute(), labels, engine=engine, **kwargs)
assert_equal(actual, expected)
with raise_if_dask_computes():
actual, _ = groupby_reduce(array, labels, engine=engine, **kwargs)
assert_equal(actual, expected)
by = from_array(labels, group_chunks)
with raise_if_dask_computes():
actual, _ = groupby_reduce(array, by, engine=engine, **kwargs)
assert_equal(expected, actual)
kwargs["expected_groups"] = [0, 2, 1]
with raise_if_dask_computes():
actual, groups = groupby_reduce(array, by, engine=engine, **kwargs, sort=False)
assert_equal(groups, np.array([0, 2, 1], dtype=np.int64))
assert_equal(expected, actual[..., [0, 2, 1]])
with raise_if_dask_computes():
actual, groups = groupby_reduce(array, by, engine=engine, **kwargs, sort=True)
assert_equal(groups, np.array([0, 1, 2], np.int64))
assert_equal(expected, actual)
@requires_cubed
@pytest.mark.parametrize("reindex", [True])
@pytest.mark.parametrize("func", ALL_FUNCS)
@pytest.mark.parametrize("add_nan", [False, True])
@pytest.mark.parametrize(
"shape, array_chunks, group_chunks",
[
((12,), (3,), 3), # form 1
],
)
def test_groupby_agg_cubed(func, shape, array_chunks, group_chunks, add_nan, engine, reindex):
"""Tests groupby_reduce with cubed arrays against groupby_reduce with numpy arrays"""
if func in ["first", "last", "var", "nanvar", "std", "nanstd"] or func in BLOCKWISE_FUNCS:
pytest.skip()
if "arg" in func and (engine in ["flox", "numbagg"] or reindex):
pytest.skip()
array = cubed.array_api.ones(shape, chunks=array_chunks)
labels = np.array([0, 0, 2, 2, 2, 1, 1, 2, 2, 1, 1, 0])
if add_nan:
labels = labels.astype(float)
labels[:3] = np.nan # entire block is NaN when group_chunks=3
labels[-2:] = np.nan
kwargs = dict(
func=func,
expected_groups=[0, 1, 2],
fill_value=False if func in ["all", "any"] else 123,
reindex=reindex,
)
expected, _ = groupby_reduce(array.compute(), labels, engine="numpy", **kwargs)
actual, _ = groupby_reduce(array.compute(), labels, engine=engine, **kwargs)
assert_equal(actual, expected)
# TODO: raise_if_cubed_computes
actual, _ = groupby_reduce(array, labels, engine=engine, **kwargs)
assert_equal(expected, actual)
def test_numpy_reduce_axis_subset(engine):
# TODO: add NaNs
by = labels2d
array = np.ones_like(by, dtype=np.int64)
kwargs = dict(func="count", engine=engine, fill_value=0)
result, _ = groupby_reduce(array, by, **kwargs, axis=1)
assert_equal(result, np.array([[2, 3], [2, 3]], dtype=np.intp))
by = np.broadcast_to(labels2d, (3, *labels2d.shape))
array = np.ones_like(by)
result, _ = groupby_reduce(array, by, **kwargs, axis=1)
subarr = np.array([[1, 1], [1, 1], [0, 2], [1, 1], [1, 1]], dtype=np.intp)
expected = np.tile(subarr, (3, 1, 1))
assert_equal(result, expected)
result, _ = groupby_reduce(array, by, **kwargs, axis=2)
subarr = np.array([[2, 3], [2, 3]], dtype=np.intp)
expected = np.tile(subarr, (3, 1, 1))
assert_equal(result, expected)
result, _ = groupby_reduce(array, by, **kwargs, axis=(1, 2))
expected = np.array([[4, 6], [4, 6], [4, 6]], dtype=np.intp)
assert_equal(result, expected)
result, _ = groupby_reduce(array, by, **kwargs, axis=(2, 1))
assert_equal(result, expected)
result, _ = groupby_reduce(array, by[0, ...], **kwargs, axis=(1, 2))
expected = np.array([[4, 6], [4, 6], [4, 6]], dtype=np.intp)
assert_equal(result, expected)
@requires_dask
def test_dask_reduce_axis_subset():
by = labels2d
array = np.ones_like(by, dtype=np.int64)
with raise_if_dask_computes():
result, _ = groupby_reduce(
da.from_array(array, chunks=(2, 3)),
da.from_array(by, chunks=(2, 2)),
func="count",
axis=1,
expected_groups=[0, 2],
)
assert_equal(result, np.array([[2, 3], [2, 3]], dtype=np.intp))
by = np.broadcast_to(labels2d, (3, *labels2d.shape))
array = np.ones_like(by)
subarr = np.array([[1, 1], [1, 1], [123, 2], [1, 1], [1, 1]], dtype=np.intp)
expected = np.tile(subarr, (3, 1, 1))
with raise_if_dask_computes():
result, _ = groupby_reduce(
da.from_array(array, chunks=(1, 2, 3)),
da.from_array(by, chunks=(2, 2, 2)),
func="count",
axis=1,
expected_groups=[0, 2],
fill_value=123,
)
assert_equal(result, expected)
subarr = np.array([[2, 3], [2, 3]], dtype=np.intp)
expected = np.tile(subarr, (3, 1, 1))
with raise_if_dask_computes():
result, _ = groupby_reduce(
da.from_array(array, chunks=(1, 2, 3)),
da.from_array(by, chunks=(2, 2, 2)),
func="count",
axis=2,
expected_groups=[0, 2],
)
assert_equal(result, expected)
with pytest.raises(NotImplementedError):
groupby_reduce(
da.from_array(array, chunks=(1, 3, 2)),
da.from_array(by, chunks=(2, 2, 2)),
func="count",
axis=2,
)
@pytest.mark.parametrize("group_idx", [[0, 1, 0], [0, 0, 1], [1, 0, 0], [1, 1, 0]])
@pytest.mark.parametrize(
"func",
[
# "first", "last",
"nanfirst",
"nanlast",
],
)
@pytest.mark.parametrize(
"chunks",
[
None,
pytest.param(1, marks=pytest.mark.skipif(not has_dask, reason="no dask")),
pytest.param(2, marks=pytest.mark.skipif(not has_dask, reason="no dask")),
pytest.param(3, marks=pytest.mark.skipif(not has_dask, reason="no dask")),
],
)
def test_first_last_useless(func, chunks, group_idx):
array = np.array([[0, 0, 0], [0, 0, 0]], dtype=np.int8)
if chunks is not None:
array = dask.array.from_array(array, chunks=chunks)
actual, _ = groupby_reduce(array, np.array(group_idx), func=func, engine="numpy")
expected = np.array([[0, 0], [0, 0]], dtype=np.int8)
assert_equal(actual, expected)
@pytest.mark.parametrize("func", ["first", "last", "nanfirst", "nanlast"])
@pytest.mark.parametrize("axis", [(0, 1)])
def test_first_last_disallowed(axis, func):
with pytest.raises(ValueError):
groupby_reduce(np.empty((2, 3, 2)), np.ones((2, 3, 2)), func=func, axis=axis)
@requires_dask
@pytest.mark.parametrize("func", ["nanfirst", "nanlast"])
@pytest.mark.parametrize("axis", [None, (0, 1, 2)])
def test_nanfirst_nanlast_disallowed_dask(axis, func):
with pytest.raises(ValueError):
groupby_reduce(dask.array.empty((2, 3, 2)), np.ones((2, 3, 2)), func=func, axis=axis)
@requires_dask
@pytest.mark.xfail
@pytest.mark.parametrize("func", ["first", "last"])
def test_first_last_allowed_dask(func):
# blockwise should be fine... but doesn't work now.
groupby_reduce(dask.array.empty((2, 3, 2)), np.ones((2, 3, 2)), func=func, axis=-1)
@requires_dask
@pytest.mark.xfail
@pytest.mark.parametrize("func", ["first", "last"])
def test_first_last_disallowed_dask(func):
# blockwise is fine
groupby_reduce(dask.array.empty((2, 3, 2)), np.ones((2, 3, 2)), func=func, axis=-1)
# anything else is not.
with pytest.raises(ValueError):
groupby_reduce(
dask.array.empty((2, 3, 2), chunks=(-1, -1, 1)),
np.ones((2,)),
func=func,
axis=-1,
)
@requires_dask
@pytest.mark.parametrize("func", ALL_FUNCS)
@pytest.mark.parametrize("axis", [None, (0, 1, 2), (0, 1), (0, 2), (1, 2), 0, 1, 2, (0,), (1,), (2,)])
def test_groupby_reduce_axis_subset_against_numpy(func, axis, engine):
if ("arg" in func and engine in ["flox", "numbagg"]) or func in BLOCKWISE_FUNCS:
pytest.skip()
if not isinstance(axis, int):
if "arg" in func and (axis is None or len(axis) > 1):
pytest.skip()
if ("first" in func or "last" in func) and (axis is not None and len(axis) not in [1, 3]):
pytest.skip()
if func in ["all", "any"]:
fill_value = False
else:
fill_value = 123
if "var" in func or "std" in func:
tolerance = {"rtol": 1e-14, "atol": 1e-16}
else:
tolerance = None
# tests against the numpy output to make sure dask compute matches
by = np.broadcast_to(labels2d, (3, *labels2d.shape))
rng = np.random.default_rng(12345)
array = rng.random(by.shape)
kwargs = dict(func=func, axis=axis, expected_groups=[0, 2], fill_value=fill_value)
expected, _ = groupby_reduce(array, by, engine=engine, **kwargs)
if engine == "flox":
expected_npg, _ = groupby_reduce(array, by, **kwargs, engine="numpy")
assert_equal(expected_npg, expected)
if func in ["all", "any"]:
fill_value = False
else:
fill_value = 123
if "var" in func or "std" in func:
tolerance = {"rtol": 1e-14, "atol": 1e-16}
else:
tolerance = None
# tests against the numpy output to make sure dask compute matches
by = np.broadcast_to(labels2d, (3, *labels2d.shape))
rng = np.random.default_rng(12345)
array = rng.random(by.shape)
kwargs = dict(func=func, axis=axis, expected_groups=[0, 2], fill_value=fill_value)
expected, _ = groupby_reduce(array, by, engine=engine, **kwargs)
if engine == "flox":
expected_npg, _ = groupby_reduce(array, by, **kwargs, engine="numpy")
assert_equal(expected_npg, expected)
if ("first" in func or "last" in func) and (
axis is None or (not isinstance(axis, int) and len(axis) != 1)
):
return
with raise_if_dask_computes():
actual, _ = groupby_reduce(
da.from_array(array, chunks=(-1, 2, 3)),
da.from_array(by, chunks=(-1, 2, 2)),
engine=engine,
**kwargs,
)
assert_equal(actual, expected, tolerance)
@pytest.mark.parametrize(
"reindex, chunks",
[
(None, None),
pytest.param(False, (2, 2, 3), marks=requires_dask),
pytest.param(True, (2, 2, 3), marks=requires_dask),
pytest.param(REINDEX_SPARSE_PARAM, (2, 2, 3), marks=requires_dask),
],
)
@pytest.mark.parametrize(
"axis, groups, expected_shape",
[
(2, [0, 1, 2], (3, 5, 3)),
(None, [0, 1, 2], (3,)), # global reduction; 0 shaped group axis
(None, [0], (1,)), # global reduction; 0 shaped group axis; 1 group
],
)
def test_groupby_reduce_nans(reindex, chunks, axis, groups, expected_shape, engine):
def _maybe_chunk(arr):
if chunks:
return da.from_array(arr, chunks=chunks)
else:
return arr
# test when entire by are NaNs
by = np.full((3, 5, 2), fill_value=np.nan)
array = np.ones_like(by)
# along an axis; requires expected_group
# TODO: this should check for fill_value
result, _ = groupby_reduce(
_maybe_chunk(array),
_maybe_chunk(by),
func="count",
expected_groups=groups,
axis=axis,
fill_value=0,
engine=engine,
reindex=reindex,
)
assert_equal(result, np.zeros(expected_shape, dtype=np.intp))
# now when subsets are NaN
# labels = np.array([0, 0, 1, 1, 1], dtype=float)
# labels2d = np.array([labels[:5], np.flip(labels[:5])])
# labels2d[0, :5] = np.nan
# labels2d[1, 5:] = np.nan
# by = np.broadcast_to(labels2d, (3, *labels2d.shape))
@requires_dask
@pytest.mark.parametrize(
"expected_groups, reindex",
[
(None, None),
(None, False),
([0, 1, 2], True),
([0, 1, 2], False),
pytest.param([0, 1, 2], REINDEX_SPARSE_PARAM),
],
)
def test_groupby_all_nan_blocks_dask(expected_groups, reindex, engine):
labels = np.array([0, 0, 2, 2, 2, 1, 1, 2, 2, 1, 1, 0])
nan_labels = labels.astype(float) # copy
nan_labels[:5] = np.nan
array, by, expected = (
np.ones((2, 12), dtype=np.int64),
np.array([nan_labels, nan_labels[::-1]]),
np.array([2, 8, 4], dtype=np.int64),
)
actual, _ = groupby_reduce(
da.from_array(array, chunks=(1, 3)),
da.from_array(by, chunks=(1, 3)),
func="sum",
expected_groups=expected_groups,
engine=engine,
reindex=reindex,
method="map-reduce",
)
assert_equal(actual, expected)
@pytest.mark.parametrize("axis", (0, 1, 2, -1))
def test_reindex(axis):
shape = [2, 2, 2]
fill_value = 0
array = np.broadcast_to(np.array([1, 2]), shape)
groups = np.array(["a", "b"])
expected_groups = pd.Index(["a", "b", "c"])
actual = reindex_(array, groups, expected_groups, fill_value=fill_value, axis=axis)
if axis < 0:
axis = array.ndim + axis
result_shape = tuple(len(expected_groups) if ax == axis else s for ax, s in enumerate(shape))
slicer = tuple(slice(None, s) for s in shape)
expected = np.full(result_shape, fill_value)
expected[slicer] = array
assert_equal(actual, expected)
@pytest.mark.xfail
def test_bad_npg_behaviour():
labels = np.array([0, 0, 2, 2, 2, 1, 1, 2, 2, 1, 1, 0], dtype=int)
# fmt: off
array = np.array([[1] * 12, [1] * 12])
# fmt: on
assert_equal(
aggregate(labels, array, axis=-1, func="argmax"),
np.array([[0, 5, 2], [0, 5, 2]]),
)
assert (
aggregate(
np.array([0, 1, 2, 0, 1, 2]),
np.array([-np.inf, 0, 0, -np.inf, 0, 0]),
func="max",
)[0]
== -np.inf
)
@pytest.mark.xfail
@pytest.mark.parametrize("func", ("nanargmax", "nanargmin"))
def test_npg_nanarg_bug(func):
array = np.array([1, 1, 2, 1, 1, np.nan, 6, 1])
labels = np.array([1, 1, 1, 1, 1, 1, 1, 1]) - 1
actual = aggregate(labels, array, func=func).astype(int)
expected = getattr(np, func)(array)
assert_equal(actual, expected)
@pytest.mark.parametrize(
"kwargs",
(
dict(expected_groups=np.array([1, 2, 4, 5]), isbin=True),
dict(expected_groups=pd.IntervalIndex.from_breaks([1, 2, 4, 5])),
),
)
@pytest.mark.parametrize("method", ["cohorts", "map-reduce"])
@pytest.mark.parametrize("chunk_labels", [False, True])
@pytest.mark.parametrize(
"chunks",
(
(),
pytest.param((1,), marks=requires_dask),
pytest.param((2,), marks=requires_dask),
),
)
def test_groupby_bins(chunk_labels, kwargs, chunks, engine, method) -> None:
array = [1, 1, 1, 1, 1, 1]
labels = [0.2, 1.5, 1.9, 2, 3, 20]
if method == "cohorts" and chunk_labels:
pytest.xfail()
if chunks:
array = dask.array.from_array(array, chunks=chunks)
if chunk_labels:
labels = dask.array.from_array(labels, chunks=chunks)
with raise_if_dask_computes():
actual, *groups = groupby_reduce(
array,
labels,
func="count",
fill_value=0,
engine=engine,
method=method,
**kwargs,
)
(groups_array,) = groups
expected = np.array([3, 1, 0], dtype=np.intp)
for left, right in zip(groups_array, pd.IntervalIndex.from_arrays([1, 2, 4], [2, 4, 5]).to_numpy()):
assert left == right
assert_equal(actual, expected)
@requires_dask
@pytest.mark.parametrize(
"inchunks, expected, expected_method",
[
[(1,) * 10, (3, 2, 2, 3), None],
[(2,) * 5, (3, 2, 2, 3), None],
[(3, 3, 3, 1), (3, 2, 5), None],
[(3, 1, 1, 2, 1, 1, 1), (3, 2, 2, 3), None],
[(3, 2, 2, 3), (3, 2, 2, 3), "blockwise"],
[(4, 4, 2), (3, 4, 3), None],
[(5, 5), (5, 5), "blockwise"],
[(6, 4), (5, 5), None],
[(7, 3), (7, 3), "blockwise"],
[(8, 2), (7, 3), None],
[(9, 1), (10,), None],
[(10,), (10,), "blockwise"],
],
)
def test_rechunk_for_blockwise(inchunks, expected, expected_method):
labels = np.array([1, 1, 1, 2, 2, 3, 3, 5, 5, 5])
assert _get_optimal_chunks_for_groups(inchunks, labels) == expected
# reversed
assert _get_optimal_chunks_for_groups(inchunks, labels[::-1]) == expected
with set_options(rechunk_blockwise_chunk_size_threshold=-1):
array = dask.array.ones(labels.size, chunks=(inchunks,))
method, array = rechunk_for_blockwise(array, -1, labels, force=False)
assert method == expected_method
assert array.chunks == (inchunks,)
method, array = rechunk_for_blockwise(array, -1, labels[::-1], force=False)
assert method == expected_method
assert array.chunks == (inchunks,)
@requires_dask
@pytest.mark.parametrize(
"expected, labels, chunks",
[
[[[0, 1, 2, 3]], [0, 1, 2, 0, 1, 2, 3], (3, 4)],
[[[0], [1], [2], [3]], [0, 1, 2, 0, 1, 2, 3], (2, 2, 2, 1)],
[[[0, 1, 2], [3]], [0, 1, 2, 0, 1, 2, 3], (3, 3, 1)],
[
[[0], [1, 2, 3, 4], [5]],
np.repeat(np.arange(6), [4, 4, 12, 2, 3, 4]),
(4, 8, 4, 9, 4),
],
],
)
def test_find_group_cohorts(expected, labels, chunks: tuple[int]) -> None:
# force merging of cohorts for the test
_, chunks_cohorts = find_group_cohorts(labels, (chunks,), merge=True)
actual = list(chunks_cohorts.values())
assert actual == expected, (actual, expected)
@requires_dask
def test_find_cohorts_missing_groups():
by = np.array([np.nan, np.nan, np.nan, 2.0, 2.0, 1.0, 1.0, 2.0, 2.0, 1.0, np.nan, np.nan])
kwargs = {"func": "sum", "expected_groups": [0, 1, 2], "fill_value": 123}
array = dask.array.ones_like(by, chunks=(3,))
actual, _ = groupby_reduce(array, by, method="cohorts", **kwargs)
expected, _ = groupby_reduce(array.compute(), by, **kwargs)
assert_equal(expected, actual)
@pytest.mark.parametrize("chunksize", [12, 13, 14, 24, 36, 48, 72, 71])
def test_verify_complex_cohorts(chunksize: int) -> None:
time = pd.Series(pd.date_range("2016-01-01", "2018-12-31 23:59", freq="h"))
chunks = (chunksize,) * (len(time) // chunksize)
by = np.array(time.dt.dayofyear.values)
if len(by) != sum(chunks):
chunks += (len(by) - sum(chunks),)
_, chunk_cohorts = find_group_cohorts(by - 1, (chunks,))
chunks_ = np.sort(np.concatenate(tuple(chunk_cohorts.keys())))
groups = np.sort(np.concatenate(tuple(chunk_cohorts.values())))
assert_equal(np.unique(chunks_).astype(np.int64), np.arange(len(chunks), dtype=np.int64))
assert_equal(groups.astype(np.int64), np.arange(366, dtype=np.int64))
@requires_dask
@pytest.mark.parametrize("chunksize", (12,) + tuple(range(1, 13)) + (-1,))
def test_method_guessing(chunksize):
# just a regression test
labels = np.tile(np.arange(0, 12), 30)
by = dask.array.from_array(labels, chunks=chunksize) - 1
preferred_method, chunks_cohorts = find_group_cohorts(labels, by.chunks[slice(-1, None)])
if chunksize == -1:
assert preferred_method == "blockwise"
assert chunks_cohorts == {(0,): list(range(12))}
elif chunksize in (1, 2, 3, 4, 6):
assert preferred_method == "cohorts"
assert len(chunks_cohorts) == 12 // chunksize
else:
assert preferred_method == "map-reduce"
assert chunks_cohorts == {}
@requires_dask
@pytest.mark.parametrize("ndim", [1, 2, 3])
def test_single_chunk_method_is_blockwise(ndim):
for by_ndim in range(1, ndim + 1):
chunks = (5,) * (ndim - by_ndim) + (-1,) * by_ndim
assert len(chunks) == ndim
array = dask.array.ones(shape=(10,) * ndim, chunks=chunks)
by = np.zeros(shape=(10,) * by_ndim, dtype=int)
method, chunks_cohorts = find_group_cohorts(
by, chunks=[array.chunks[ax] for ax in range(-by.ndim, 0)]
)
assert method == "blockwise"
assert chunks_cohorts == {(0,): [0]}
@requires_dask
@pytest.mark.parametrize(
"chunk_at,expected",
[
[1, ((1, 6, 1, 6, 1, 6, 1, 6, 1, 1),)],
[0, ((7, 7, 7, 7, 2),)],
[3, ((3, 4, 3, 4, 3, 4, 3, 4, 2),)],
],
)
def test_rechunk_for_cohorts(chunk_at, expected):
array = dask.array.ones((30,), chunks=7)
labels = np.arange(0, 30) % 7
rechunked = rechunk_for_cohorts(array, axis=-1, force_new_chunk_at=chunk_at, labels=labels)
assert rechunked.chunks == expected
@pytest.mark.parametrize("chunks", [None, pytest.param(3, marks=requires_dask)])
@pytest.mark.parametrize("fill_value", [123, np.nan])
@pytest.mark.parametrize("func", ALL_FUNCS)
def test_fill_value_behaviour(func, chunks, fill_value, engine):
# fill_value = np.nan tests promotion of int counts to float
# This is used by xarray
if (func in ["all", "any"] or "arg" in func) or func in BLOCKWISE_FUNCS:
pytest.skip()
npfunc = _get_array_func(func)
by = np.array([1, 2, 3, 1, 2, 3])
array = np.array([np.nan, 1, 1, np.nan, 1, 1])
if chunks:
array = dask.array.from_array(array, chunks)
actual, _ = groupby_reduce(
array,
by,
func=func,
engine=engine,
fill_value=fill_value,
expected_groups=[0, 1, 2, 3],
)
expected = np.array([fill_value, fill_value, npfunc([1.0, 1.0], axis=0), npfunc([1.0, 1.0], axis=0)])
assert_equal(actual, expected)
@requires_dask
@pytest.mark.parametrize("func", ["mean", "sum"])
@pytest.mark.parametrize("dtype", ["float32", "float64", "int32", "int64"])
def test_dtype_preservation(dtype, func, engine):
if engine == "numbagg":
# https://github.com/numbagg/numbagg/issues/121
pytest.skip()
if func == "sum":
expected = dtypes._maybe_promote_int(dtype)
elif func == "mean" and "int" in dtype:
expected = np.float64
else:
expected = np.dtype(dtype)
array = np.ones((20,), dtype=dtype)
by = np.ones(array.shape, dtype=int)
actual, _ = groupby_reduce(array, by, func=func, engine=engine)
assert actual.dtype == expected
array = dask.array.from_array(array, chunks=(4,))
actual, _ = groupby_reduce(array, by, func=func, engine=engine)
assert actual.dtype == expected
@requires_dask
@pytest.mark.parametrize("dtype", [np.float32, np.float64, np.int32, np.int64])
@pytest.mark.parametrize("labels_dtype", [np.float32, np.float64, np.int32, np.int64])
@pytest.mark.parametrize("method", ["map-reduce", "cohorts"])
def test_cohorts_map_reduce_consistent_dtypes(method, dtype, labels_dtype):
repeats = np.array([4, 4, 12, 2, 3, 4], dtype=np.int32)
labels = np.repeat(np.arange(6, dtype=labels_dtype), repeats)
array = dask.array.from_array(labels.astype(dtype), chunks=(4, 8, 4, 9, 4))
actual, actual_groups = groupby_reduce(array, labels, func="count", method=method)
assert_equal(actual_groups, np.arange(6, dtype=labels.dtype))
assert_equal(actual, repeats.astype(np.intp))
actual, actual_groups = groupby_reduce(array, labels, func="sum", method=method)
assert_equal(actual_groups, np.arange(6, dtype=labels.dtype))
expect_dtype = dtypes._maybe_promote_int(dtype)
assert_equal(actual, np.array([0, 4, 24, 6, 12, 20], dtype=expect_dtype))
@requires_dask
@pytest.mark.parametrize("func", ALL_FUNCS)
@pytest.mark.parametrize("axis", (-1, None))
@pytest.mark.parametrize("method", ["blockwise", "cohorts", "map-reduce"])
def test_cohorts_nd_by(func, method, axis, engine):
if (
("arg" in func and (axis is None or engine in ["flox", "numbagg"]))
or (method != "blockwise" and func in BLOCKWISE_FUNCS)
or (axis is None and ("first" in func or "last" in func))
):
pytest.skip()
if axis is not None and method != "map-reduce":
pytest.xfail()
o = dask.array.ones((3,), chunks=-1)
o2 = dask.array.ones((2, 3), chunks=-1)
array = dask.array.block([[o, 2 * o], [3 * o2, 4 * o2]])
by = array.compute().astype(np.int64)
by[0, 1] = 30
by[2, 1] = 40
by[0, 4] = 31
array = np.broadcast_to(array, (2, 3) + array.shape)
if func in ["any", "all"]:
fill_value = False
else:
fill_value = -123
kwargs = dict(func=func, engine=engine, method=method, axis=axis, fill_value=fill_value)
if "quantile" in func:
kwargs["finalize_kwargs"] = {"q": DEFAULT_QUANTILE}
actual, groups = groupby_reduce(array, by, **kwargs)
expected, sorted_groups = groupby_reduce(array.compute(), by, **kwargs)
assert_equal(groups, sorted_groups)
assert_equal(actual, expected)
actual, groups = groupby_reduce(array, by, sort=False, **kwargs)
assert_equal(groups, np.array([1, 30, 2, 31, 3, 4, 40], dtype=np.int64))
reindexed = reindex_(actual, groups, pd.Index(sorted_groups))
assert_equal(reindexed, expected)
@pytest.mark.parametrize("func", ["sum", "count"])
@pytest.mark.parametrize("fill_value, expected", ((0, np.integer), (np.nan, np.floating)))
def test_dtype_promotion(func, fill_value, expected, engine):
array = np.array([1, 1])
by = [0, 1]
actual, _ = groupby_reduce(
array,
by,
func=func,
expected_groups=[1, 2],
fill_value=fill_value,
engine=engine,
)
assert np.issubdtype(actual.dtype, expected)
@pytest.mark.parametrize("func", ["mean", "nanmean"])
def test_empty_bins(func, engine):
array = np.ones((2, 3, 2))
by = np.broadcast_to([0, 1], array.shape)
actual, _ = groupby_reduce(
array,
by,
func=func,
expected_groups=[-1, 0, 1, 2],
isbin=True,
engine=engine,
axis=(0, 1, 2),
)
expected = np.array([1.0, 1.0, np.nan])
assert_equal(actual, expected)
def test_datetime_binning():
time_bins = pd.date_range(start="2010-08-01", end="2010-08-15", freq="24h")
by = pd.date_range("2010-08-01", "2010-08-15", freq="15min")
(actual,) = _convert_expected_groups_to_index((time_bins,), isbin=(True,), sort=False)
expected = pd.IntervalIndex.from_arrays(time_bins[:-1], time_bins[1:])
assert_equal(actual, expected)
ret = factorize_((by.to_numpy(),), axes=(0,), expected_groups=(actual,))
group_idx = ret[0]
# Ignore pd.cut's dtype as it won't match np.digitize:
expected = pd.cut(by, time_bins).codes.copy().astype(group_idx.dtype)
expected[0] = 14 # factorize doesn't return -1 for nans
assert_equal(group_idx, expected)
@pytest.mark.parametrize("func", ALL_FUNCS)
def test_bool_reductions(func, engine):
if "arg" in func and engine == "flox":
pytest.skip()
if "quantile" in func or "mode" in func:
pytest.skip()
groups = np.array([1, 1, 1])
data = np.array([True, True, False])
npfunc = _get_array_func(func)
expected = np.expand_dims(npfunc(data, axis=0), -1)
actual, _ = groupby_reduce(data, groups, func=func, engine=engine)
assert_equal(expected, actual)
@requires_dask
def test_map_reduce_blockwise_mixed() -> None:
t = pd.date_range("2000-01-01", "2000-12-31", freq="D").to_series()
data = t.dt.dayofyear
actual, *_ = groupby_reduce(
dask.array.from_array(data.values, chunks=365),
t.dt.month,
func="mean",
method="map-reduce",
)
expected, *_ = groupby_reduce(data, t.dt.month, func="mean")
assert_equal(expected, actual)
@requires_dask
@pytest.mark.parametrize("method", ["blockwise", "map-reduce", "cohorts"])
def test_group_by_datetime(engine, method):
kwargs = dict(
func="mean",
method=method,
engine=engine,
)
t = pd.date_range("2000-01-01", "2000-12-31", freq="D").to_series()
data = t.dt.dayofyear
daskarray = dask.array.from_array(data.values, chunks=30)
actual, _ = groupby_reduce(daskarray, t, **kwargs)
expected = data.to_numpy().astype(float)
assert_equal(expected, actual)
if method == "blockwise":
return None
edges = pd.date_range("1999-12-31", "2000-12-31", freq="ME").to_series().to_numpy()
actual, _ = groupby_reduce(daskarray, t.to_numpy(), isbin=True, expected_groups=edges, **kwargs)
expected = data.resample("ME").mean().to_numpy()
assert_equal(expected, actual)
actual, _ = groupby_reduce(
np.broadcast_to(daskarray, (2, 3, daskarray.shape[-1])),
t.to_numpy(),
isbin=True,
expected_groups=edges,
**kwargs,
)
expected = np.broadcast_to(expected, (2, 3, expected.shape[-1]))
assert_equal(expected, actual)
@requires_cubed
@pytest.mark.parametrize("method", ["blockwise", "map-reduce"])
def test_group_by_datetime_cubed(engine, method):
kwargs = dict(
func="mean",
method=method,
engine=engine,
)
t = pd.date_range("2000-01-01", "2000-12-31", freq="D").to_series()
data = t.dt.dayofyear
cubedarray = cubed.from_array(data.values, chunks=30)
actual, _ = groupby_reduce(cubedarray, t, **kwargs)
expected = data.to_numpy().astype(float)
assert_equal(expected, actual)
edges = pd.date_range("1999-12-31", "2000-12-31", freq="ME").to_series().to_numpy()
actual, _ = groupby_reduce(cubedarray, t.to_numpy(), isbin=True, expected_groups=edges, **kwargs)
expected = data.resample("ME").mean().to_numpy()
assert_equal(expected, actual)
actual, _ = groupby_reduce(
cubed.array_api.broadcast_to(cubedarray, (2, 3, cubedarray.shape[-1])),
t.to_numpy(),
isbin=True,
expected_groups=edges,
**kwargs,
)
expected = np.broadcast_to(expected, (2, 3, expected.shape[-1]))
assert_equal(expected, actual)
def test_factorize_values_outside_bins():
# pd.factorize returns intp
vals = factorize_(
(np.arange(10).reshape(5, 2), np.arange(10).reshape(5, 2)),
axes=(0, 1),
expected_groups=(
pd.IntervalIndex.from_breaks(np.arange(2, 8, 1)),
pd.IntervalIndex.from_breaks(np.arange(2, 8, 1)),
),
reindex=True,
fastpath=True,
)
actual = vals[0]
expected = np.array([[-1, -1], [-1, 0], [6, 12], [18, 24], [-1, -1]], np.intp)
assert_equal(expected, actual)
@pytest.mark.parametrize("chunk", [pytest.param(True, marks=requires_dask), False])
def test_multiple_groupers_bins(chunk) -> None:
xp = dask.array if chunk else np
array_kwargs = {"chunks": 2} if chunk else {}
array = xp.ones((5, 2), **array_kwargs, dtype=np.int64)
actual, *_ = groupby_reduce(
array,
np.arange(10).reshape(5, 2),
xp.arange(10).reshape(5, 2),
axis=(0, 1),
expected_groups=(
pd.IntervalIndex.from_breaks(np.arange(2, 8, 1)),
pd.IntervalIndex.from_breaks(np.arange(2, 8, 1)),
),
func="count",
)
# output from `count` is intp
expected = np.eye(5, 5, dtype=np.intp)
assert_equal(expected, actual)
@pytest.mark.parametrize("expected_groups", [None, (np.arange(5), [2, 3]), (None, [2, 3])])
@pytest.mark.parametrize("by1", [np.arange(5)[:, None], np.broadcast_to(np.arange(5)[:, None], (5, 2))])
@pytest.mark.parametrize(
"by2",
[
np.arange(2, 4).reshape(1, 2),
np.broadcast_to(np.arange(2, 4).reshape(1, 2), (5, 2)),
np.arange(2, 4).reshape(1, 2),
],
)
@pytest.mark.parametrize("chunk", [pytest.param(True, marks=requires_dask), False])
def test_multiple_groupers(chunk, by1, by2, expected_groups) -> None:
if chunk and expected_groups is None:
pytest.skip()
xp = dask.array if chunk else np
array_kwargs = {"chunks": 2} if chunk else {}
array = xp.ones((5, 2), **array_kwargs, dtype=np.int64)
if chunk:
by2 = dask.array.from_array(by2)
# output from `count` is intp
expected = np.ones((5, 2), dtype=np.intp)
actual, *_ = groupby_reduce(array, by1, by2, axis=(0, 1), func="count", expected_groups=expected_groups)
assert_equal(expected, actual)
@pytest.mark.parametrize(
"expected_groups",
(
[None, None, None],
(None,),
),
)
def test_validate_expected_groups(expected_groups):
with pytest.raises(ValueError):
groupby_reduce(
np.ones((10,)),
np.ones((10,)),
np.ones((10,)),
expected_groups=expected_groups,
func="mean",
)
@requires_dask
def test_validate_expected_groups_not_none_dask() -> None:
with pytest.raises(ValueError):
groupby_reduce(
dask.array.ones((5, 2)),
np.arange(10).reshape(5, 2),
dask.array.arange(10).reshape(5, 2),
axis=(0, 1),
expected_groups=None,
func="count",
)
def test_factorize_reindex_sorting_strings():
# pd.factorize seems to return intp so int32 on 32bit arch
kwargs = dict(
by=(np.array(["El-Nino", "La-Nina", "boo", "Neutral"]),),
axes=(-1,),
expected_groups=(np.array(["El-Nino", "Neutral", "foo", "La-Nina"]),),
)
expected = factorize_(**kwargs, reindex=True, sort=True)[0]
assert_equal(expected, np.array([0, 1, 4, 2], dtype=np.intp))
expected = factorize_(**kwargs, reindex=True, sort=False)[0]
assert_equal(expected, np.array([0, 3, 4, 1], dtype=np.intp))
expected = factorize_(**kwargs, reindex=False, sort=False)[0]
assert_equal(expected, np.array([0, 1, 2, 3], dtype=np.intp))
expected = factorize_(**kwargs, reindex=False, sort=True)[0]
assert_equal(expected, np.array([0, 1, 3, 2], dtype=np.intp))
def test_factorize_reindex_sorting_ints():
# pd.factorize seems to return intp so int32 on 32bit arch
kwargs = dict(
by=(np.array([-10, 1, 10, 2, 3, 5]),),
axes=(-1,),
expected_groups=(np.array([0, 1, 2, 3, 4, 5], np.int64),),
)
expected = factorize_(**kwargs, reindex=True, sort=True)[0]
assert_equal(expected, np.array([6, 1, 6, 2, 3, 5], dtype=np.intp))
expected = factorize_(**kwargs, reindex=True, sort=False)[0]
assert_equal(expected, np.array([6, 1, 6, 2, 3, 5], dtype=np.intp))
kwargs["expected_groups"] = (np.arange(5, -1, -1),)
expected = factorize_(**kwargs, reindex=True, sort=True)[0]
assert_equal(expected, np.array([6, 1, 6, 2, 3, 5], dtype=np.intp))
expected = factorize_(**kwargs, reindex=True, sort=False)[0]
assert_equal(expected, np.array([6, 4, 6, 3, 2, 0], dtype=np.intp))
@requires_dask
def test_custom_aggregation_blockwise():
def grouped_median(group_idx, array, *, axis=-1, size=None, fill_value=None, dtype=None):
return aggregate(
group_idx,
array,
func=np.median,
axis=axis,
size=size,
fill_value=fill_value,
dtype=dtype,
)
agg_median = Aggregation(name="median", numpy=grouped_median, fill_value=-1, chunk=None, combine=None)
array = np.arange(100, dtype=np.float32).reshape(5, 20)
by = np.ones((20,))
actual, _ = groupby_reduce(array, by, func=agg_median, axis=-1)
expected = np.median(array, axis=-1, keepdims=True)
assert_equal(expected, actual)
for method in ["map-reduce", "cohorts"]:
with pytest.raises(NotImplementedError):
groupby_reduce(
dask.array.from_array(array, chunks=(1, -1)),
by,
func=agg_median,
axis=-1,
method=method,
)
actual, _ = groupby_reduce(
dask.array.from_array(array, chunks=(1, -1)),
by,
func=agg_median,
axis=-1,
method="blockwise",
)
assert_equal(expected, actual)
@pytest.mark.parametrize("func", ALL_FUNCS)
@pytest.mark.parametrize("dtype", [np.float32, np.float64])
def test_dtype(func, dtype, engine):
if engine == "numbagg":
# https://github.com/numbagg/numbagg/issues/121
pytest.skip()
if "arg" in func or func in ["any", "all"]:
pytest.skip()
finalize_kwargs = {"q": DEFAULT_QUANTILE} if "quantile" in func else {}
arr = np.ones((4, 12), dtype=dtype)
labels = np.array(["a", "a", "c", "c", "c", "b", "b", "c", "c", "b", "b", "f"])
actual, _ = groupby_reduce(
arr,
labels,
func=func,
dtype=np.float64,
engine=engine,
finalize_kwargs=finalize_kwargs,
)
assert actual.dtype == np.dtype("float64")
@requires_dask
@pytest.mark.parametrize(
"flatblocks, expected",
(
((0, 1, 2, 3, 4), (slice(None),)),
((1, 2, 3), (slice(1, 4),)),
((1, 3), ([1, 3],)),
((0, 1, 3), ([0, 1, 3],)),
),
)
def test_normalize_block_indexing_1d(flatblocks, expected):
nblocks = 5
array = dask.array.ones((nblocks,), chunks=(1,))
expected = tuple(np.array(i) if isinstance(i, list) else i for i in expected)
actual = _normalize_indexes(array.ndim, flatblocks, array.blocks.shape)
assert_equal_tuple(expected, actual)
@requires_dask
@pytest.mark.parametrize(
"flatblocks, expected",
(
((0, 1, 2, 3, 4), (0, slice(None))),
((1, 2, 3), (0, slice(1, 4))),
((1, 3), (0, [1, 3])),
((0, 1, 3), (0, [0, 1, 3])),
(tuple(range(10)), (slice(None, 2), slice(None))),
((0, 1, 3, 5, 6, 8), (slice(None, 2), [0, 1, 3])),
((0, 3, 4, 5, 6, 8, 24), np.ix_([0, 1, 4], [0, 1, 3, 4])),
),
)
def test_normalize_block_indexing_2d(flatblocks: tuple[int, ...], expected: tuple[Any, ...]) -> None:
nblocks = 5
ndim = 2
array = dask.array.ones((nblocks,) * ndim, chunks=(1,) * ndim)
expected = tuple(np.array(i) if isinstance(i, list) else i for i in expected)
actual = _normalize_indexes(array.ndim, flatblocks, array.blocks.shape)
assert_equal_tuple(expected, actual)
@requires_dask
def test_subset_blocks():
array = dask.array.random.random((120,), chunks=(4,))
blockid = (0, 3, 6, 9, 12, 15, 18, 21, 24, 27)
subset = subset_to_blocks(array, blockid).to_array(array)
assert subset.blocks.shape == (len(blockid),)
@pytest.mark.skip("temporarily removed this optimization")
@requires_dask
def test_subset_block_passthrough():
from flox.core import identity
# full slice pass through
array = dask.array.ones((5,), chunks=(1,))
expected = dask.array.map_blocks(identity, array)
subset = subset_to_blocks(array, np.arange(5)).to_array(array)
assert subset.name == expected.name
array = dask.array.ones((5, 5), chunks=1)
expected = dask.array.map_blocks(identity, array)
subset = subset_to_blocks(array, np.arange(25)).to_array(array)
assert subset.name == expected.name
@requires_dask
@pytest.mark.parametrize(
"flatblocks, expectidx",
[
(np.arange(10), (slice(2), slice(None))),
(np.arange(8), (slice(2), slice(None))),
([0, 10], ([0, 2], slice(1))),
([0, 7], (slice(2), [0, 2])),
([0, 7, 9], (slice(2), [0, 2, 4])),
([0, 6, 12, 14], (slice(3), [0, 1, 2, 4])),
([0, 12, 14, 19], np.ix_([0, 2, 3], [0, 2, 4])),
],
)
def test_subset_block_2d(flatblocks, expectidx):
array = dask.array.from_array(np.arange(25).reshape((5, 5)), chunks=1)
subset = subset_to_blocks(array, flatblocks).to_array(array)
assert len(subset.dask.layers) == 2
assert_equal(subset, array.compute()[expectidx])
@pytest.mark.parametrize(
"dask_expected, reindex, func, expected_groups, any_by_dask",
[
# argmax only False
[False, None, "argmax", None, False],
# True when by is numpy but expected is None
[True, None, "sum", None, False],
# False when by is dask but expected is None
[False, None, "sum", None, True],
# if expected_groups then always True
[True, None, "sum", [1, 2, 3], False],
[True, None, "sum", ([1], [2]), False],
[True, None, "sum", ([1], [2]), True],
[True, None, "sum", ([1], None), False],
[True, None, "sum", ([1], None), True],
],
)
def test_validate_reindex_map_reduce(dask_expected, reindex, func, expected_groups, any_by_dask) -> None:
actual = _validate_reindex(
reindex,
func,
"map-reduce",
expected_groups,
any_by_dask,
is_dask_array=True,
array_dtype=np.dtype("int32"),
)
assert actual == ReindexStrategy(blockwise=dask_expected)
# always reindex with all numpy inputs
actual = _validate_reindex(
reindex,
func,
"map-reduce",
expected_groups,
any_by_dask=False,
is_dask_array=False,
array_dtype=np.dtype("int32"),
)
assert actual.blockwise
actual = _validate_reindex(
True,
func,
"map-reduce",
expected_groups,
any_by_dask=False,
is_dask_array=False,
array_dtype=np.dtype("int32"),
)
assert actual.blockwise
def test_validate_reindex() -> None:
methods: list[T_Method] = ["map-reduce", "cohorts"]
for method in methods:
with pytest.raises(NotImplementedError):
_validate_reindex(
True,
"argmax",
method,
expected_groups=None,
any_by_dask=False,
is_dask_array=True,
array_dtype=np.dtype("int32"),
)
methods: list[T_Method] = ["blockwise", "cohorts"]
for method in methods:
with pytest.raises(ValueError):
_validate_reindex(
True,
"sum",
method,
expected_groups=None,
any_by_dask=False,
is_dask_array=True,
array_dtype=np.dtype("int32"),
)
for func in ["sum", "argmax"]:
actual = _validate_reindex(
None,
func,
method,
expected_groups=None,
any_by_dask=False,
is_dask_array=True,
array_dtype=np.dtype("int32"),
).blockwise
assert actual is False
with pytest.raises(ValueError):
_validate_reindex(
True,
"sum",
method="blockwise",
expected_groups=np.array([1, 2, 3]),
any_by_dask=False,
is_dask_array=True,
array_dtype=np.dtype("int32"),
)
assert _validate_reindex(
True,
"sum",
method="blockwise",
expected_groups=np.array([1, 2, 3]),
any_by_dask=True,
is_dask_array=True,
array_dtype=np.dtype("int32"),
).blockwise
assert _validate_reindex(
None,
"sum",
method="blockwise",
expected_groups=np.array([1, 2, 3]),
any_by_dask=True,
is_dask_array=True,
array_dtype=np.dtype("int32"),
).blockwise
kwargs = dict(
method="blockwise",
expected_groups=np.array([1, 2, 3]),
any_by_dask=True,
is_dask_array=True,
)
for func in ["nanfirst", "nanlast"]:
assert not _validate_reindex(None, func, array_dtype=np.dtype("int32"), **kwargs).blockwise # type: ignore[arg-type]
assert _validate_reindex(None, func, array_dtype=np.dtype("float32"), **kwargs).blockwise # type: ignore[arg-type]
for func in ["first", "last"]:
assert not _validate_reindex(None, func, array_dtype=np.dtype("int32"), **kwargs).blockwise # type: ignore[arg-type]
assert not _validate_reindex(None, func, array_dtype=np.dtype("float32"), **kwargs).blockwise # type: ignore[arg-type]
@requires_dask
def test_1d_blockwise_sort_optimization() -> None:
# Make sure for resampling problems sorting isn't done.
time = pd.Series(pd.date_range("2020-09-01", "2020-12-31 23:59", freq="3h"))
array = dask.array.ones((len(time),), chunks=(224,))
actual, *_ = groupby_reduce(array, time.dt.dayofyear.values, method="blockwise", func="count")
assert all("getitem" not in k for k in actual.dask)
actual, *_ = groupby_reduce(
array,
time.dt.dayofyear.values[::-1],
sort=True,
method="blockwise",
func="count",
)
assert any("getitem" in k for k in actual.dask.layers)
actual, *_ = groupby_reduce(
array,
time.dt.dayofyear.values[::-1],
sort=False,
method="blockwise",
func="count",
)
assert all("getitem" not in k for k in actual.dask.layers)
@requires_dask
def test_negative_index_factorize_race_condition() -> None:
# shape = (10, 2000)
# chunks = ((shape[0]-1,1), 10)
shape = (101, 174000)
chunks = ((101,), 8760)
eps = dask.array.random.random_sample(shape, chunks=chunks)
N2 = dask.array.random.random_sample(shape, chunks=chunks)
S2 = dask.array.random.random_sample(shape, chunks=chunks)
bins = np.arange(-5, -2.05, 0.1)
func = ["mean", "count", "sum"]
out = [
groupby_reduce(
eps,
N2,
S2,
func=f,
expected_groups=(bins, bins),
isbin=(True, True),
)
for f in func
]
[dask.compute(out, scheduler="threads") for _ in range(5)]
@pytest.mark.parametrize("sort", [True, False])
def test_expected_index_conversion_passthrough_range_index(sort) -> None:
index = pd.RangeIndex(100)
actual = _convert_expected_groups_to_index(expected_groups=(index,), isbin=(False,), sort=(sort,)) # type: ignore[call-overload]
assert actual[0] is index
def test_method_check_numpy() -> None:
bins = [-2, -1, 0, 1, 2]
field = np.ones((5, 3))
by = np.array([[-1.5, -1.5, 0.5, 1.5, 1.5] * 3]).reshape(5, 3)
actual, *_ = groupby_reduce(
field,
by,
expected_groups=pd.IntervalIndex.from_breaks(bins),
func="count",
method="cohorts",
fill_value=np.nan,
)
expected = np.array([6, np.nan, 3, 6])
assert_equal(actual, expected)
actual, *_ = groupby_reduce(
field,
by,
expected_groups=pd.IntervalIndex.from_breaks(bins),
func="count",
fill_value=np.nan,
method="cohorts",
axis=0,
)
expected = np.array(
[
[2.0, np.nan, 1.0, 2.0],
[2.0, np.nan, 1.0, 2.0],
[2.0, np.nan, 1.0, 2.0],
]
)
assert_equal(actual, expected)
@pytest.mark.parametrize("dtype", [None, np.float64])
def test_choose_engine(dtype) -> None:
numbagg_possible = HAS_NUMBAGG and dtype is None
default = "numbagg" if numbagg_possible else "numpy"
mean = _initialize_aggregation(
"mean",
dtype=dtype,
array_dtype=np.dtype("int64"),
fill_value=0,
min_count=0,
finalize_kwargs=None,
)
argmax = _initialize_aggregation(
"argmax",
dtype=dtype,
array_dtype=np.dtype("int64"),
fill_value=0,
min_count=0,
finalize_kwargs=None,
)
# count_engine
for method in ["all", "any", "count"]:
agg = _initialize_aggregation(
method,
dtype=None,
array_dtype=dtype,
fill_value=0,
min_count=0,
finalize_kwargs=None,
)
engine = _choose_engine(np.array([1, 1, 2, 2]), agg=agg)
assert engine == ("numbagg" if HAS_NUMBAGG else "flox")
# sorted by -> flox
sorted_engine = _choose_engine(np.array([1, 1, 2, 2]), agg=mean)
assert sorted_engine == ("numbagg" if numbagg_possible else "flox")
# unsorted by -> numpy
assert _choose_engine(np.array([3, 1, 1]), agg=mean) == default
# argmax does not give engine="flox"
assert _choose_engine(np.array([1, 1, 2, 2]), agg=argmax) == "numpy"
def test_xarray_fill_value_behaviour() -> None:
bar = np.array([1, 2, 3, np.nan, np.nan, np.nan, 4, 5, np.nan, np.nan])
times = np.arange(0, 20, 2)
actual, *_ = groupby_reduce(bar, times, func="nansum", expected_groups=(np.arange(19),))
nan = np.nan
# fmt: off
expected = np.array(
[ 1., nan, 2., nan, 3., nan, 0., nan, 0.,
nan, 0., nan, 4., nan, 5., nan, 0., nan, 0.]
)
# fmt: on
assert_equal(expected, actual)
@pytest.mark.parametrize("q", (0.5, (0.5,), (0.5, 0.67, 0.85)))
@pytest.mark.parametrize("func", ["nanquantile", "quantile"])
@pytest.mark.parametrize("chunk", [pytest.param(True, marks=requires_dask), False])
@pytest.mark.parametrize("by_ndim", [1, 2])
def test_multiple_quantiles(q, chunk, func, by_ndim) -> None:
array = np.array([[1, -1, np.nan, 3, 4, 10, 5], [1, np.nan, np.nan, 3, 4, np.nan, np.nan]])
labels = np.array([0, 0, 0, 1, 0, 1, 1])
if by_ndim == 2:
labels = np.broadcast_to(labels, (5, *labels.shape))
array = np.broadcast_to(np.expand_dims(array, -2), (2, 5, array.shape[-1]))
axis = tuple(range(-by_ndim, 0))
if chunk:
array = dask.array.from_array(array, chunks=(1,) + (-1,) * by_ndim)
actual, *_ = groupby_reduce(array, labels, func=func, finalize_kwargs=dict(q=q), axis=axis)
sorted_array = array[..., [0, 1, 2, 4, 3, 5, 6]]
f = partial(getattr(np, func), q=q, axis=axis, keepdims=True)
if chunk:
sorted_array = sorted_array.compute() # type: ignore[attr-defined]
expected = np.concatenate((f(sorted_array[..., :4]), f(sorted_array[..., 4:])), axis=-1)
if by_ndim == 2:
expected = expected.squeeze(axis=-2)
assert_equal(expected, actual, tolerance={"atol": 1e-14})
@pytest.mark.parametrize("dtype", ["U3", "S3"])
def test_nanlen_string(dtype, engine) -> None:
array = np.array(["ABC", "DEF", "GHI", "JKL", "MNO", "PQR"], dtype=dtype)
by = np.array([0, 0, 1, 2, 1, 0])
expected = np.array([3, 2, 1], dtype=np.intp)
actual, *_ = groupby_reduce(array, by, func="count", engine=engine)
assert_equal(expected, actual)
@pytest.mark.parametrize(
"array",
[
np.array([1, 1, 1, 2, 3, 4, 5], dtype=np.uint64),
np.array([1, 1, 1, 2, np.nan, 4, 5], dtype=np.float64),
],
)
@pytest.mark.parametrize("func", ["cumsum", "nancumsum"])
def test_cumsum_simple(array, func) -> None:
by = np.array([0] * array.shape[-1])
expected = getattr(np, func)(array, axis=-1)
actual = groupby_scan(array, by, func=func, axis=-1)
assert_equal(actual, expected)
if has_dask:
da = dask.array.from_array(array, chunks=2)
actual = groupby_scan(da, by, func=func, axis=-1)
assert_equal(actual, expected)
def test_cumsum() -> None:
array = np.array(
[
[1, 2, np.nan, 4, 5],
[3, np.nan, 4, 6, 6],
]
)
by = [0, 1, 1, 0, 1]
expected = np.array(
[
[1, 2, np.nan, 5, np.nan],
[3, np.nan, np.nan, 9, np.nan],
]
)
actual = groupby_scan(array, by, func="cumsum", axis=-1)
assert_equal(actual, expected)
if has_dask:
da = dask.array.from_array(array, chunks=2)
actual = groupby_scan(da, by, func="cumsum", axis=-1)
assert_equal(actual, expected)
expected = np.array([[1, 2, 2, 5, 7], [3, 0, 4, 9, 10]], dtype=np.float64)
actual = groupby_scan(array, by, func="nancumsum", axis=-1)
assert_equal(actual, expected)
if has_dask:
da = dask.array.from_array(array, chunks=2)
actual = groupby_scan(da, by, func="nancumsum", axis=-1)
assert_equal(actual, expected)
@pytest.mark.parametrize(
"chunks",
[
pytest.param(-1, marks=requires_dask),
pytest.param(3, marks=requires_dask),
pytest.param(4, marks=requires_dask),
],
)
@pytest.mark.parametrize("size", ((1, 12), (12,), (12, 9)))
@pytest.mark.parametrize("add_nan_by", [True, False])
@pytest.mark.parametrize("func", ["ffill", "bfill"])
def test_ffill_bfill(chunks, size, add_nan_by, func) -> None:
array, by = gen_array_by(size, func)
if chunks:
array = dask.array.from_array(array, chunks=chunks)
if add_nan_by:
by[0:3] = np.nan
by = tuple(by)
expected = flox.groupby_scan(array.compute(), by, func=func)
actual = flox.groupby_scan(array, by, func=func)
assert_equal(expected, actual)
@requires_dask
def test_blockwise_nans() -> None:
array = dask.array.ones((1, 10), chunks=2)
by = np.array([-1, 0, -1, 1, -1, 2, -1, 3, 4, 4])
actual, *actual_groups = flox.groupby_reduce(array, by, func="sum", expected_groups=pd.RangeIndex(0, 5))
expected, *expected_groups = flox.groupby_reduce(
array.compute(), by, func="sum", expected_groups=pd.RangeIndex(0, 5)
)
assert_equal(expected_groups, actual_groups)
assert_equal(expected, actual)
@requires_dask
@pytest.mark.parametrize("func", ["nancumsum", "ffill", "bfill"])
@pytest.mark.parametrize("method", ["blockwise", "blelloch"])
def test_groupby_scan_method(func, method) -> None:
"""Test that groupby_scan works correctly with explicit method parameter."""
# Create array where groups fit within chunks (suitable for blockwise)
# Include NaN values for ffill/bfill to actually test gap filling
if "fill" in func:
data = [1.0, np.nan, 3.0, 4.0, np.nan, 6.0]
else:
data = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]
array = dask.array.from_array(data, chunks=3)
by = np.array([0, 0, 0, 1, 1, 1])
expected = groupby_scan(array.compute(), by, func=func, axis=-1)
actual = groupby_scan(array, by, func=func, axis=-1, method=method)
assert_equal(expected, actual)
@requires_dask
def test_groupby_scan_blockwise_auto_rechunk() -> None:
"""Test that blockwise scan auto-rechunks when groups are sorted but span chunks."""
from flox import scan
from flox.rechunk import rechunk_for_blockwise as real_rechunk
# Create array with sorted groups that span chunk boundaries
array = dask.array.from_array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], chunks=2)
by = np.array([0, 0, 0, 1, 1, 1]) # sorted, but group 0 spans chunks 0 and 1
expected = groupby_scan(array.compute(), by, func="nancumsum", axis=-1)
# This should auto-rechunk to enable blockwise
with patch.object(scan, "rechunk_for_blockwise", wraps=real_rechunk) as rechunk_spy:
actual = groupby_scan(array, by, func="nancumsum", axis=-1)
assert_equal(expected, actual)
# Verify rechunk_for_blockwise was called
assert rechunk_spy.call_count >= 1
# Explicit method="blockwise" should also rechunk and produce correct results
with patch.object(scan, "rechunk_for_blockwise", wraps=real_rechunk) as rechunk_spy:
actual_explicit = groupby_scan(array, by, func="nancumsum", axis=-1, method="blockwise")
assert_equal(expected, actual_explicit)
assert rechunk_spy.call_count >= 1
@pytest.mark.parametrize("func", ["sum", "prod", "count", "nansum"])
@pytest.mark.parametrize("engine", ["flox", "numpy"])
def test_agg_dtypes(func, engine) -> None:
# regression test for GH388
counts = np.array([0, 2, 1, 0, 1])
group = np.array([1, 1, 1, 2, 2])
actual, *_ = groupby_reduce(
counts, group, expected_groups=(np.array([1, 2]),), func=func, dtype="uint8", engine=engine
)
expected = _get_array_func(func)(counts, dtype="uint8")
assert actual.dtype == np.uint8 == expected.dtype
@requires_dask
def test_blockwise_avoid_rechunk() -> None:
array = dask.array.zeros((6,), chunks=(2, 4), dtype=np.int64)
by = np.array(["1", "1", "0", "", "0", ""], dtype="<U1")
actual, *groups = groupby_reduce(array, by, func="first")
assert_equal(groups, np.asarray([["", "0", "1"]], dtype="<U1"))
assert_equal(actual, np.array([0, 0, 0], dtype=np.int64))
def test_datetime_minmax(engine) -> None:
# GH403
array = np.array([np.datetime64("2000-01-01"), np.datetime64("2000-01-02"), np.datetime64("2000-01-03")])
by = np.array([0, 0, 1])
actual, *_ = flox.groupby_reduce(array, by, func="nanmin", engine=engine)
expected = array[[0, 2]]
assert_equal(expected, actual)
expected = array[[1, 2]]
actual, *_ = flox.groupby_reduce(array, by, func="nanmax", engine=engine)
assert_equal(expected, actual)
@pytest.mark.parametrize("func", ["first", "last", "nanfirst", "nanlast"])
def test_datetime_timedelta_first_last(engine, func) -> None:
idx = 0 if "first" in func else -1
idx1 = 2 if "first" in func else -1
## datetime
dt = pd.date_range("2001-01-01", freq="d", periods=5).values
by = np.ones(dt.shape, dtype=int)
actual, *_ = groupby_reduce(dt, by, func=func, engine=engine)
assert_equal(actual, dt[[idx]])
# missing group
by = np.array([0, 2, 3, 3, 3])
actual, *_ = groupby_reduce(
dt, by, expected_groups=([0, 1, 2, 3],), func=func, engine=engine, fill_value=dtypes.NA
)
assert_equal(actual, [dt[0], np.datetime64("NaT"), dt[1], dt[idx1]])
## timedelta
dt = dt - dt[0]
by = np.ones(dt.shape, dtype=int)
actual, *_ = groupby_reduce(dt, by, func=func, engine=engine)
assert_equal(actual, dt[[idx]])
# missing group
by = np.array([0, 2, 3, 3, 3])
actual, *_ = groupby_reduce(
dt, by, expected_groups=([0, 1, 2, 3],), func=func, engine=engine, fill_value=dtypes.NA
)
assert_equal(actual, [dt[0], np.timedelta64("NaT"), dt[1], dt[idx1]])
@requires_dask
@requires_sparse
@pytest.mark.xdist_group(name="sparse-group")
@pytest.mark.parametrize("size", [2**62 - 1, 11])
def test_reindex_sparse(size):
import sparse
array = dask.array.ones((2, 12), chunks=(-1, 3))
func = "sum"
expected_groups = pd.RangeIndex(size)
by = dask.array.from_array(np.repeat(np.arange(6) * 2, 2), chunks=(3,))
dense = np.zeros((2, 11))
dense[..., np.arange(6) * 2] = 2
expected = sparse.COO.from_numpy(dense)
with pytest.raises(ValueError):
ReindexStrategy(blockwise=True, array_type=ReindexArrayType.SPARSE_COO)
reindex = ReindexStrategy(blockwise=False, array_type=ReindexArrayType.SPARSE_COO)
original_reindex = flox.core.reindex_
def mocked_reindex(*args, **kwargs):
res = original_reindex(*args, **kwargs)
if isinstance(res, dask.array.Array):
assert isinstance(res._meta, sparse.COO)
else:
assert isinstance(res, sparse.COO)
return res
# Define the error-raising property
def raise_error(self):
raise AttributeError("Access to '_data' is not allowed.")
with patch("flox.core.reindex_") as mocked_reindex_func:
with patch.object(pd.RangeIndex, "_data", property(raise_error)):
mocked_reindex_func.side_effect = mocked_reindex
actual, *_ = groupby_reduce(
array, by, func=func, reindex=reindex, expected_groups=expected_groups, fill_value=0
)
if size == 11:
assert_equal(actual, expected)
else:
actual.compute() # just compute
# once during graph construction, 10 times afterward
assert mocked_reindex_func.call_count > 1
@requires_dask
def test_sparse_errors():
call = partial(
groupby_reduce,
dask.array.from_array([1, 2, 3], chunks=(1,)),
[0, 1, 1],
reindex=REINDEX_SPARSE_STRAT,
fill_value=0,
expected_groups=[0, 1, 2],
)
if not has_sparse:
with pytest.raises(ImportError):
call(func="sum")
else:
with pytest.raises(ValueError):
call(func="first")
@requires_sparse
@pytest.mark.parametrize(
"chunks",
[
None,
pytest.param(-1, marks=requires_dask),
pytest.param(3, marks=requires_dask),
pytest.param(4, marks=requires_dask),
],
)
@pytest.mark.parametrize("shape", [(1, 12), (12,), (12, 9)])
@pytest.mark.parametrize("fill_value", [np.nan, 0])
@pytest.mark.parametrize("func", ["sum", "mean", "min", "max", "nansum", "nanmean", "nanmin", "nanmax"])
def test_sparse_nan_fill_value_reductions(chunks, fill_value, shape, func):
import sparse
numpy_array, by = gen_array_by(shape, func)
array = sparse.COO.from_numpy(numpy_array, fill_value=fill_value)
if chunks:
array = dask.array.from_array(array, chunks=chunks)
npfunc = _get_array_func(func)
with warnings.catch_warnings():
warnings.filterwarnings("ignore", r"Mean of empty slice")
warnings.filterwarnings("ignore", r"All-NaN slice encountered")
# warnings.filterwarnings("ignore", r"encountered in divide")
expected = np.expand_dims(npfunc(numpy_array, axis=-1), axis=-1)
actual, *_ = groupby_reduce(array, by, func=func, axis=-1)
assert_equal(actual, expected)
@pytest.mark.parametrize("func", ("nanvar", "var"))
@pytest.mark.parametrize(
# Should fail at 10e8 for old algorithm, and survive 10e12 for current
"exponent",
(2, 4, 6, 8, 10, 12),
)
def test_std_var_precision(func, exponent, engine):
# Generate a dataset with small variance and big mean
# Check that func with engine gives you the same answer as numpy
size = 1000
offset = 10**exponent
array = np.linspace(-1, 1, size) # has zero mean
labels = np.arange(size) % 2 # Ideally we'd parametrize this too.
# These two need to be the same function, but with the offset added and not added
no_offset, _ = groupby_reduce(array, labels, engine=engine, func=func)
with_offset, _ = groupby_reduce(array + offset, labels, engine=engine, func=func)
expected = np.concatenate([np.nanvar(array[::2], keepdims=True), np.nanvar(array[1::2], keepdims=True)])
expected_offset = np.concatenate(
[np.nanvar(array[::2] + offset, keepdims=True), np.nanvar(array[1::2] + offset, keepdims=True)]
)
tol = {"rtol": 3e-8, "atol": 1e-9} # Not sure how stringent to be here
assert_equal(expected, no_offset, tol)
assert_equal(expected_offset, with_offset, tol)
if exponent < 10:
# TODO: figure this exponent limit
# TODO: Failure threshold in my external tests is dependent on dask chunksize,
# maybe needs exploring better?
assert_equal(no_offset, with_offset, tol)
@requires_sparse
def test_sparse_is_supported_aggregation():
import sparse
array = sparse.COO.from_numpy(np.array([1, 2, 3]))
assert flox.is_supported_aggregation(array, "sum")
assert not flox.is_supported_aggregation(array, "cumsum")
assert not flox.is_supported_aggregation(array, "ffill")
@requires_dask
def test_dask_is_supported_aggregation():
# Test dask array wrapping numpy
array = da.from_array(np.array([1, 2, 3]), chunks=2)
assert flox.is_supported_aggregation(array, "sum")
assert flox.is_supported_aggregation(array, "cumsum")
assert flox.is_supported_aggregation(array, "ffill")
# Test dask array wrapping sparse
if has_sparse:
import sparse
sparse_array = sparse.COO.from_numpy(np.array([1, 2, 3]))
dask_sparse = da.from_array(sparse_array, chunks=2)
assert flox.is_supported_aggregation(dask_sparse, "sum")
assert not flox.is_supported_aggregation(dask_sparse, "cumsum")
assert not flox.is_supported_aggregation(dask_sparse, "ffill")
@requires_cubed
def test_cubed_is_supported_aggregation():
array = cubed.from_array(np.array([1, 2, 3]), chunks=2)
assert flox.is_supported_aggregation(array, "sum")
assert not flox.is_supported_aggregation(array, "cumsum")
assert not flox.is_supported_aggregation(array, "ffill")
def test_is_supported_aggregation_quantile_method():
array = np.array([1, 2, 3])
assert flox.is_supported_aggregation(array, "quantile")
assert flox.is_supported_aggregation(array, "quantile", method="linear")
assert not flox.is_supported_aggregation(array, "quantile", method="nearest")
assert flox.is_supported_aggregation(array, "nanquantile")
assert flox.is_supported_aggregation(array, "nanquantile", method="linear")
assert not flox.is_supported_aggregation(array, "nanquantile", method="nearest")
|