Clustering
Clustering utilities
Experiment
Bases: object
Worker class for all the different clustering methods, handling various clustering tasks and pre- and post-processing.
Attributes:
| Name | Type | Description |
|---|---|---|
data_handler |
DataHandler
|
Provides the underlying |
da |
DataArray
|
shortcut to |
path |
Path
|
shortcut to |
Source code in jetutils/clustering.py
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 | |
__init__(data_handler)
Creates instance of Experiment
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_handler
|
DataHandler
|
Provides underlying |
required |
Source code in jetutils/clustering.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | |
compute_opps(n_pcas=None, lag_max=90, type_=1, return_realspace=False)
Compute Optimally Persistent Patters. Deprecated and probably broken.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_pcas
|
int | None
|
description, by default None |
None
|
lag_max
|
int
|
description, by default 90 |
90
|
type_
|
int
|
description, by default 1 |
1
|
return_realspace
|
bool
|
description, by default False |
False
|
Returns:
| Type | Description |
|---|---|
Tuple[Path, dict]
|
description |
Raises:
| Type | Description |
|---|---|
ValueError
|
description |
Source code in jetutils/clustering.py
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 | |
compute_pcas(n_pcas, force=False)
Preprocess own data, trains scikit-learn PCA object, saves it and returns path to it. If a fitting PCA object is already stored, don't train and return path to it instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_pcas
|
int
|
Number of components |
required |
force
|
bool
|
Trains PCA object even if a fitting one exists, by default False |
False
|
Returns:
| Type | Description |
|---|---|
str
|
Posix path to |
Source code in jetutils/clustering.py
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 | |
do_kmeans(n_clu, n_pcas=None, weigh_grams=False, return_type=RAW_REALSPACE, force=False)
Performs K-means clustering by wrapping the scikit-learn KMeans object, pre- and post-processing this object's data. Stores the underlying trained scikit-learn KMeans object.
If a fitting KMeans object is already stored, use it instead unless force=True
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_clu
|
int
|
Number of k-means cluster |
required |
n_pcas
|
int | None
|
Number of principal components. If above 0 and not |
None
|
weigh_grams
|
bool
|
Performs special weighing recommended by Grams et al. 2017, by default False |
False
|
return_type
|
int
|
How to transform the output centers and labels, by default RAW_REALSPACE |
RAW_REALSPACE
|
force
|
bool
|
Whether to re-train a KMeans object even if a fitting one is found, by default False |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
centers |
DataArray
|
Transformed centers, with appropriate coordinates and dimensions |
labels |
DataArray
|
Potentially recomputed labels, with appropriate coordinates and dimensions |
Source code in jetutils/clustering.py
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 | |
get_norm_da()
Computes, stores and returns the normalization factor
Returns:
| Type | Description |
|---|---|
DataArray
|
normalization factor, computed as the square root of the latitude. |
Source code in jetutils/clustering.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | |
labels_as_da(labels)
Transforms a labels array into a DataArray with named dimensions, inferred from this object's data's sample dimensions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
labels
|
ndarray
|
Labels, output from clustering methods |
required |
Returns:
| Type | Description |
|---|---|
DataArray
|
|
Source code in jetutils/clustering.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | |
load_da(**kwargs)
Coerces this Experiment's DataArray into memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
kwargs
|
Keyword arguments that get passed to |
{}
|
Source code in jetutils/clustering.py
292 293 294 295 296 297 298 299 300 301 | |
opp_cluster(n_clu, n_pcas, type=1, return_type=RAW_REALSPACE)
Cluster on type T1, type T2 or both types of Optimally Persistent Patterns. Deprecated and probably broken.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_clu
|
int
|
description |
required |
n_pcas
|
int
|
description |
required |
type
|
int
|
description, by default 1 |
1
|
return_type
|
int
|
description, by default RAW_REALSPACE |
RAW_REALSPACE
|
Returns:
| Type | Description |
|---|---|
Tuple[DataArray, DataArray]
|
description |
Source code in jetutils/clustering.py
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 | |
pca_inverse_transform(X, n_pcas=None, compute=False)
Performs inverse PCA transform on X, based on PCA trained on this object's data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ndarray | Array
|
Data to inverse transform, not necessarily the one on which |
required |
n_pcas
|
int | None
|
Number of components. If |
None
|
compute
|
bool
|
If input was a Dask Array, whether or not to coerce output to memory, by default False |
False
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Inverse transformed |
Source code in jetutils/clustering.py
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 | |
pca_transform(X, n_pcas=None, compute=False)
Potentially fits PCA object on this object's own data, and transforms input data with trained PCA object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ndarray | Array
|
Data to transform, not necessarily the one on which |
required |
n_pcas
|
int | None
|
Number of components. If |
None
|
compute
|
bool
|
If input was a Dask Array, whether or not to coerce output to memory, by default False |
False
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Transformed |
Source code in jetutils/clustering.py
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 | |
prepare_for_clustering()
Normalizes and reshapes original data into a form ready for transformation and / or clustering tasks
Returns:
| Type | Description |
|---|---|
np.ndarray shape (n_samples, n_features)
|
Normalized and reshaped version of original data. |
DataArray
|
Normalized but not reshaped version of the original data. |
Source code in jetutils/clustering.py
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | |
project_on_other_som(other_exp, nx, ny, n_pcas=0, PBC=True, activation_distance='euclidean', return_type=RAW_REALSPACE)
Projects this object's data onto a SOM trained by another Experiment.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other_exp
|
Experiment
|
description |
required |
nx
|
int
|
description |
required |
ny
|
int
|
description |
required |
n_pcas
|
int
|
description, by default 0 |
0
|
PBC
|
bool
|
description, by default True |
True
|
activation_distance
|
str
|
description, by default "euclidean" |
'euclidean'
|
return_type
|
int
|
description, by default RAW_REALSPACE |
RAW_REALSPACE
|
Returns:
| Name | Type | Description |
|---|---|---|
net |
Simpsom
|
Original Simpsom object, whose |
centers |
DataArray
|
SOM centers computed from this data, transformed and with appropriate coordinates and dimensions |
labels |
DataArray
|
Clustering labels corresponding to this data with appropriate coordinates and dimensions |
Source code in jetutils/clustering.py
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 | |
som_cluster(nx, ny, n_pcas=0, PBC=True, activation_distance='euclidean', return_type=RAW_REALSPACE, force=False, train_kwargs=None, **kwargs)
Performs SOM clustering by wrapping the Simpsom object, pre- and post-processing this object's data. Stores the underlying trained object.
If a fitting Simpsom object is already stored, use it instead unless force=True
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nx
|
int
|
SOM grid size in the x direction |
required |
ny
|
int
|
SOM grid size in the y direction |
required |
n_pcas
|
int
|
Number of principal components. If any above 0, transforms the data into PC space, if 0 or None (the default), the data is left in real space. |
0
|
PBC
|
bool
|
Whether to use Periodic Boundary Conditions in the SOM grid, by default True |
True
|
activation_distance
|
str
|
SOM real space distance, by default "euclidean" |
'euclidean'
|
return_type
|
int
|
How to transform the output centers and labels, by default RAW_REALSPACE |
RAW_REALSPACE
|
force
|
bool
|
Whether to re-train a Simpsom object even if a fitting one is found, by default False |
False
|
train_kwargs
|
dict | None
|
arguments passed to |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
net |
Simpsom
|
Simpsom object. |
centers |
DataArray
|
Transformed centers, with appropriate coordinates and dimensions |
labels |
DataArray
|
Potentially recomputed labels, with appropriate coordinates and dimensions |
Source code in jetutils/clustering.py
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 | |
centers_realspace(centers, feature_dims)
Transforms raw cluster centers, typically the output of sklearn clustering algorithms, to easily plottable xarray DataArray.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
centers
|
array of size (n_samples, n_features)
|
Raw cluster centers |
required |
feature_dims
|
Mapping
|
Dictionnary from whose keys are dimension names and values are the correponding coordinates as |
required |
Returns:
| Name | Type | Description |
|---|---|---|
centers |
DataArray
|
Cluster centers reshaped to fit |
Source code in jetutils/clustering.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
centers_realspace_from_da(centers, da)
Transforms raw cluster centers, typically the output of sklearn clustering algorithms, to
easily plottable xarray DataArray, taking the coordinates from another DataArray
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
centers
|
array of size (n_samples, n_features)
|
Raw cluster centers |
required |
da
|
DataArray or Dataset
|
DataArray or Dataset from which to infer the feature dimensions |
required |
Returns:
| Name | Type | Description |
|---|---|---|
centers |
DataArray
|
Cluster centers reshaped to fit the feature dimension of |
Source code in jetutils/clustering.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | |
labels_from_projs(X1, X2=None, cutoff=None, neg=True, adjust=True)
Generates hard assignments from one or two collections of projection timeseries onto patterns using configurable heuristics.
Typically, the timeseries are projections on patterns like PCs or OPPs, where the first axis is time and
the second one is patterns.
The output is a timeseries y of winner patterns at each timestep, in the most basic form y=np.argmax(X1, axis=1).
If X2 is not present, y can get values from 0 to n_patterns - 1 if neg=False and adjust=False.
With neg=True, the condition becomes y=np.argmax(np.abs(X1), axis=1). That is, the largest absolute projection wins, whether positive or negative.
For example, the NAO pattern wins if the timestep resembles its positive or its negative phase. If the largest absolute projection is negative, the label is also negative.
Therefore, with neg=True, the output can have output from -n_patterns + 1 to n_patterns - 1
With adjust=True, the assignments are only set to a label if the projection is above one standard deviation of projections, and 0 otherwise. In this case,
y can take values from 0 to n_patterns if neg=False and -n_patterns to n_patterns if neg=True.
If two timeseries are present and are of equal size (n_time, n_patterns), a large collection of timeseries is created with projections of X1
in the even positions and the projections of X2 in the odd positions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X1
|
array of shape (n_time, n_patterns)
|
Projections on many patterns. |
required |
X2
|
array of shape (n_time, n_patterns)
|
Additional projections on many patterns. If present, will be interleaved into |
None
|
cutoff
|
int
|
Limits how many patterns to to perform the assignment on. All patterns if left to |
None
|
neg
|
bool
|
If |
True
|
adjust
|
bool
|
Whether assignments are only valid if the projection is larger than one standard deviation of projections. By default True |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
labels |
ndarray
|
Integer ndarray of shape (n_time), assignments onto each pattern based on different rules. |
Source code in jetutils/clustering.py
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 | |
labels_to_centers(labels, da, expected_nclu=None, dim_name='cluster')
Generates cluster centers by averaging the elements of da belonging to each cluster.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
labels
|
DataArray
|
Array with one or several dimensions corresponding to the sample dimensions of the clustering that created them. Typically (time) or (member, time). Assignments from sample points (e.g. timesteps) to a cluster. |
required |
da
|
DataArray | Dataset
|
Array from which to create real space cluster centers. Does not have to be the data on which the clustering was performed. |
required |
expected_nclu
|
int
|
Can be useful if not all clusters are present in |
None
|
dim_name
|
str
|
Name of the DataArray dimension name along the clusters, by default "cluster" |
'cluster'
|
Returns:
| Name | Type | Description |
|---|---|---|
centers |
Same as `da`
|
Cluster center, dimensions are |
Source code in jetutils/clustering.py
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 | |
timeseries_on_map(timeseries, labels)
From a timeseries of values and a timeseries of labels, assigning each timestep to a cluster, returns the clusterwise mean of the timeseries
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeseries
|
ndarray
|
Any timeseries |
required |
labels
|
list | ndarray
|
Label assignment, must be of the same length as |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
descrMeans of timeseries elements belonging to each cluster. As many elements as there are unique clusters in |
Source code in jetutils/clustering.py
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | |