cola Report for Hierarchical Partitioning - 'LaMannoBrain_human_es'

Date: 2021-07-26 10:48:28 CEST, cola version: 1.9.4

Document is loading...


Summary

First the variable is renamed to res_rh.

res_rh = rh

The partition hierarchy and all available functions which can be applied to res_rh object.

res_rh
#> A 'HierarchicalPartition' object with 'ATC:skmeans' method.
#>   On a matrix with 11181 rows and 1715 columns.
#>   Performed in total 7650 partitions.
#>   There are 32 groups under the following parameters:
#>     - min_samples: 17
#>     - mean_silhouette_cutoff: 0.9
#>     - min_n_signatures: 198 (signatures are selected based on:)
#>       - fdr_cutoff: 0.05
#>       - group_diff (scaled values): 0.5
#> 
#> Hierarchy of the partition:
#>   0, 1715 cols
#>   |-- 01, 705 cols, 2435 signatures
#>   |   |-- 011, 228 cols, 990 signatures
#>   |   |   |-- 0111, 80 cols (a)
#>   |   |   |-- 0112, 80 cols, 224 signatures
#>   |   |   |   |-- 01121, 40 cols, 70 signatures (c)
#>   |   |   |   `-- 01122, 40 cols, 0 signatures (c)
#>   |   |   `-- 0113, 68 cols, 62 signatures (c)
#>   |   |-- 012, 190 cols, 1448 signatures
#>   |   |   |-- 0121, 109 cols, 466 signatures
#>   |   |   |   |-- 01211, 53 cols, 15 signatures (c)
#>   |   |   |   `-- 01212, 56 cols, 111 signatures (c)
#>   |   |   `-- 0122, 81 cols, 1014 signatures
#>   |   |       |-- 01221, 32 cols (b)
#>   |   |       |-- 01222, 24 cols (b)
#>   |   |       `-- 01223, 25 cols (b)
#>   |   `-- 013, 287 cols, 1692 signatures
#>   |       |-- 0131, 90 cols, 911 signatures
#>   |       |   |-- 01311, 58 cols, 87 signatures (c)
#>   |       |   `-- 01312, 32 cols (b)
#>   |       |-- 0132, 115 cols, 314 signatures
#>   |       |   |-- 01321, 69 cols, 31 signatures (c)
#>   |       |   `-- 01322, 46 cols, 32 signatures (c)
#>   |       `-- 0133, 82 cols, 179 signatures (c)
#>   |-- 02, 681 cols, 5526 signatures
#>   |   |-- 021, 206 cols, 552 signatures
#>   |   |   |-- 0211, 95 cols (a)
#>   |   |   `-- 0212, 111 cols, 314 signatures
#>   |   |       |-- 02121, 53 cols, 120 signatures (c)
#>   |   |       `-- 02122, 58 cols (a)
#>   |   |-- 022, 156 cols, 1545 signatures
#>   |   |   |-- 0221, 54 cols, 83 signatures (c)
#>   |   |   |-- 0222, 65 cols, 38 signatures (c)
#>   |   |   `-- 0223, 37 cols (a)
#>   |   |-- 023, 198 cols, 940 signatures
#>   |   |   |-- 0231, 93 cols, 393 signatures
#>   |   |   |   |-- 02311, 53 cols (a)
#>   |   |   |   `-- 02312, 40 cols, 45 signatures (c)
#>   |   |   `-- 0232, 105 cols, 141 signatures (c)
#>   |   `-- 024, 121 cols, 498 signatures
#>   |       |-- 0241, 44 cols, 4 signatures (c)
#>   |       |-- 0242, 43 cols, 11 signatures (c)
#>   |       `-- 0243, 34 cols, 0 signatures (c)
#>   `-- 03, 329 cols, 1622 signatures
#>       |-- 031, 132 cols (a)
#>       |-- 032, 99 cols, 58 signatures (c)
#>       `-- 033, 98 cols, 1396 signatures
#>           |-- 0331, 40 cols, 15 signatures (c)
#>           |-- 0332, 31 cols (b)
#>           |-- 0333, 13 cols (b)
#>           `-- 0334, 14 cols (b)
#> Stop reason:
#>   a) Mean silhouette score was too small
#>   b) Subgroup had too few columns.
#>   c) There were too few signatures.
#> 
#> Following methods can be applied to this 'HierarchicalPartition' object:
#>  [1] "all_leaves"            "all_nodes"             "cola_report"           "collect_classes"      
#>  [5] "colnames"              "compare_signatures"    "dimension_reduction"   "functional_enrichment"
#>  [9] "get_anno_col"          "get_anno"              "get_children_nodes"    "get_classes"          
#> [13] "get_matrix"            "get_signatures"        "is_leaf_node"          "max_depth"            
#> [17] "merge_node"            "ncol"                  "node_info"             "node_level"           
#> [21] "nrow"                  "rownames"              "show"                  "split_node"           
#> [25] "suggest_best_k"        "test_to_known_factors" "top_rows_heatmap"      "top_rows_overlap"     
#> 
#> You can get result for a single node by e.g. object["01"]

The call of hierarchical_partition() was:

#> hierarchical_partition(data = lt$mat, anno = lt$anno, subset = 500, cores = 4)

Dimension of the input matrix:

mat = get_matrix(res_rh)
dim(mat)
#> [1] 11181  1715

All the methods that were tried:

res_rh@param$combination_method
#> [[1]]
#> [1] "ATC"     "skmeans"

Density distribution

The density distribution for each sample is visualized as one column in the following heatmap. The clustering is based on the distance which is the Kolmogorov-Smirnov statistic between two distributions.

library(ComplexHeatmap)
densityHeatmap(mat, top_annotation = HeatmapAnnotation(df = get_anno(res_rh), 
    col = get_anno_col(res_rh)), ylab = "value", cluster_columns = TRUE, show_column_names = FALSE,
    mc.cores = 1)

plot of chunk density-heatmap

Some values about the hierarchy:

all_nodes(res_rh)
#>  [1] "0"     "01"    "011"   "0111"  "0112"  "01121" "01122" "0113"  "012"   "0121"  "01211" "01212"
#> [13] "0122"  "01221" "01222" "01223" "013"   "0131"  "01311" "01312" "0132"  "01321" "01322" "0133" 
#> [25] "02"    "021"   "0211"  "0212"  "02121" "02122" "022"   "0221"  "0222"  "0223"  "023"   "0231" 
#> [37] "02311" "02312" "0232"  "024"   "0241"  "0242"  "0243"  "03"    "031"   "032"   "033"   "0331" 
#> [49] "0332"  "0333"  "0334"
all_leaves(res_rh)
#>  [1] "0111"  "01121" "01122" "0113"  "01211" "01212" "01221" "01222" "01223" "01311" "01312" "01321"
#> [13] "01322" "0133"  "0211"  "02121" "02122" "0221"  "0222"  "0223"  "02311" "02312" "0232"  "0241" 
#> [25] "0242"  "0243"  "031"   "032"   "0331"  "0332"  "0333"  "0334"
node_info(res_rh)
#>       id best_method depth best_k n_columns n_signatures p_signatures is_leaf
#> 1      0 ATC:skmeans     1      3      1715         3961     0.354262   FALSE
#> 2     01 ATC:skmeans     2      3       705         2435     0.217780   FALSE
#> 3    011 ATC:skmeans     3      3       228          990     0.088543   FALSE
#> 4   0111 ATC:skmeans     4      2        80           NA           NA    TRUE
#> 5   0112 ATC:skmeans     4      2        80          224     0.020034   FALSE
#> 6  01121 ATC:skmeans     5      2        40           70     0.006261    TRUE
#> 7  01122 ATC:skmeans     5      2        40            0     0.000000    TRUE
#> 8   0113 ATC:skmeans     4      2        68           62     0.005545    TRUE
#> 9    012 ATC:skmeans     3      2       190         1448     0.129505   FALSE
#> 10  0121 ATC:skmeans     4      2       109          466     0.041678   FALSE
#> 11 01211 ATC:skmeans     5      2        53           15     0.001342    TRUE
#> 12 01212 ATC:skmeans     5      2        56          111     0.009928    TRUE
#> 13  0122 ATC:skmeans     4      3        81         1014     0.090690   FALSE
#> 14 01221 not applied     5     NA        32           NA           NA    TRUE
#> 15 01222 not applied     5     NA        24           NA           NA    TRUE
#> 16 01223 not applied     5     NA        25           NA           NA    TRUE
#> 17   013 ATC:skmeans     3      3       287         1692     0.151328   FALSE
#> 18  0131 ATC:skmeans     4      2        90          911     0.081478   FALSE
#> 19 01311 ATC:skmeans     5      2        58           87     0.007781    TRUE
#> 20 01312 not applied     5     NA        32           NA           NA    TRUE
#> 21  0132 ATC:skmeans     4      2       115          314     0.028083   FALSE
#> 22 01321 ATC:skmeans     5      2        69           31     0.002773    TRUE
#> 23 01322 ATC:skmeans     5      2        46           32     0.002862    TRUE
#> 24  0133 ATC:skmeans     4      2        82          179     0.016009    TRUE
#> 25    02 ATC:skmeans     2      4       681         5526     0.494231   FALSE
#> 26   021 ATC:skmeans     3      2       206          552     0.049369   FALSE
#> 27  0211 ATC:skmeans     4      2        95           NA           NA    TRUE
#> 28  0212 ATC:skmeans     4      2       111          314     0.028083   FALSE
#> 29 02121 ATC:skmeans     5      2        53          120     0.010732    TRUE
#> 30 02122 ATC:skmeans     5      3        58           NA           NA    TRUE
#> 31   022 ATC:skmeans     3      3       156         1545     0.138181   FALSE
#> 32  0221 ATC:skmeans     4      2        54           83     0.007423    TRUE
#> 33  0222 ATC:skmeans     4      2        65           38     0.003399    TRUE
#> 34  0223 ATC:skmeans     4      2        37           NA           NA    TRUE
#> 35   023 ATC:skmeans     3      2       198          940     0.084071   FALSE
#> 36  0231 ATC:skmeans     4      2        93          393     0.035149   FALSE
#> 37 02311 ATC:skmeans     5      2        53           NA           NA    TRUE
#> 38 02312 ATC:skmeans     5      2        40           45     0.004025    TRUE
#> 39  0232 ATC:skmeans     4      2       105          141     0.012611    TRUE
#> 40   024 ATC:skmeans     3      3       121          498     0.044540   FALSE
#> 41  0241 ATC:skmeans     4      2        44            4     0.000358    TRUE
#> 42  0242 ATC:skmeans     4      2        43           11     0.000984    TRUE
#> 43  0243 ATC:skmeans     4      2        34            0     0.000000    TRUE
#> 44    03 ATC:skmeans     2      3       329         1622     0.145068   FALSE
#> 45   031 ATC:skmeans     3      3       132           NA           NA    TRUE
#> 46   032 ATC:skmeans     3      2        99           58     0.005187    TRUE
#> 47   033 ATC:skmeans     3      4        98         1396     0.124855   FALSE
#> 48  0331 ATC:skmeans     4      2        40           15     0.001342    TRUE
#> 49  0332 not applied     4     NA        31           NA           NA    TRUE
#> 50  0333 not applied     4     NA        13           NA           NA    TRUE
#> 51  0334 not applied     4     NA        14           NA           NA    TRUE

In the output from node_info(), there are the following columns:

Labels of nodes are encoded in a special way. The number of digits correspond to the depth of the node in the hierarchy and the value of the digits correspond to the index of the subgroup in the current node, E.g. a label of “012” means the node is the second subgroup of the partition which is the first subgroup of the root node.

Suggest the best k

Following table shows the best k (number of partitions) for each node in the partition hierarchy. Clicking on the node name in the table goes to the corresponding section for the partitioning on that node.

The cola vignette explains the definition of the metrics used for determining the best number of partitions.

suggest_best_k(res_rh)
Node Best method Is leaf Best k 1-PAC Mean silhouette Concordance #samples
Node0 ATC:skmeans 4 0.98 0.95 0.98 1715 **
Node01 ATC:skmeans 3 0.99 0.97 0.99 705 **
Node011 ATC:skmeans 3 0.98 0.95 0.98 228 **
Node0111-leaf ATC:skmeans ✓ (a) 2 0.78 0.88 0.95 80
Node0112 ATC:skmeans 3 0.96 0.92 0.96 80 **
Node01121-leaf ATC:skmeans ✓ (c) 2 1.00 0.96 0.98 40 **
Node01122-leaf ATC:skmeans ✓ (c) 2 0.95 0.95 0.98 40 *
Node0113-leaf ATC:skmeans ✓ (c) 2 0.97 0.96 0.98 68 **
Node012 ATC:skmeans 2 1.00 1.00 1.00 190 **
Node0121 ATC:skmeans 3 0.99 0.94 0.98 109 **
Node01211-leaf ATC:skmeans ✓ (c) 2 0.81 0.94 0.97 53
Node01212-leaf ATC:skmeans ✓ (c) 2 1.00 0.96 0.98 56 **
Node0122 ATC:skmeans 3 1.00 0.98 0.99 81 **
Node01221-leaf not applied ✓ (b) 32
Node01222-leaf not applied ✓ (b) 24
Node01223-leaf not applied ✓ (b) 25
Node013 ATC:skmeans 3 1.00 0.98 0.99 287 **
Node0131 ATC:skmeans 4 0.94 0.91 0.94 90 *
Node01311-leaf ATC:skmeans ✓ (c) 3 0.93 0.92 0.97 58 *
Node01312-leaf not applied ✓ (b) 32
Node0132 ATC:skmeans 3 0.94 0.91 0.96 115 *
Node01321-leaf ATC:skmeans ✓ (c) 2 1.00 0.99 0.99 69 **
Node01322-leaf ATC:skmeans ✓ (c) 3 0.91 0.87 0.95 46 *
Node0133-leaf ATC:skmeans ✓ (c) 3 0.95 0.93 0.97 82 *
Node02 ATC:skmeans 4 0.99 0.96 0.98 681 **
Node021 ATC:skmeans 2 0.96 0.95 0.98 206 **
Node0211-leaf ATC:skmeans ✓ (a) 2 0.75 0.90 0.95 95
Node0212 ATC:skmeans 2 0.98 0.96 0.98 111 **
Node02121-leaf ATC:skmeans ✓ (c) 2 1.00 1.00 1.00 53 **
Node02122-leaf ATC:skmeans ✓ (a) 2 0.79 0.84 0.94 58
Node022 ATC:skmeans 3 0.98 0.95 0.98 156 **
Node0221-leaf ATC:skmeans ✓ (c) 3 0.98 0.94 0.98 54 **
Node0222-leaf ATC:skmeans ✓ (c) 2 1.00 0.97 0.98 65 **
Node0223-leaf ATC:skmeans ✓ (a) 3 0.79 0.88 0.95 37
Node023 ATC:skmeans 3 0.94 0.95 0.97 198 *
Node0231 ATC:skmeans 2 1.00 0.98 0.99 93 **
Node02311-leaf ATC:skmeans ✓ (a) 2 0.77 0.87 0.95 53
Node02312-leaf ATC:skmeans ✓ (c) 3 0.99 0.93 0.96 40 **
Node0232-leaf ATC:skmeans ✓ (c) 2 0.92 0.92 0.97 105 *
Node024 ATC:skmeans 3 0.92 0.93 0.97 121 *
Node0241-leaf ATC:skmeans ✓ (c) 2 0.99 0.96 0.98 44 **
Node0242-leaf ATC:skmeans ✓ (c) 2 0.95 0.96 0.98 43 *
Node0243-leaf ATC:skmeans ✓ (c) 2 1.00 0.94 0.98 34 **
Node03 ATC:skmeans 4 0.97 0.92 0.96 329 **
Node031-leaf ATC:skmeans ✓ (a) 3 0.78 0.84 0.93 132
Node032-leaf ATC:skmeans ✓ (c) 2 0.92 0.96 0.98 99 *
Node033 ATC:skmeans 4 1.00 0.99 0.99 98 **
Node0331-leaf ATC:skmeans ✓ (c) 2 0.84 0.90 0.96 40
Node0332-leaf not applied ✓ (b) 31
Node0333-leaf not applied ✓ (b) 13
Node0334-leaf not applied ✓ (b) 14

Stop reason: a) Mean silhouette score was too small b) Subgroup had too few columns. c) There were too few signatures.

**: 1-PAC > 0.95, *: 1-PAC > 0.9

Partition hierarchy

The nodes of the hierarchy can be merged by setting the merge_node parameters. Here we control the hierarchy with the min_n_signatures parameter. The value of min_n_signatures is from node_info().

collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 224))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 314))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 314))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 393))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 466))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 498))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 552))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 911))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 940))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 990))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1014))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1396))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1448))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1545))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1622))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1692))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 2435))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 3961))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent
collect_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 5526))
#> Error in dimnames(x) <- dn: length of 'dimnames' [2] not equal to array extent

Following shows the table of the partitions (You need to click the show/hide code output link to see it).

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 224))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"         "01212"         "01212"         "01212"         "01212"         "01211" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>         "01211"         "01211"         "01212"         "01212"         "01211"         "01212" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>         "01211"         "01211"         "01211"         "01212"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>         "01212"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"         "01212"         "01221"         "01211"         "01212" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>         "01212"         "01223"         "01212"         "01212"         "01212"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"         "01212"         "01211"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>         "01211"         "01211"         "01212"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"         "01212"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"         "01212"          "0113"         "01211" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"         "01211"          "0113"         "01212"         "01211"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>         "01212"         "01212"          "0113"          "0113"         "01211"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>         "01211"          "0113"          "0113"          "0113"         "01122"         "01211" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"         "01211"         "01212" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"         "01212"          "0113"          "0113"         "01212" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>         "01212"          "0113"         "01322"         "01211"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"         "01212"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>         "01212"          "0113"         "01211"         "01321"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>         "01212"         "01211"          "0113"         "01211"         "01212"         "01211" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>         "01211"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"         "02312"         "02311" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>         "02122"           "031"           "032"          "0334"         "01212"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"         "02312"         "01212"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"         "02312"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"         "02122"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"         "02312"         "01322" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"         "02312"         "01211"          "0113"         "02311"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"         "01211"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"         "01211"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>         "02122"           "031"           "032"         "02122"         "01211"         "01212" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>         "02311"          "0232"         "02312"          "0232"         "02122"         "01212" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>         "01212"         "02311"         "02122"         "01212"         "02122"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>         "01212"         "01212"         "01212"         "01212"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>         "01122"          "0133"          "0113"          "0133"         "01212"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"         "01122"          "0111"         "01211"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>         "01211"         "01223"          "0113"         "01211"          "0133"         "01322" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"         "01212"         "01211"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"         "01122"         "02312"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"         "01322"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"         "01122"          "0133"          "0133"          "0133"         "01122" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"         "01122"          "0133"         "01212"         "01212"         "01211" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"         "01212"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"         "01122"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"         "01212"          "0111"         "01122"         "01122"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"         "01211"          "0111"          "0133"         "01122" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"         "01211" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>         "01122"          "0111"         "01122"          "0113"         "01212"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"         "01211"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>         "01211"         "01211"         "01212"         "01221"         "01221"         "01211" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"         "01211"         "01221"         "01211" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>         "01211"         "01211"          "0113"         "01211"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>         "01212"         "01211"         "01211"         "01221"         "01223"         "01211" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01211" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>         "01211"         "01221"         "01223"          "0113"         "01211"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>         "01211"          "0111"         "01223"         "01212"          "0113"         "01211" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"         "02311"         "01222"         "02311"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"         "01122"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"         "02311"          "0232"          "0133"         "02312"         "02312" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"         "02312"         "02311"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>         "02311"         "02312"          "0133"          "0133"         "02312"         "02312" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>         "02312"         "02312"          "0133"         "02311"         "02311"         "02311" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>         "02311"          "0232"          "0232"         "02312"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>         "02311"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"         "02311"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"         "02311"         "02312"         "01122" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>         "02311"         "02311"         "02311"         "02311"         "02122"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>         "02312"         "01122"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"         "02311"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"         "02312"          "0232"         "02311" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"         "02312"         "02311"         "02311"          "0133"         "02312" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"         "01122"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"         "02312" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"         "01121"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"         "02311"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>         "02311"         "02312"         "02311"          "0232"         "02312"         "02311" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>         "02312"         "02311"          "0232"          "0232"         "02312"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>         "02312"          "0133"         "02311"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>         "02311"          "0232"          "0232"          "0133"          "0133"         "02311" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"         "01122"         "01311"         "01122" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"         "01122"         "02311"          "0133"         "01122" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"         "02311"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"         "02311" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>         "02312"          "0232"         "02311"         "02312"         "02312"         "02311" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>         "02311"         "02122"         "02311"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"         "02122"         "02312"         "02312"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>         "02311"         "02311"         "02122"          "0232"         "01122"         "02311" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>         "02122"         "02312"         "02122"         "02122"         "02122"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>         "02311"          "0232"         "02311"          "0232"         "02312"         "02312" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"         "02311"         "02311"          "0232"          "0133"         "02311" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>         "02311"          "0232"         "02311"          "0232"         "02311"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"         "02311"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>         "02311"         "02311"         "02122"         "02122"          "0232"         "01122" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>         "01212"         "02312"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>         "01322"          "0111"          "0111"          "0334"         "01223"         "02312" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>         "01322"         "01322"         "01322"         "01121"         "01121"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"         "01321"         "01321"         "01121"         "01322" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>         "01322"         "01223"         "01321"         "01321"         "01321"         "01321" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"         "01321"         "01321"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>         "01321"          "0133"         "01322"         "01121"         "01122"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>         "01121"          "0111"         "01311"         "01321"         "01321"         "01321" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>         "01321"          "0111"         "01321"         "01321"          "0133"         "01122" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"         "01321"         "01321" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"         "01122"          "0111"         "01122"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"         "01321"         "01122"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"         "01321"         "01122"         "01121"          "0133"         "01321" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"         "01121"         "01121"         "01122"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>         "01321"          "0111"          "0111"         "01321"         "01321"         "01212" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>         "01321"          "0133"         "01321"         "01122"         "01321"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>         "01121"         "01121"         "01122"          "0133"          "0133"         "01211" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>         "01321"         "01222"         "01121"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>         "01322"         "01122"          "0133"         "01222"         "01122"         "01321" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"         "01321"         "01321"         "01122"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>         "01322"         "01321"         "01321"         "01321"         "01222"         "01321" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"         "01322"         "01222"          "0111"         "01321"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>         "01321"          "0133"          "0111"         "01121"         "01322"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"         "01122"          "0111"         "01121"         "01321" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>         "01322"         "01121"         "01212"         "01321"         "01321"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>         "01322"         "01122"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>         "01121"          "0111"         "01322"         "01322"         "01122"         "01322" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"         "01322"         "01121"         "01121"         "01321" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>         "02312"         "01322"         "01321"         "01322"         "01322"         "01322" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>         "01121"         "01321"         "01322"         "01321"         "01321"         "01322" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>         "01321"         "01322"          "0111"         "01321"         "01321"         "01321" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>         "01322"         "01121"         "01321"          "0113"         "01321"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>         "01322"         "01321"         "01322"         "01121"          "0111"         "01121" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"         "01321"         "01121"         "01321"         "01322"         "01322" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"         "01321"         "01212"         "01321"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>         "01121"          "0111"         "01322"         "01321"         "01321"         "01121" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>         "01322"         "01321"         "01321"          "0133"         "01321"         "01121" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"         "01121"         "01322"         "01121"         "01321"         "01321" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"         "01121"         "01311"         "01321"         "01122"         "01322" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"         "01321"          "0111"         "01322"         "01322"         "01122" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>         "01322"          "0113"          "0111"          "0334"         "01322"         "01321" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>         "01121"         "01121"         "01121"         "01121"         "01321"         "01121" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>         "01121"         "01121"         "01121"          "0111"         "01322"         "01322" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>         "01121"         "01321"         "01322"         "01322"         "01212"         "01121" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"         "01322"         "01212"         "01121"         "01321"         "02122" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>         "02121"          "0211"          "0331"         "02121"         "02121"         "02121" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>         "02122"          "0332"           "031"           "031"         "02122"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>         "02121"          "0332"          "0211"         "02121"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>         "02122"         "02121"          "0211"         "02122"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"         "02122" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"         "02122"         "02122"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"         "02121" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"         "02121"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>         "02122"         "02121"          "0331"          "0331"         "01311"         "02122" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>         "02122"         "02122"          "0232"         "02122"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>         "02122"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"         "02121"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>         "02122"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>         "02121"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"         "02122"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>         "02122"         "02122"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"         "02122"          "0211"         "02121"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>         "02121"         "02122"         "02122"         "02122"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"         "02122"          "0211"         "02122"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>         "02122"          "0211"          "0211"         "02122"          "0211"         "02121" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>         "02121"         "02121"          "0331"         "02312"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"         "02122"         "02312"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"         "02122"          "0211"          "0211"         "02121" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>         "02122"          "0232"         "01311"         "02122"         "02121"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>         "02121"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>         "02121"          "0211"          "0211"          "0211"         "01311"         "02122" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"         "02121"         "02121"         "02122"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"         "02122"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"         "02121"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"         "02121"         "02122" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"         "02122"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"         "02121"          "0211"         "02121"         "02122"         "02121" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"         "02122"         "02122" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"         "02122"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"         "02122"          "0211"         "02122"         "02121" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"         "02121"         "02121"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>         "02121"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>         "02121"           "031"           "031"           "031"         "02121"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"         "02121"         "02121"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"         "02121"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"         "02121"           "032"           "031"         "02121" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"         "02121" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"         "02121"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"         "02121"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"         "02121"           "031"           "032"         "02121"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>         "02121"           "032"         "02121"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>         "02121"           "031"           "031"         "02121"         "02121"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"         "02121"         "02121"           "032"           "031"         "02121" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"         "02121"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"          "0241"          "0221"          "0243"          "0242" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"          "0242"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"          "0242"          "0221"         "01312"          "0243" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"          "0242" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>          "0242"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"          "0242"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>          "0243"          "0222"          "0222"          "0243"          "0242"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>          "0242"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>          "0242"          "0221"          "0221"          "0221"          "0333"          "0242" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"          "0241"          "0243"          "0222"          "0333"          "0241" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>          "0242"          "0242"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>          "0241"         "01312"          "0241"          "0222"          "0242"          "0243" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"          "0242"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>          "0242"          "0241"          "0242"          "0242"         "01312"          "0242" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>          "0243"          "0242"         "01312"          "0222"          "0222"          "0242" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>          "0243"          "0242"         "01312"          "0242"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>          "0242"          "0241"          "0242"         "01312"          "0241"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>          "0242"          "0242"          "0222"          "0222"          "0242"          "0242" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>          "0243"          "0333"          "0333"          "0241"          "0221"          "0241" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"          "0241"          "0242" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"          "0243"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"          "0243"          "0242"          "0223"          "0243"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>          "0241"          "0243"          "0221"          "0221"          "0243"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"          "0241"          "0221"          "0242"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"          "0243" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"          "0241" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"          "0243"          "0243"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"          "0241"          "0243"          "0242"          "0241" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"          "0243" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"          "0241" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"          "0242"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"          "0241"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"          "0241"         "01312"          "0241"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>          "0241"          "0242"          "0243"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"          "0241"          "0243"          "0222"          "0241" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>          "0241"          "0243"          "0241"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"          "0242"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"          "0241"          "0222"          "0243"          "0222"          "0241" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"          "0241"          "0222"          "0243"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"          "0241"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"          "0242"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"          "0242"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>          "0243"          "0241"          "0242"          "0243"          "0223"          "0242" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>          "0242"          "0222"          "0223"          "0222"          "0241"          "0243" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>          "0241"          "0222"          "0223"          "0222"          "0243"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"          "0241"          "0243"          "0243" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>          "0243"          "0221"          "0221"          "0242"          "0243"          "0241" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"          "0243"          "0241"          "0241" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"          "0241"          "0223"          "0241" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"          "0243"          "0241"          "0221"          "0241"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 314))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"         "01212"         "01212"         "01212"         "01212"         "01211" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>         "01211"         "01211"         "01212"         "01212"         "01211"         "01212" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>         "01211"         "01211"         "01211"         "01212"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>         "01212"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"         "01212"         "01221"         "01211"         "01212" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>         "01212"         "01223"         "01212"         "01212"         "01212"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"         "01212"         "01211"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>         "01211"         "01211"         "01212"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"         "01212"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"         "01212"          "0113"         "01211" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"         "01211"          "0113"         "01212"         "01211"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>         "01212"         "01212"          "0113"          "0113"         "01211"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>         "01211"          "0113"          "0113"          "0113"          "0112"         "01211" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"         "01211"         "01212" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"         "01212"          "0113"          "0113"         "01212" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>         "01212"          "0113"         "01322"         "01211"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"         "01212"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>         "01212"          "0113"         "01211"         "01321"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>         "01212"         "01211"          "0113"         "01211"         "01212"         "01211" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>         "01211"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"         "02312"         "02311" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>         "02122"           "031"           "032"          "0334"         "01212"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"         "02312"         "01212"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"         "02312"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"         "02122"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"         "02312"         "01322" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"         "02312"         "01211"          "0113"         "02311"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"         "01211"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"         "01211"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>         "02122"           "031"           "032"         "02122"         "01211"         "01212" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>         "02311"          "0232"         "02312"          "0232"         "02122"         "01212" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>         "01212"         "02311"         "02122"         "01212"         "02122"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>         "01212"         "01212"         "01212"         "01212"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"         "01212"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"         "01211"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>         "01211"         "01223"          "0113"         "01211"          "0133"         "01322" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"         "01212"         "01211"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"         "02312"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"         "01322"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"         "01212"         "01212"         "01211" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"         "01212"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"         "01212"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"         "01211"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"         "01211" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"         "01212"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"         "01211"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>         "01211"         "01211"         "01212"         "01221"         "01221"         "01211" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"         "01211"         "01221"         "01211" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>         "01211"         "01211"          "0113"         "01211"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>         "01212"         "01211"         "01211"         "01221"         "01223"         "01211" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01211" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>         "01211"         "01221"         "01223"          "0113"         "01211"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>         "01211"          "0111"         "01223"         "01212"          "0113"         "01211" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"         "02311"         "01222"         "02311"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"         "02311"          "0232"          "0133"         "02312"         "02312" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"         "02312"         "02311"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>         "02311"         "02312"          "0133"          "0133"         "02312"         "02312" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>         "02312"         "02312"          "0133"         "02311"         "02311"         "02311" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>         "02311"          "0232"          "0232"         "02312"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>         "02311"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"         "02311"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"         "02311"         "02312"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>         "02311"         "02311"         "02311"         "02311"         "02122"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>         "02312"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"         "02311"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"         "02312"          "0232"         "02311" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"         "02312"         "02311"         "02311"          "0133"         "02312" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"         "02312" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"         "02311"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>         "02311"         "02312"         "02311"          "0232"         "02312"         "02311" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>         "02312"         "02311"          "0232"          "0232"         "02312"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>         "02312"          "0133"         "02311"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>         "02311"          "0232"          "0232"          "0133"          "0133"         "02311" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"         "02311"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"         "02311"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"         "02311" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>         "02312"          "0232"         "02311"         "02312"         "02312"         "02311" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>         "02311"         "02122"         "02311"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"         "02122"         "02312"         "02312"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>         "02311"         "02311"         "02122"          "0232"          "0112"         "02311" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>         "02122"         "02312"         "02122"         "02122"         "02122"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>         "02311"          "0232"         "02311"          "0232"         "02312"         "02312" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"         "02311"         "02311"          "0232"          "0133"         "02311" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>         "02311"          "0232"         "02311"          "0232"         "02311"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"         "02311"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>         "02311"         "02311"         "02122"         "02122"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>         "01212"         "02312"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>         "01322"          "0111"          "0111"          "0334"         "01223"         "02312" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>         "01322"         "01322"         "01322"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"         "01321"         "01321"          "0112"         "01322" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>         "01322"         "01223"         "01321"         "01321"         "01321"         "01321" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"         "01321"         "01321"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>         "01321"          "0133"         "01322"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"         "01321"         "01321"         "01321" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>         "01321"          "0111"         "01321"         "01321"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"         "01321"         "01321" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"         "01321"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"         "01321"          "0112"          "0112"          "0133"         "01321" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>         "01321"          "0111"          "0111"         "01321"         "01321"         "01212" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>         "01321"          "0133"         "01321"          "0112"         "01321"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"         "01211" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>         "01321"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>         "01322"          "0112"          "0133"         "01222"          "0112"         "01321" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"         "01321"         "01321"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>         "01322"         "01321"         "01321"         "01321"         "01222"         "01321" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"         "01322"         "01222"          "0111"         "01321"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>         "01321"          "0133"          "0111"          "0112"         "01322"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"         "01321" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>         "01322"          "0112"         "01212"         "01321"         "01321"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>         "01322"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"         "01322"         "01322"          "0112"         "01322" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"         "01322"          "0112"          "0112"         "01321" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>         "02312"         "01322"         "01321"         "01322"         "01322"         "01322" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"         "01321"         "01322"         "01321"         "01321"         "01322" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>         "01321"         "01322"          "0111"         "01321"         "01321"         "01321" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>         "01322"          "0112"         "01321"          "0113"         "01321"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>         "01322"         "01321"         "01322"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"         "01321"          "0112"         "01321"         "01322"         "01322" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"         "01321"         "01212"         "01321"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"         "01322"         "01321"         "01321"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>         "01322"         "01321"         "01321"          "0133"         "01321"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"         "01322"          "0112"         "01321"         "01321" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"         "01321"          "0112"         "01322" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"         "01321"          "0111"         "01322"         "01322"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>         "01322"          "0113"          "0111"          "0334"         "01322"         "01321" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"         "01321"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"         "01322"         "01322" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"         "01321"         "01322"         "01322"         "01212"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"         "01322"         "01212"          "0112"         "01321"         "02122" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>         "02121"          "0211"          "0331"         "02121"         "02121"         "02121" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>         "02122"          "0332"           "031"           "031"         "02122"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>         "02121"          "0332"          "0211"         "02121"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>         "02122"         "02121"          "0211"         "02122"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"         "02122" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"         "02122"         "02122"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"         "02121" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"         "02121"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>         "02122"         "02121"          "0331"          "0331"         "01311"         "02122" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>         "02122"         "02122"          "0232"         "02122"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>         "02122"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"         "02121"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>         "02122"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>         "02121"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"         "02122"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>         "02122"         "02122"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"         "02122"          "0211"         "02121"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>         "02121"         "02122"         "02122"         "02122"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"         "02122"          "0211"         "02122"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>         "02122"          "0211"          "0211"         "02122"          "0211"         "02121" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>         "02121"         "02121"          "0331"         "02312"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"         "02122"         "02312"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"         "02122"          "0211"          "0211"         "02121" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>         "02122"          "0232"         "01311"         "02122"         "02121"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>         "02121"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>         "02121"          "0211"          "0211"          "0211"         "01311"         "02122" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"         "02121"         "02121"         "02122"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"         "02122"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"         "02121"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"         "02121"         "02122" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"         "02122"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"         "02121"          "0211"         "02121"         "02122"         "02121" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"         "02122"         "02122" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"         "02122"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"         "02122"          "0211"         "02122"         "02121" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"         "02121"         "02121"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>         "02121"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>         "02121"           "031"           "031"           "031"         "02121"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"         "02121"         "02121"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"         "02121"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"         "02121"           "032"           "031"         "02121" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"         "02121" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"         "02121"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"         "02121"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"         "02121"           "031"           "032"         "02121"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>         "02121"           "032"         "02121"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>         "02121"           "031"           "031"         "02121"         "02121"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"         "02121"         "02121"           "032"           "031"         "02121" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"         "02121"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"          "0241"          "0221"          "0243"          "0242" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"          "0242"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"          "0242"          "0221"         "01312"          "0243" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"          "0242" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>          "0242"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"          "0242"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>          "0243"          "0222"          "0222"          "0243"          "0242"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>          "0242"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>          "0242"          "0221"          "0221"          "0221"          "0333"          "0242" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"          "0241"          "0243"          "0222"          "0333"          "0241" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>          "0242"          "0242"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>          "0241"         "01312"          "0241"          "0222"          "0242"          "0243" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"          "0242"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>          "0242"          "0241"          "0242"          "0242"         "01312"          "0242" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>          "0243"          "0242"         "01312"          "0222"          "0222"          "0242" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>          "0243"          "0242"         "01312"          "0242"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>          "0242"          "0241"          "0242"         "01312"          "0241"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>          "0242"          "0242"          "0222"          "0222"          "0242"          "0242" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>          "0243"          "0333"          "0333"          "0241"          "0221"          "0241" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"          "0241"          "0242" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"          "0243"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"          "0243"          "0242"          "0223"          "0243"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>          "0241"          "0243"          "0221"          "0221"          "0243"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"          "0241"          "0221"          "0242"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"          "0243" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"          "0241" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"          "0243"          "0243"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"          "0241"          "0243"          "0242"          "0241" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"          "0243" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"          "0241" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"          "0242"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"          "0241"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"          "0241"         "01312"          "0241"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>          "0241"          "0242"          "0243"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"          "0241"          "0243"          "0222"          "0241" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>          "0241"          "0243"          "0241"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"          "0242"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"          "0241"          "0222"          "0243"          "0222"          "0241" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"          "0241"          "0222"          "0243"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"          "0241"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"          "0242"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"          "0242"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>          "0243"          "0241"          "0242"          "0243"          "0223"          "0242" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>          "0242"          "0222"          "0223"          "0222"          "0241"          "0243" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>          "0241"          "0222"          "0223"          "0222"          "0243"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"          "0241"          "0243"          "0243" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>          "0243"          "0221"          "0221"          "0242"          "0243"          "0241" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"          "0243"          "0241"          "0241" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"          "0241"          "0223"          "0241" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"          "0243"          "0241"          "0221"          "0241"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 314))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"         "01212"         "01212"         "01212"         "01212"         "01211" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>         "01211"         "01211"         "01212"         "01212"         "01211"         "01212" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>         "01211"         "01211"         "01211"         "01212"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>         "01212"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"         "01212"         "01221"         "01211"         "01212" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>         "01212"         "01223"         "01212"         "01212"         "01212"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"         "01212"         "01211"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>         "01211"         "01211"         "01212"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"         "01212"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"         "01212"          "0113"         "01211" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"         "01211"          "0113"         "01212"         "01211"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>         "01212"         "01212"          "0113"          "0113"         "01211"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>         "01211"          "0113"          "0113"          "0113"          "0112"         "01211" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"         "01211"         "01212" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"         "01212"          "0113"          "0113"         "01212" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>         "01212"          "0113"         "01322"         "01211"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"         "01212"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>         "01212"          "0113"         "01211"         "01321"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>         "01212"         "01211"          "0113"         "01211"         "01212"         "01211" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>         "01211"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"         "02312"         "02311" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>         "02122"           "031"           "032"          "0334"         "01212"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"         "02312"         "01212"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"         "02312"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"         "02122"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"         "02312"         "01322" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"         "02312"         "01211"          "0113"         "02311"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"         "01211"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"         "01211"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>         "02122"           "031"           "032"         "02122"         "01211"         "01212" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>         "02311"          "0232"         "02312"          "0232"         "02122"         "01212" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>         "01212"         "02311"         "02122"         "01212"         "02122"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>         "01212"         "01212"         "01212"         "01212"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"         "01212"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"         "01211"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>         "01211"         "01223"          "0113"         "01211"          "0133"         "01322" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"         "01212"         "01211"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"         "02312"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"         "01322"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"         "01212"         "01212"         "01211" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"         "01212"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"         "01212"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"         "01211"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"         "01211" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"         "01212"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"         "01211"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>         "01211"         "01211"         "01212"         "01221"         "01221"         "01211" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"         "01211"         "01221"         "01211" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>         "01211"         "01211"          "0113"         "01211"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>         "01212"         "01211"         "01211"         "01221"         "01223"         "01211" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01211" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>         "01211"         "01221"         "01223"          "0113"         "01211"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>         "01211"          "0111"         "01223"         "01212"          "0113"         "01211" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"         "02311"         "01222"         "02311"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"         "02311"          "0232"          "0133"         "02312"         "02312" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"         "02312"         "02311"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>         "02311"         "02312"          "0133"          "0133"         "02312"         "02312" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>         "02312"         "02312"          "0133"         "02311"         "02311"         "02311" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>         "02311"          "0232"          "0232"         "02312"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>         "02311"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"         "02311"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"         "02311"         "02312"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>         "02311"         "02311"         "02311"         "02311"         "02122"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>         "02312"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"         "02311"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"         "02312"          "0232"         "02311" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"         "02312"         "02311"         "02311"          "0133"         "02312" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"         "02312" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"         "02311"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>         "02311"         "02312"         "02311"          "0232"         "02312"         "02311" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>         "02312"         "02311"          "0232"          "0232"         "02312"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>         "02312"          "0133"         "02311"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>         "02311"          "0232"          "0232"          "0133"          "0133"         "02311" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"         "02311"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"         "02311"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"         "02311" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>         "02312"          "0232"         "02311"         "02312"         "02312"         "02311" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>         "02311"         "02122"         "02311"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"         "02122"         "02312"         "02312"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>         "02311"         "02311"         "02122"          "0232"          "0112"         "02311" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>         "02122"         "02312"         "02122"         "02122"         "02122"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>         "02311"          "0232"         "02311"          "0232"         "02312"         "02312" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"         "02311"         "02311"          "0232"          "0133"         "02311" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>         "02311"          "0232"         "02311"          "0232"         "02311"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"         "02311"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>         "02311"         "02311"         "02122"         "02122"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>         "01212"         "02312"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>         "01322"          "0111"          "0111"          "0334"         "01223"         "02312" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>         "01322"         "01322"         "01322"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"         "01321"         "01321"          "0112"         "01322" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>         "01322"         "01223"         "01321"         "01321"         "01321"         "01321" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"         "01321"         "01321"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>         "01321"          "0133"         "01322"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"         "01321"         "01321"         "01321" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>         "01321"          "0111"         "01321"         "01321"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"         "01321"         "01321" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"         "01321"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"         "01321"          "0112"          "0112"          "0133"         "01321" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>         "01321"          "0111"          "0111"         "01321"         "01321"         "01212" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>         "01321"          "0133"         "01321"          "0112"         "01321"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"         "01211" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>         "01321"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>         "01322"          "0112"          "0133"         "01222"          "0112"         "01321" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"         "01321"         "01321"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>         "01322"         "01321"         "01321"         "01321"         "01222"         "01321" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"         "01322"         "01222"          "0111"         "01321"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>         "01321"          "0133"          "0111"          "0112"         "01322"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"         "01321" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>         "01322"          "0112"         "01212"         "01321"         "01321"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>         "01322"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"         "01322"         "01322"          "0112"         "01322" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"         "01322"          "0112"          "0112"         "01321" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>         "02312"         "01322"         "01321"         "01322"         "01322"         "01322" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"         "01321"         "01322"         "01321"         "01321"         "01322" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>         "01321"         "01322"          "0111"         "01321"         "01321"         "01321" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>         "01322"          "0112"         "01321"          "0113"         "01321"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>         "01322"         "01321"         "01322"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"         "01321"          "0112"         "01321"         "01322"         "01322" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"         "01321"         "01212"         "01321"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"         "01322"         "01321"         "01321"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>         "01322"         "01321"         "01321"          "0133"         "01321"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"         "01322"          "0112"         "01321"         "01321" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"         "01321"          "0112"         "01322" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"         "01321"          "0111"         "01322"         "01322"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>         "01322"          "0113"          "0111"          "0334"         "01322"         "01321" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"         "01321"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"         "01322"         "01322" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"         "01321"         "01322"         "01322"         "01212"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"         "01322"         "01212"          "0112"         "01321"         "02122" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>         "02121"          "0211"          "0331"         "02121"         "02121"         "02121" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>         "02122"          "0332"           "031"           "031"         "02122"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>         "02121"          "0332"          "0211"         "02121"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>         "02122"         "02121"          "0211"         "02122"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"         "02122" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"         "02122"         "02122"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"         "02121" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"         "02121"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>         "02122"         "02121"          "0331"          "0331"         "01311"         "02122" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>         "02122"         "02122"          "0232"         "02122"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>         "02122"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"         "02121"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>         "02122"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>         "02121"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"         "02122"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>         "02122"         "02122"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"         "02122"          "0211"         "02121"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>         "02121"         "02122"         "02122"         "02122"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"         "02122"          "0211"         "02122"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>         "02122"          "0211"          "0211"         "02122"          "0211"         "02121" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>         "02121"         "02121"          "0331"         "02312"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"         "02122"         "02312"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"         "02122"          "0211"          "0211"         "02121" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>         "02122"          "0232"         "01311"         "02122"         "02121"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>         "02121"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>         "02121"          "0211"          "0211"          "0211"         "01311"         "02122" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"         "02121"         "02121"         "02122"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"         "02122"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"         "02121"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"         "02121"         "02122" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"         "02122"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"         "02121"          "0211"         "02121"         "02122"         "02121" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"         "02122"         "02122" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"         "02122"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"         "02122"          "0211"         "02122"         "02121" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"         "02121"         "02121"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>         "02121"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>         "02121"           "031"           "031"           "031"         "02121"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"         "02121"         "02121"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"         "02121"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"         "02121"           "032"           "031"         "02121" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"         "02121" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"         "02121"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"         "02121"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"         "02121"           "031"           "032"         "02121"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>         "02121"           "032"         "02121"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>         "02121"           "031"           "031"         "02121"         "02121"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"         "02121"         "02121"           "032"           "031"         "02121" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"         "02121"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"          "0241"          "0221"          "0243"          "0242" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"          "0242"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"          "0242"          "0221"         "01312"          "0243" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"          "0242" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>          "0242"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"          "0242"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>          "0243"          "0222"          "0222"          "0243"          "0242"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>          "0242"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>          "0242"          "0221"          "0221"          "0221"          "0333"          "0242" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"          "0241"          "0243"          "0222"          "0333"          "0241" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>          "0242"          "0242"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>          "0241"         "01312"          "0241"          "0222"          "0242"          "0243" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"          "0242"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>          "0242"          "0241"          "0242"          "0242"         "01312"          "0242" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>          "0243"          "0242"         "01312"          "0222"          "0222"          "0242" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>          "0243"          "0242"         "01312"          "0242"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>          "0242"          "0241"          "0242"         "01312"          "0241"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>          "0242"          "0242"          "0222"          "0222"          "0242"          "0242" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>          "0243"          "0333"          "0333"          "0241"          "0221"          "0241" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"          "0241"          "0242" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"          "0243"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"          "0243"          "0242"          "0223"          "0243"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>          "0241"          "0243"          "0221"          "0221"          "0243"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"          "0241"          "0221"          "0242"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"          "0243" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"          "0241" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"          "0243"          "0243"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"          "0241"          "0243"          "0242"          "0241" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"          "0243" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"          "0241" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"          "0242"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"          "0241"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"          "0241"         "01312"          "0241"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>          "0241"          "0242"          "0243"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"          "0241"          "0243"          "0222"          "0241" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>          "0241"          "0243"          "0241"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"          "0242"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"          "0241"          "0222"          "0243"          "0222"          "0241" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"          "0241"          "0222"          "0243"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"          "0241"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"          "0242"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"          "0242"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>          "0243"          "0241"          "0242"          "0243"          "0223"          "0242" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>          "0242"          "0222"          "0223"          "0222"          "0241"          "0243" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>          "0241"          "0222"          "0223"          "0222"          "0243"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"          "0241"          "0243"          "0243" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>          "0243"          "0221"          "0221"          "0242"          "0243"          "0241" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"          "0243"          "0241"          "0241" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"          "0241"          "0223"          "0241" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"          "0243"          "0241"          "0221"          "0241"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 393))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"         "01212"         "01212"         "01212"         "01212"         "01211" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>         "01211"         "01211"         "01212"         "01212"         "01211"         "01212" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>         "01211"         "01211"         "01211"         "01212"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>         "01212"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"         "01212"         "01221"         "01211"         "01212" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>         "01212"         "01223"         "01212"         "01212"         "01212"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"         "01212"         "01211"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>         "01211"         "01211"         "01212"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"         "01212"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"         "01212"          "0113"         "01211" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"         "01211"          "0113"         "01212"         "01211"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>         "01212"         "01212"          "0113"          "0113"         "01211"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>         "01211"          "0113"          "0113"          "0113"          "0112"         "01211" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"         "01211"         "01212" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"         "01212"          "0113"          "0113"         "01212" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>         "01212"          "0113"          "0132"         "01211"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"         "01212"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>         "01212"          "0113"         "01211"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>         "01212"         "01211"          "0113"         "01211"         "01212"         "01211" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>         "01211"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"         "02312"         "02311" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>          "0212"           "031"           "032"          "0334"         "01212"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"         "02312"         "01212"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"         "02312"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"          "0212"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"         "02312"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"         "02312"         "01211"          "0113"         "02311"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"         "01211"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"         "01211"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>          "0212"           "031"           "032"          "0212"         "01211"         "01212" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>         "02311"          "0232"         "02312"          "0232"          "0212"         "01212" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>         "01212"         "02311"          "0212"         "01212"          "0212"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>         "01212"         "01212"         "01212"         "01212"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"         "01212"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"         "01211"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>         "01211"         "01223"          "0113"         "01211"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"         "01212"         "01211"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"         "02312"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"         "01212"         "01212"         "01211" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"         "01212"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"         "01212"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"         "01211"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"         "01211" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"         "01212"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"         "01211"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>         "01211"         "01211"         "01212"         "01221"         "01221"         "01211" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"         "01211"         "01221"         "01211" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>         "01211"         "01211"          "0113"         "01211"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>         "01212"         "01211"         "01211"         "01221"         "01223"         "01211" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01211" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>         "01211"         "01221"         "01223"          "0113"         "01211"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>         "01211"          "0111"         "01223"         "01212"          "0113"         "01211" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"         "02311"         "01222"         "02311"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"         "02311"          "0232"          "0133"         "02312"         "02312" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"         "02312"         "02311"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>         "02311"         "02312"          "0133"          "0133"         "02312"         "02312" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>         "02312"         "02312"          "0133"         "02311"         "02311"         "02311" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>         "02311"          "0232"          "0232"         "02312"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>         "02311"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"         "02311"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"         "02311"         "02312"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>         "02311"         "02311"         "02311"         "02311"          "0212"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>         "02312"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"         "02311"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"         "02312"          "0232"         "02311" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"         "02312"         "02311"         "02311"          "0133"         "02312" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"         "02312" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"         "02311"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>         "02311"         "02312"         "02311"          "0232"         "02312"         "02311" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>         "02312"         "02311"          "0232"          "0232"         "02312"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>         "02312"          "0133"         "02311"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>         "02311"          "0232"          "0232"          "0133"          "0133"         "02311" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"         "02311"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"         "02311"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"         "02311" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>         "02312"          "0232"         "02311"         "02312"         "02312"         "02311" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>         "02311"          "0212"         "02311"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"          "0212"         "02312"         "02312"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>         "02311"         "02311"          "0212"          "0232"          "0112"         "02311" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>          "0212"         "02312"          "0212"          "0212"          "0212"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>         "02311"          "0232"         "02311"          "0232"         "02312"         "02312" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"         "02311"         "02311"          "0232"          "0133"         "02311" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>         "02311"          "0232"         "02311"          "0232"         "02311"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"         "02311"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>         "02311"         "02311"          "0212"          "0212"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>         "01212"         "02312"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"         "02312" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"         "01212" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"         "01211" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"         "01212"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>         "02312"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"         "01212"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"         "01212"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"          "0132"         "01212"          "0112"          "0132"          "0212" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>          "0212"          "0211"          "0331"          "0212"          "0212"          "0212" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>          "0212"          "0332"           "031"           "031"          "0212"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>          "0212"          "0332"          "0211"          "0212"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>          "0212"          "0212"          "0211"          "0212"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"          "0212" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"          "0212"          "0212"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"          "0212" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"          "0212"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>          "0212"          "0212"          "0331"          "0331"         "01311"          "0212" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>          "0212"          "0212"          "0232"          "0212"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>          "0212"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"          "0212"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>          "0212"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>          "0212"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"          "0212"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>          "0212"          "0212"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"          "0212"          "0211"          "0212"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>          "0212"          "0212"          "0212"          "0212"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"          "0212"          "0211"          "0212"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>          "0212"          "0211"          "0211"          "0212"          "0211"          "0212" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>          "0212"          "0212"          "0331"         "02312"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"          "0212"         "02312"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"          "0212"          "0211"          "0211"          "0212" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>          "0212"          "0232"         "01311"          "0212"          "0212"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>          "0212"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>          "0212"          "0211"          "0211"          "0211"         "01311"          "0212" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"          "0212"          "0212"          "0212"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"          "0212"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"          "0212"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"          "0212"          "0212" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"          "0212"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"          "0212"          "0211"          "0212"          "0212"          "0212" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"          "0212"          "0212" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"          "0212"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"          "0212"          "0211"          "0212"          "0212" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"          "0212"          "0212"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>          "0212"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>          "0212"           "031"           "031"           "031"          "0212"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"          "0212"          "0212"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"          "0212"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"          "0212"           "032"           "031"          "0212" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"          "0212" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"          "0212"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"          "0212"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"          "0212"           "031"           "032"          "0212"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>          "0212"           "032"          "0212"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>          "0212"           "031"           "031"          "0212"          "0212"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"          "0212"          "0212"           "032"           "031"          "0212" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"          "0212"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"          "0241"          "0221"          "0243"          "0242" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"          "0242"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"          "0242"          "0221"         "01312"          "0243" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"          "0242" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>          "0242"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"          "0242"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>          "0243"          "0222"          "0222"          "0243"          "0242"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>          "0242"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>          "0242"          "0221"          "0221"          "0221"          "0333"          "0242" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"          "0241"          "0243"          "0222"          "0333"          "0241" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>          "0242"          "0242"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>          "0241"         "01312"          "0241"          "0222"          "0242"          "0243" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"          "0242"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>          "0242"          "0241"          "0242"          "0242"         "01312"          "0242" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>          "0243"          "0242"         "01312"          "0222"          "0222"          "0242" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>          "0243"          "0242"         "01312"          "0242"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>          "0242"          "0241"          "0242"         "01312"          "0241"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>          "0242"          "0242"          "0222"          "0222"          "0242"          "0242" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>          "0243"          "0333"          "0333"          "0241"          "0221"          "0241" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"          "0241"          "0242" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"          "0243"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"          "0243"          "0242"          "0223"          "0243"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>          "0241"          "0243"          "0221"          "0221"          "0243"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"          "0241"          "0221"          "0242"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"          "0243" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"          "0241" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"          "0243"          "0243"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"          "0241"          "0243"          "0242"          "0241" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"          "0243" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"          "0241" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"          "0242"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"          "0241"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"          "0241"         "01312"          "0241"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>          "0241"          "0242"          "0243"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"          "0241"          "0243"          "0222"          "0241" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>          "0241"          "0243"          "0241"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"          "0242"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"          "0241"          "0222"          "0243"          "0222"          "0241" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"          "0241"          "0222"          "0243"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"          "0241"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"          "0242"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"          "0242"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>          "0243"          "0241"          "0242"          "0243"          "0223"          "0242" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>          "0242"          "0222"          "0223"          "0222"          "0241"          "0243" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>          "0241"          "0222"          "0223"          "0222"          "0243"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"          "0241"          "0243"          "0243" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>          "0243"          "0221"          "0221"          "0242"          "0243"          "0241" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"          "0243"          "0241"          "0241" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"          "0241"          "0223"          "0241" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"          "0243"          "0241"          "0221"          "0241"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 466))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"         "01212"         "01212"         "01212"         "01212"         "01211" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>         "01211"         "01211"         "01212"         "01212"         "01211"         "01212" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>         "01211"         "01211"         "01211"         "01212"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>         "01212"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"         "01212"         "01221"         "01211"         "01212" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>         "01212"         "01223"         "01212"         "01212"         "01212"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"         "01212"         "01211"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>         "01211"         "01211"         "01212"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"         "01212"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"         "01212"          "0113"         "01211" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"         "01211"          "0113"         "01212"         "01211"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>         "01212"         "01212"          "0113"          "0113"         "01211"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>         "01211"          "0113"          "0113"          "0113"          "0112"         "01211" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"         "01211"         "01212" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"         "01212"          "0113"          "0113"         "01212" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>         "01212"          "0113"          "0132"         "01211"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"         "01212"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>         "01212"          "0113"         "01211"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>         "01212"         "01211"          "0113"         "01211"         "01212"         "01211" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>         "01211"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>          "0212"           "031"           "032"          "0334"         "01212"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"          "0231"         "01212"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"          "0231"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"          "0212"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"          "0231"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"          "0231"         "01211"          "0113"          "0231"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"         "01211"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"         "01211"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>          "0212"           "031"           "032"          "0212"         "01211"         "01212" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>          "0231"          "0232"          "0231"          "0232"          "0212"         "01212" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>         "01212"          "0231"          "0212"         "01212"          "0212"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>         "01212"         "01212"         "01212"         "01212"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"         "01212"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"         "01211"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>         "01211"         "01223"          "0113"         "01211"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"         "01212"         "01211"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"          "0231"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"         "01212"         "01212"         "01211" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"         "01212"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"         "01212"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"         "01211"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"         "01211" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"         "01212"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"         "01211"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>         "01211"         "01211"         "01212"         "01221"         "01221"         "01211" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"         "01211"         "01221"         "01211" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>         "01211"         "01211"          "0113"         "01211"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>         "01212"         "01211"         "01211"         "01221"         "01223"         "01211" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01211" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>         "01211"         "01221"         "01223"          "0113"         "01211"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>         "01211"          "0111"         "01223"         "01212"          "0113"         "01211" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"          "0231"         "01222"          "0231"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"          "0231"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"          "0231"          "0231"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>          "0231"          "0231"          "0133"          "0133"          "0231"          "0231" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>          "0231"          "0231"          "0133"          "0231"          "0231"          "0231" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>          "0231"          "0232"          "0232"          "0231"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>          "0231"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"          "0231"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"          "0231"          "0231"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>          "0231"          "0231"          "0231"          "0231"          "0212"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>          "0231"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"          "0231"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"          "0231"          "0232"          "0231" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"          "0231"          "0231"          "0231"          "0133"          "0231" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"          "0231" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"          "0231"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>          "0231"          "0231"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>          "0231"          "0231"          "0232"          "0232"          "0231"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>          "0231"          "0133"          "0231"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>          "0231"          "0232"          "0232"          "0133"          "0133"          "0231" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"          "0231"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"          "0231"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"          "0231" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>          "0231"          "0232"          "0231"          "0231"          "0231"          "0231" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>          "0231"          "0212"          "0231"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"          "0212"          "0231"          "0231"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>          "0231"          "0231"          "0212"          "0232"          "0112"          "0231" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>          "0212"          "0231"          "0212"          "0212"          "0212"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"          "0231"          "0231"          "0232"          "0133"          "0231" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"          "0231"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>          "0231"          "0231"          "0212"          "0212"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>         "01212"          "0231"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"          "0231" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"         "01212" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"         "01211" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"         "01212"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>          "0231"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"         "01212"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"         "01212"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"          "0132"         "01212"          "0112"          "0132"          "0212" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>          "0212"          "0211"          "0331"          "0212"          "0212"          "0212" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>          "0212"          "0332"           "031"           "031"          "0212"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>          "0212"          "0332"          "0211"          "0212"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>          "0212"          "0212"          "0211"          "0212"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"          "0212" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"          "0212"          "0212"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"          "0212" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"          "0212"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>          "0212"          "0212"          "0331"          "0331"         "01311"          "0212" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>          "0212"          "0212"          "0232"          "0212"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>          "0212"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"          "0212"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>          "0212"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>          "0212"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"          "0212"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>          "0212"          "0212"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"          "0212"          "0211"          "0212"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>          "0212"          "0212"          "0212"          "0212"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"          "0212"          "0211"          "0212"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>          "0212"          "0211"          "0211"          "0212"          "0211"          "0212" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>          "0212"          "0212"          "0331"          "0231"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"          "0212"          "0231"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"          "0212"          "0211"          "0211"          "0212" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>          "0212"          "0232"         "01311"          "0212"          "0212"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>          "0212"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>          "0212"          "0211"          "0211"          "0211"         "01311"          "0212" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"          "0212"          "0212"          "0212"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"          "0212"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"          "0212"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"          "0212"          "0212" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"          "0212"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"          "0212"          "0211"          "0212"          "0212"          "0212" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"          "0212"          "0212" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"          "0212"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"          "0212"          "0211"          "0212"          "0212" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"          "0212"          "0212"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>          "0212"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>          "0212"           "031"           "031"           "031"          "0212"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"          "0212"          "0212"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"          "0212"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"          "0212"           "032"           "031"          "0212" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"          "0212" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"          "0212"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"          "0212"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"          "0212"           "031"           "032"          "0212"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>          "0212"           "032"          "0212"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>          "0212"           "031"           "031"          "0212"          "0212"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"          "0212"          "0212"           "032"           "031"          "0212" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"          "0212"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"          "0241"          "0221"          "0243"          "0242" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"          "0242"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"          "0242"          "0221"         "01312"          "0243" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"          "0242" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>          "0242"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"          "0242"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>          "0243"          "0222"          "0222"          "0243"          "0242"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>          "0242"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>          "0242"          "0221"          "0221"          "0221"          "0333"          "0242" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"          "0241"          "0243"          "0222"          "0333"          "0241" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>          "0242"          "0242"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>          "0241"         "01312"          "0241"          "0222"          "0242"          "0243" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"          "0242"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>          "0242"          "0241"          "0242"          "0242"         "01312"          "0242" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>          "0243"          "0242"         "01312"          "0222"          "0222"          "0242" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>          "0243"          "0242"         "01312"          "0242"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>          "0242"          "0241"          "0242"         "01312"          "0241"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>          "0242"          "0242"          "0222"          "0222"          "0242"          "0242" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>          "0243"          "0333"          "0333"          "0241"          "0221"          "0241" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"          "0241"          "0242" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"          "0243"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"          "0243"          "0242"          "0223"          "0243"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>          "0241"          "0243"          "0221"          "0221"          "0243"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"          "0241"          "0221"          "0242"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"          "0243" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"          "0241" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"          "0243"          "0243"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"          "0241"          "0243"          "0242"          "0241" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"          "0243" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"          "0241" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"          "0242"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"          "0241"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"          "0241"         "01312"          "0241"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>          "0241"          "0242"          "0243"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"          "0241"          "0243"          "0222"          "0241" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>          "0241"          "0243"          "0241"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"          "0242"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"          "0241"          "0222"          "0243"          "0222"          "0241" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"          "0241"          "0222"          "0243"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"          "0241"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"          "0242"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"          "0242"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>          "0243"          "0241"          "0242"          "0243"          "0223"          "0242" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>          "0242"          "0222"          "0223"          "0222"          "0241"          "0243" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>          "0241"          "0222"          "0223"          "0222"          "0243"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"          "0241"          "0243"          "0243" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>          "0243"          "0221"          "0221"          "0242"          "0243"          "0241" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"          "0243"          "0241"          "0241" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"          "0241"          "0223"          "0241" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"          "0243"          "0241"          "0221"          "0241"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 498))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"          "0121"         "01221"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"         "01223"          "0121"          "0121"          "0121"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"          "0121"          "0121"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"          "0121"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"          "0121"          "0113"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"          "0121"          "0113"          "0121"          "0121"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"          "0113"          "0113"          "0121"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"          "0113"          "0113"          "0113"          "0112"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"          "0113"          "0132"          "0121"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"          "0113"          "0121"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"          "0113"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>          "0212"           "031"           "032"          "0334"          "0121"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"          "0231"          "0121"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"          "0231"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"          "0212"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"          "0231"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"          "0231"          "0121"          "0113"          "0231"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"          "0121"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>          "0212"           "031"           "032"          "0212"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>          "0231"          "0232"          "0231"          "0232"          "0212"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"          "0231"          "0212"          "0121"          "0212"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"          "0121"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"          "0121"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"         "01223"          "0113"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"          "0121"          "0121"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"          "0231"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"          "0121"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"          "0121"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"          "0121"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"          "0121"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"          "0121"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"         "01221"         "01221"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"          "0121"         "01221"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"          "0113"          "0121"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"         "01221"         "01223"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"         "01221"         "01223"          "0113"          "0121"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"          "0111"         "01223"          "0121"          "0113"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"          "0231"         "01222"          "0231"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"          "0231"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"          "0231"          "0231"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>          "0231"          "0231"          "0133"          "0133"          "0231"          "0231" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>          "0231"          "0231"          "0133"          "0231"          "0231"          "0231" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>          "0231"          "0232"          "0232"          "0231"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>          "0231"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"          "0231"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"          "0231"          "0231"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>          "0231"          "0231"          "0231"          "0231"          "0212"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>          "0231"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"          "0231"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"          "0231"          "0232"          "0231" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"          "0231"          "0231"          "0231"          "0133"          "0231" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"          "0231" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"          "0231"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>          "0231"          "0231"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>          "0231"          "0231"          "0232"          "0232"          "0231"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>          "0231"          "0133"          "0231"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>          "0231"          "0232"          "0232"          "0133"          "0133"          "0231" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"          "0231"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"          "0231"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"          "0231" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>          "0231"          "0232"          "0231"          "0231"          "0231"          "0231" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>          "0231"          "0212"          "0231"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"          "0212"          "0231"          "0231"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>          "0231"          "0231"          "0212"          "0232"          "0112"          "0231" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>          "0212"          "0231"          "0212"          "0212"          "0212"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"          "0231"          "0231"          "0232"          "0133"          "0231" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"          "0231"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>          "0231"          "0231"          "0212"          "0212"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"          "0231"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"          "0231" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"          "0121"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>          "0231"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"          "0121"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"          "0132"          "0121"          "0112"          "0132"          "0212" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>          "0212"          "0211"          "0331"          "0212"          "0212"          "0212" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>          "0212"          "0332"           "031"           "031"          "0212"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>          "0212"          "0332"          "0211"          "0212"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>          "0212"          "0212"          "0211"          "0212"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"          "0212" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"          "0212"          "0212"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"          "0212" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"          "0212"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>          "0212"          "0212"          "0331"          "0331"         "01311"          "0212" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>          "0212"          "0212"          "0232"          "0212"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>          "0212"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"          "0212"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>          "0212"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>          "0212"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"          "0212"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>          "0212"          "0212"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"          "0212"          "0211"          "0212"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>          "0212"          "0212"          "0212"          "0212"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"          "0212"          "0211"          "0212"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>          "0212"          "0211"          "0211"          "0212"          "0211"          "0212" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>          "0212"          "0212"          "0331"          "0231"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"          "0212"          "0231"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"          "0212"          "0211"          "0211"          "0212" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>          "0212"          "0232"         "01311"          "0212"          "0212"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>          "0212"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>          "0212"          "0211"          "0211"          "0211"         "01311"          "0212" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"          "0212"          "0212"          "0212"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"          "0212"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"          "0212"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"          "0212"          "0212" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"          "0212"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"          "0212"          "0211"          "0212"          "0212"          "0212" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"          "0212"          "0212" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"          "0212"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"          "0212"          "0211"          "0212"          "0212" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"          "0212"          "0212"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>          "0212"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>          "0212"           "031"           "031"           "031"          "0212"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"          "0212"          "0212"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"          "0212"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"          "0212"           "032"           "031"          "0212" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"          "0212" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"          "0212"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"          "0212"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"          "0212"           "031"           "032"          "0212"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>          "0212"           "032"          "0212"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>          "0212"           "031"           "031"          "0212"          "0212"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"          "0212"          "0212"           "032"           "031"          "0212" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"          "0212"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"          "0241"          "0221"          "0243"          "0242" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"          "0242"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"          "0242"          "0221"         "01312"          "0243" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"          "0242" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>          "0242"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"          "0242"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>          "0243"          "0222"          "0222"          "0243"          "0242"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>          "0242"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>          "0242"          "0221"          "0221"          "0221"          "0333"          "0242" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"          "0241"          "0243"          "0222"          "0333"          "0241" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>          "0242"          "0242"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>          "0241"         "01312"          "0241"          "0222"          "0242"          "0243" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"          "0242"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>          "0242"          "0241"          "0242"          "0242"         "01312"          "0242" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>          "0243"          "0242"         "01312"          "0222"          "0222"          "0242" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>          "0243"          "0242"         "01312"          "0242"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>          "0242"          "0241"          "0242"         "01312"          "0241"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>          "0242"          "0242"          "0222"          "0222"          "0242"          "0242" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>          "0243"          "0333"          "0333"          "0241"          "0221"          "0241" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"          "0241"          "0242" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"          "0243"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"          "0243"          "0242"          "0223"          "0243"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>          "0241"          "0243"          "0221"          "0221"          "0243"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"          "0241"          "0221"          "0242"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"          "0243" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"          "0241" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"          "0243"          "0243"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"          "0241"          "0243"          "0242"          "0241" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"          "0243" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"          "0241" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"          "0242"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"          "0241"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"          "0241"         "01312"          "0241"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>          "0241"          "0242"          "0243"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"          "0241"          "0243"          "0222"          "0241" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>          "0241"          "0243"          "0241"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"          "0242"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"          "0241"          "0222"          "0243"          "0222"          "0241" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"          "0241"          "0222"          "0243"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"          "0241"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"          "0242"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"          "0242"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>          "0243"          "0241"          "0242"          "0243"          "0223"          "0242" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>          "0242"          "0222"          "0223"          "0222"          "0241"          "0243" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>          "0241"          "0222"          "0223"          "0222"          "0243"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"          "0241"          "0243"          "0243" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"          "0242"          "0241"          "0222"          "0241"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>          "0243"          "0221"          "0221"          "0242"          "0243"          "0241" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"          "0243"          "0241"          "0241" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"          "0241"          "0223"          "0241" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"          "0243"          "0241"          "0221"          "0241"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 552))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"          "0121"         "01221"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"         "01223"          "0121"          "0121"          "0121"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"          "0121"          "0121"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"          "0121"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"          "0121"          "0113"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"          "0121"          "0113"          "0121"          "0121"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"          "0113"          "0113"          "0121"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"          "0113"          "0113"          "0113"          "0112"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"          "0113"          "0132"          "0121"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"          "0113"          "0121"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"          "0113"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>          "0212"           "031"           "032"          "0334"          "0121"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"          "0231"          "0121"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"          "0231"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"          "0212"          "0211"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"          "0231"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"          "0231"          "0121"          "0113"          "0231"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"          "0121"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>          "0212"           "031"           "032"          "0212"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>          "0231"          "0232"          "0231"          "0232"          "0212"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"          "0231"          "0212"          "0121"          "0212"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"          "0121"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"          "0121"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"         "01223"          "0113"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"          "0121"          "0121"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"          "0231"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"          "0121"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"          "0121"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"          "0121"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"          "0121"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"          "0121"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"         "01221"         "01221"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"          "0121"         "01221"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"          "0113"          "0121"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"         "01221"         "01223"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"         "01221"         "01223"          "0113"          "0121"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"          "0111"         "01223"          "0121"          "0113"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"          "0231"         "01222"          "0231"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"          "0231"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"          "0231"          "0231"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>          "0231"          "0231"          "0133"          "0133"          "0231"          "0231" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>          "0231"          "0231"          "0133"          "0231"          "0231"          "0231" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>          "0231"          "0232"          "0232"          "0231"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>          "0231"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"          "0231"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"          "0231"          "0231"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>          "0231"          "0231"          "0231"          "0231"          "0212"          "0211" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>          "0231"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"          "0231"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"          "0231"          "0232"          "0231" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"          "0231"          "0231"          "0231"          "0133"          "0231" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"          "0231" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"          "0231"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>          "0231"          "0231"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>          "0231"          "0231"          "0232"          "0232"          "0231"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>          "0231"          "0133"          "0231"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>          "0231"          "0232"          "0232"          "0133"          "0133"          "0231" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"          "0231"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"          "0231"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"          "0231" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>          "0231"          "0232"          "0231"          "0231"          "0231"          "0231" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>          "0231"          "0212"          "0231"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"          "0212"          "0231"          "0231"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>          "0231"          "0231"          "0212"          "0232"          "0112"          "0231" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>          "0212"          "0231"          "0212"          "0212"          "0212"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"          "0231"          "0231"          "0232"          "0133"          "0231" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"          "0231"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>          "0231"          "0231"          "0212"          "0212"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"          "0231"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"          "0231" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"          "0121"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>          "0231"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"          "0121"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"          "0132"          "0121"          "0112"          "0132"          "0212" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>          "0212"          "0211"          "0331"          "0212"          "0212"          "0212" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"          "0211"          "0332"          "0211"          "0211" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>          "0212"          "0332"           "031"           "031"          "0212"          "0211" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>          "0212"          "0332"          "0211"          "0212"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>          "0212"          "0212"          "0211"          "0212"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"          "0211"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>          "0211"          "0211"           "031"          "0211"           "031"          "0212" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"          "0212"          "0212"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"          "0211"          "0211"          "0212" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>          "0211"           "031"          "0211"          "0212"          "0232"          "0211" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>          "0212"          "0212"          "0331"          "0331"         "01311"          "0212" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"          "0211"          "0331"          "0331"          "0211"          "0211" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>          "0212"          "0212"          "0232"          "0212"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>          "0212"          "0211"          "0211"          "0211"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>          "0211"          "0211"          "0211"          "0212"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>          "0212"           "032"          "0211"          "0211"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>          "0212"         "01311"          "0332"          "0232"          "0331"          "0211" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"          "0211"          "0211"          "0212"          "0211"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"          "0211"         "01311"          "0211"          "0211"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>          "0212"          "0212"          "0211"          "0211"          "0331"          "0211" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>          "0211"          "0232"          "0212"          "0211"          "0212"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>          "0212"          "0212"          "0212"          "0212"          "0331"          "0211" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"          "0212"          "0211"          "0212"          "0211"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>          "0212"          "0211"          "0211"          "0212"          "0211"          "0212" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>          "0212"          "0212"          "0331"          "0231"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>          "0211"          "0212"          "0231"          "0211"          "0211"          "0211" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"          "0211"          "0212"          "0211"          "0211"          "0212" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>          "0211"          "0211"          "0211"          "0211"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>          "0212"          "0232"         "01311"          "0212"          "0212"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>          "0212"          "0211"          "0332"          "0211"          "0211"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>          "0212"          "0211"          "0211"          "0211"         "01311"          "0212" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>          "0211"          "0212"          "0212"          "0212"          "0211"          "0211" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>          "0211"          "0211"          "0211"          "0212"          "0211"          "0211" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>          "0211"          "0212"          "0331"          "0211"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>          "0211"          "0211"          "0332"          "0332"          "0212"          "0212" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>          "0211"           "031"          "0212"          "0331"           "031"          "0211" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"          "0212"          "0211"          "0212"          "0212"          "0212" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>          "0211"         "01311"          "0332"         "01311"          "0212"          "0212" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>          "0211"          "0332"          "0211"         "01311"          "0211"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>          "0211"          "0211"          "0212"          "0211"          "0211"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>          "0211"          "0211"          "0212"          "0211"          "0212"          "0212" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>          "0211"          "0232"          "0212"          "0212"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>          "0211"          "0211"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>          "0212"          "0232"          "0211"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>          "0212"           "031"           "031"           "031"          "0212"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"          "0211" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"          "0212"          "0212"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"          "0212"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"          "0212"           "032"           "031"          "0212" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"          "0212" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"          "0212"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"          "0212"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"          "0212"           "031"           "032"          "0212"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>          "0212"           "032"          "0212"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>          "0212"           "031"           "031"          "0212"          "0212"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"          "0212"          "0212"           "032"           "031"          "0212" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"          "0212"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"         "01312"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"          "0333"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"           "024"           "024"          "0222"          "0333"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"         "01312"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"           "024"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"         "01312"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"         "01312"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"         "01312"           "024"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"         "01312"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"          "0333"          "0333"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"         "01312"           "024"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 911))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"          "0121"         "01221"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"         "01223"          "0121"          "0121"          "0121"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"          "0121"          "0121"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"          "0121"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"          "0121"          "0113"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"          "0121"          "0113"          "0121"          "0121"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"          "0113"          "0113"          "0121"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"          "0113"          "0113"          "0113"          "0112"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"          "0113"          "0132"          "0121"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"          "0113"          "0121"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"          "0113"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"          "0334"          "0121"         "01311" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"          "0231"          "0121"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"          "0231"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"         "01311"           "031"         "01311"          "0231"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"          "0231"          "0121"          "0113"          "0231"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"          "0121"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"         "01311"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>          "0231"          "0232"          "0231"          "0232"           "021"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"          "0231"           "021"          "0121"           "021"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"          "0121"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"          "0121"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"         "01223"          "0113"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"          "0121"          "0121"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"          "0231"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"         "01311"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"          "0121"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"          "0121"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>         "01311"          "0111"          "0121"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"          "0121"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"          "0121"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"         "01221"         "01221"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"          "0121"         "01221"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"          "0113"          "0121"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"         "01221"         "01223"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"         "01221"         "01223"          "0113"          "0121"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"          "0111"         "01223"          "0121"          "0113"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"          "0231"         "01222"          "0231"         "01311"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"          "0231"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>         "01311"          "0232"          "0231"          "0231"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>          "0231"          "0231"          "0133"          "0133"          "0231"          "0231" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>          "0231"          "0231"          "0133"          "0231"          "0231"          "0231" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>          "0231"          "0232"          "0232"          "0231"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>          "0231"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"          "0231"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"          "0231"          "0231"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>          "0231"          "0231"          "0231"          "0231"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>          "0231"          "0112"          "0232"          "0232"          "0133"         "01311" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"         "01312"          "0231"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"          "0231"          "0232"          "0231" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"          "0231"          "0231"          "0231"          "0133"          "0231" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"         "01311" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"         "01311"          "0231" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"          "0231"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>          "0231"          "0231"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>          "0231"          "0231"          "0232"          "0232"          "0231"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>          "0231"          "0133"          "0231"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>          "0231"          "0232"          "0232"          "0133"          "0133"          "0231" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"         "01311"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"         "01311"          "0112"          "0231"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"          "0231"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>         "01311"          "0232"          "0232"          "0232"          "0133"          "0231" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>          "0231"          "0232"          "0231"          "0231"          "0231"          "0231" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>          "0231"           "021"          "0231"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"           "021"          "0231"          "0231"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>          "0231"          "0231"           "021"          "0232"          "0112"          "0231" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"          "0231"           "021"           "021"           "021"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"          "0231"          "0231"          "0232"          "0133"          "0231" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"         "01311"          "0232"          "0231"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>          "0231"          "0231"           "021"           "021"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"          "0231"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"          "0231" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"         "01311"         "01311"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"         "01311"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"         "01311"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>         "01311"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"         "01311"          "0111"          "0111"         "01311"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"          "0121"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>          "0231"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"         "01311"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"          "0121"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"          "0132"          "0121"          "0112"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"          "0331"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"           "021"          "0332"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"          "0332"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"          "0332"           "021"           "021"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"         "01312"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"           "021"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"           "021"           "021"          "0332"         "01311" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"         "01311"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"          "0232"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"          "0331"          "0331"         "01311"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"           "021"          "0331"          "0331"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"          "0232"           "021"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"         "01311"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"         "01311"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"         "01311"          "0332"          "0232"          "0331"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>         "01311"          "0332"           "032"         "01311"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"           "021"         "01311"           "021"           "021"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"          "0232"           "021"           "021"           "021"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"          "0331"          "0231"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"          "0231"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"          "0232"         "01311"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"          "0332"           "021"           "021"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"         "01311"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"          "0331"           "021"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"          "0332"          "0332"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"          "0331"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"         "01311"          "0332"         "01311"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"          "0332"           "021"         "01311"           "021"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"          "0232"           "021"           "021"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"          "0332"          "0232"         "01311"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"          "0232"           "021"          "0232"           "032"         "01311" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"         "01311" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"         "01311"         "01311"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>         "01311"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"         "01311"          "0331"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"         "01311"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"         "01311"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"         "01311"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"         "01311"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>         "01311"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"         "01311"           "031"         "01311"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"         "01311"         "01311"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"         "01311"           "031"           "031"         "01311" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"         "01311"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"         "01311"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"         "01311"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"         "01312"          "0333"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"         "01312"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"         "01312"         "01312"          "0222"          "0333"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"          "0333"         "01312"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"          "0333"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>         "01312"           "024"           "024"          "0222"          "0333"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"         "01312"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>         "01312"          "0111"           "024"          "0222"         "01312"         "01312" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"         "01312"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"         "01312"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"         "01312"           "024"         "01312"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"         "01312"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"          "0333"          "0333"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"         "01312"          "0333"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"         "01312" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"         "01312" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>         "01312"          "0223"          "0223"         "01312"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"         "01312"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"         "01312" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"         "01312"           "024"         "01312" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"         "01312"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"         "01312" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"         "01312" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>         "01312"         "01312"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"         "01312"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 940))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"          "0121"         "01221"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"         "01223"          "0121"          "0121"          "0121"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"          "0121"          "0121"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"          "0121"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"          "0121"          "0113"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"          "0121"          "0113"          "0121"          "0121"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"          "0113"          "0113"          "0121"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"          "0113"          "0113"          "0113"          "0112"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"          "0113"          "0132"          "0121"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"          "0113"          "0121"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"          "0113"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"          "0334"          "0121"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"          "0231"          "0121"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"          "0232"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"          "0231"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>          "0232"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"          "0231"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>          "0232"          "0231"          "0121"          "0113"          "0231"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"          "0121"          "0232"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>          "0232"          "0131"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>          "0231"          "0232"          "0231"          "0232"           "021"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"          "0231"           "021"          "0121"           "021"          "0232" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"          "0121"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"          "0121"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"         "01223"          "0113"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"          "0121"          "0121"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"          "0231"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"          "0131"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"          "0121"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>          "0232"          "0133"          "0111"          "0113"          "0112"          "0232" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"          "0121"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"          "0111"          "0121"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"          "0121"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"          "0121"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"         "01221"         "01221"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"          "0121"         "01221"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"          "0113"          "0121"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"         "01221"         "01223"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"         "01221"         "01223"          "0113"          "0121"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"          "0111"         "01223"          "0121"          "0113"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"          "0231"         "01222"          "0231"          "0131"          "0232" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>          "0232"          "0112"          "0133"          "0232"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>          "0232"          "0231"          "0232"          "0133"          "0231"          "0231" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"          "0232"          "0231"          "0231"          "0232"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>          "0231"          "0231"          "0133"          "0133"          "0231"          "0231" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>          "0231"          "0231"          "0133"          "0231"          "0231"          "0231" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>          "0231"          "0232"          "0232"          "0231"          "0232"          "0232" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"          "0232"          "0133"          "0232"          "0232"          "0232" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>          "0231"          "0232"          "0133"          "0133"          "0232"          "0232" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>          "0232"          "0334"          "0231"          "0133"          "0232"          "0232" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>          "0232"          "0232"          "0232"          "0231"          "0231"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>          "0231"          "0231"          "0231"          "0231"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>          "0231"          "0112"          "0232"          "0232"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"          "0231"          "0133"          "0232"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"          "0232"          "0231"          "0232"          "0231" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"          "0231"          "0231"          "0231"          "0133"          "0231" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>          "0232"          "0133"          "0133"          "0112"          "0232"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"          "0232"          "0133"           "032"          "0131"          "0231" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"          "0232"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>          "0232"          "0231"          "0232"          "0232"          "0232"          "0232" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>          "0231"          "0231"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>          "0232"          "0232"          "0133"          "0334"          "0232"          "0232" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>          "0231"          "0231"          "0232"          "0232"          "0231"          "0232" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>          "0231"          "0133"          "0231"          "0133"          "0133"          "0232" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>          "0231"          "0232"          "0232"          "0133"          "0133"          "0231" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>          "0232"          "0232"          "0111"          "0133"          "0232"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>          "0232"          "0232"          "0133"          "0112"          "0131"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"          "0131"          "0112"          "0231"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"          "0232"          "0232"          "0231"          "0133"          "0232" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"          "0232"          "0232"          "0232"          "0133"          "0231" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>          "0232"          "0133"          "0334"          "0334"          "0232"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>          "0231"          "0232"          "0231"          "0231"          "0231"          "0231" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>          "0231"           "021"          "0231"          "0111"          "0232"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>          "0232"          "0111"           "021"          "0231"          "0231"          "0232" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>          "0231"          "0231"           "021"          "0232"          "0112"          "0231" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"          "0231"           "021"           "021"           "021"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0231" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>          "0232"          "0231"          "0231"          "0232"          "0133"          "0231" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>          "0231"          "0232"          "0231"          "0232"          "0231"          "0232" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>          "0232"          "0131"          "0232"          "0231"          "0232"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>          "0231"          "0231"           "021"           "021"          "0232"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"          "0231"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"          "0231" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"          "0131"          "0131"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"          "0131"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"          "0131"          "0111"          "0111"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"          "0121"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>          "0231"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>          "0232"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"          "0131"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"          "0121"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>          "0232"          "0132"          "0121"          "0112"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"          "0331"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"           "021"          "0332"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"          "0332"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"          "0332"           "021"           "021"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"           "021"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"           "021"           "021"          "0332"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"          "0232"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"          "0331"          "0331"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>          "0232"           "021"          "0331"          "0331"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"          "0232"           "021"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"          "0131"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"          "0332"          "0232"          "0331"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"          "0332"           "032"          "0131"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"          "0232" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>          "0232"           "021"          "0131"           "021"           "021"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"          "0232"           "021"           "021"           "021"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"          "0331"          "0231"          "0232"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"          "0231"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"          "0331"          "0232" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"          "0232"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"          "0332"           "021"           "021"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"          "0331"           "021"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"          "0332"          "0332"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"          "0331"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"          "0332"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"          "0332"           "021"          "0131"           "021"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"          "0232"           "021"           "021"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"          "0332"          "0232"          "0131"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"          "0232"           "021"          "0232"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"          "0331"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"          "0131"          "0333"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"          "0131"          "0131"          "0222"          "0333"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"          "0333"          "0131"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"          "0333"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"          "0222"          "0333"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"          "0111"           "024"          "0222"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"          "0333"          "0333"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"          "0131"          "0333"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"          "0131"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"          "0131"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 990))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"          "0113"          "0113" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>          "0111"         "01221"          "0121"         "01221"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"         "01223"          "0121"          "0121"          "0121"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"          "0121"          "0121"         "01223"          "0113"          "0113" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"          "0113"          "0113"          "0113" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>          "0113"          "0113"          "0121"         "01221"          "0113"          "0113" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>          "0113"          "0113"          "0111"          "0121"          "0113"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>          "0113"          "0121"          "0113"          "0121"          "0121"          "0113" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"          "0113"          "0113"          "0121"          "0113" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"          "0113"          "0113"          "0113"          "0112"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>          "0113"          "0113"          "0113"          "0113"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"          "0113"          "0132"          "0121"          "0113"          "0113" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>          "0111"          "0113"          "0121"          "0113"          "0113"          "0111" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"          "0113"          "0121"          "0132"          "0113"          "0113" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"          "0113"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"          "0334"          "0121"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"           "023"          "0121"          "0334"          "0332"          "0111" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"           "023"           "031"          "0111"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"          "0111"           "031"           "023"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"          "0121"          "0113"           "023"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"          "0113"          "0121"           "023"          "0113"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"           "023"           "021"          "0121"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"          "0111"          "0111" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>          "0112"          "0133"          "0113"          "0133"          "0121"          "0113" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>          "0111"          "0133"          "0112"          "0111"          "0121"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"         "01223"          "0113"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"          "0121"          "0121"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>          "0113"          "0133"         "01222"          "0111"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>          "0111"          "0111"         "01222"          "0111"         "01223"          "0113" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"          "0111"          "0112"           "023"          "0111"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>          "0113"          "0131"          "0133"          "0132"          "0111"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"          "0112"          "0133"          "0133"          "0133"          "0112" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"          "0112"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>          "0113"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"          "0121"          "0111"          "0111"          "0111"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"          "0111"          "0113"          "0112"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>          "0111"          "0121"          "0111"          "0112"          "0112"          "0113" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"          "0111"          "0121"          "0111"          "0133"          "0112" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>          "0113"          "0113"          "0113"         "01221"          "0113"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>          "0112"          "0111"          "0112"          "0113"          "0121"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>          "0113"          "0113"          "0111"          "0113"          "0121"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"         "01221"         "01221"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"          "0113"          "0121"         "01221"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"          "0113"          "0121"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"         "01221"         "01223"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"         "01221"         "01223"          "0113"          "0121"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"          "0111"         "01223"          "0121"          "0113"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>          "0111"           "023"         "01222"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"          "0112"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"          "0334"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"          "0112" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"          "0112"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"          "0111" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>          "0111"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"          "0112"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"           "032"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"          "0112"          "0111"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"          "0334"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"          "0111"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"          "0112"          "0131"          "0112" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"          "0131"          "0112"           "023"          "0133"          "0112" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"          "0334"          "0334"           "023"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"          "0111"           "023"          "0111" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"          "0111"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"          "0112"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"          "0112" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"           "023"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"          "0111"          "0111"          "0334"         "01223"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"          "0131"          "0131"          "0111"          "0111" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>          "0111"          "0334"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"          "0111"          "0131"          "0111" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"          "0112"          "0112"          "0111" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>          "0112"          "0111"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"          "0111"          "0132"          "0132"          "0133"          "0112" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"          "0111"          "0111"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>          "0111"          "0112"          "0111"          "0112"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>          "0111"          "0111"          "0132"          "0112"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"          "0112"          "0112"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>          "0111"          "0131"          "0111"          "0111"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"          "0112"          "0112"          "0112"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"          "0111"          "0111"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"          "0112"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>          "0112"          "0112"          "0112"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"          "0112"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"          "0112"          "0133"         "01222"          "0112"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"          "0112"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>          "0111"          "0132"         "01222"          "0111"          "0132"          "0111" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"          "0111"          "0112"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>          "0111"          "0133"          "0112"          "0111"          "0112"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"          "0112"          "0121"          "0132"          "0132"          "0111" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"          "0112"          "0111"          "0133"          "0111"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>          "0112"          "0111"          "0132"          "0132"          "0112"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>          "0111"         "01222"          "0132"          "0112"          "0112"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>          "0112"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"          "0111"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"          "0112"          "0132"          "0113"          "0132"          "0113" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"          "0112"          "0111"          "0112" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>          "0111"          "0132"          "0112"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"          "0111"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>          "0112"          "0111"          "0132"          "0132"          "0132"          "0112" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"          "0112" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"          "0112"          "0132"          "0112"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"          "0112"          "0131"          "0132"          "0112"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>          "0113"          "0132"          "0111"          "0132"          "0132"          "0112" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"          "0113"          "0111"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>          "0112"          "0112"          "0112"          "0112"          "0132"          "0112" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>          "0112"          "0112"          "0112"          "0111"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>          "0112"          "0132"          "0132"          "0132"          "0121"          "0112" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"          "0121"          "0112"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"          "0331"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"           "021"          "0332"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"          "0332"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"          "0332"           "021"           "021"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"           "021"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"           "021"           "021"          "0332"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"          "0331"          "0331"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"          "0331"          "0331"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"          "0131"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"          "0332"           "023"          "0331"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"          "0332"           "032"          "0131"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"          "0331"           "023"           "023"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"          "0331"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"          "0332"           "021"           "021"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"          "0331"           "021"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"          "0332"          "0332"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"          "0331"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"          "0332"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"          "0332"           "021"          "0131"           "021"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"          "0332"           "023"          "0131"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"          "0331"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"          "0131"          "0333"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"          "0131"          "0131"          "0222"          "0333"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"          "0333"          "0131"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"          "0333"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"          "0222"          "0333"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"          "0111"           "024"          "0222"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"          "0333"          "0333"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"          "0131"          "0333"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"          "0131"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"          "0131"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1014))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>         "01221"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"         "01221"         "01223"         "01221"         "01223"         "01221" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>         "01221"         "01221"         "01221"         "01221"         "01221"         "01223" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"         "01221"          "0121"         "01221"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"         "01223"          "0121"          "0121"          "0121"         "01221" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>         "01223"          "0121"          "0121"         "01223"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"          "0121"         "01221"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"          "0121"           "011"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"          "0121"           "011"          "0121"          "0121"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"           "011"           "011"          "0121"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"           "011"           "011"           "011"           "011"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"          "0121"           "011"           "011"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"           "011"          "0132"          "0121"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"          "0121"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"           "011"          "0121"          "0132"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"           "011"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"          "0334"          "0121"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"           "023"          "0121"          "0334"          "0332"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"           "023"           "031"           "011"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"           "011"           "031"           "023"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"          "0121"           "011"           "023"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"           "011"          "0121"           "023"           "011"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"           "023"           "021"          "0121"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"          "0133"           "011"          "0133"          "0121"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"          "0133"           "011"           "011"          "0121"         "01223" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"         "01223"           "011"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>         "01222"         "01223"          "0121"          "0121"         "01223"         "01221" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"          "0133"         "01222"           "011"         "01222"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"         "01222"           "011"         "01223"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"           "011"           "011"           "023"           "011"         "01222" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"          "0131"          "0133"          "0132"           "011"         "01222" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"           "011"          "0133"          "0133"          "0133"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"           "011"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"          "0133"         "01223"         "01222"          "0334"         "01223" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>         "01223"          "0121"           "011"           "011"           "011"         "01221" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"          "0121"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"           "011"          "0121"           "011"          "0133"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"         "01221"           "011"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"          "0121"         "01221" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"          "0121"         "01221" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"         "01221"         "01221"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>         "01221"         "01221"           "011"          "0121"         "01221"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"           "011"          "0121"         "01221"         "01223" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"         "01221"         "01223"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>         "01221"         "01221"         "01221"         "01221"         "01221"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"         "01221"         "01223"           "011"          "0121"         "01221" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"           "011"         "01223"          "0121"           "011"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"         "01222"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"          "0334"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"           "011"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"           "032"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"           "011"           "011"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"          "0334"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"           "011"          "0131"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>         "01223"          "0131"           "011"           "023"          "0133"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"          "0334"          "0334"           "023"         "01222" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"         "01222" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"           "023"         "01222"         "01222"         "01222"         "01222" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"           "011"           "011"          "0334"         "01223"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>         "01223"          "0133"          "0131"          "0131"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"          "0334"          "0132"          "0132"           "011"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"         "01223"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"           "011"          "0131"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"           "011"          "0132"          "0132"          "0133"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"           "011"           "011"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"         "01222"         "01222" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"          "0132"           "011"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"           "011"           "011"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"          "0131"           "011"           "011"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"           "011"           "011"           "011"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"           "011"           "011"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"           "011"          "0132"         "01222" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"         "01222"           "011"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"           "011"          "0133"         "01222"           "011"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>         "01223"         "01222"          "0132"          "0132"           "011"         "01223" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"         "01222"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"          "0132"         "01222"           "011"          "0132"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"           "011"           "011"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"          "0133"           "011"           "011"           "011"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"           "011"          "0121"          "0132"          "0132"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"           "011"           "011"          "0133"           "011"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"          "0132"          "0132"           "011"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"         "01222"          "0132"           "011"           "011"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"           "011"          "0132"           "011"          "0132"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>         "01222"           "011"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"          "0132"          "0132"          "0132"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"          "0132"           "011"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>         "01223"           "011"          "0131"          "0132"           "011"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"          "0132"           "011"          "0132"          "0132"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"           "011"           "011"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"          "0132"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"          "0132"          "0132"          "0132"          "0121"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"          "0121"           "011"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"          "0331"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"           "021"          "0332"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"          "0332"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"          "0332"           "021"           "021"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"           "021"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"           "021"           "021"          "0332"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"          "0331"          "0331"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"          "0331"          "0331"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"          "0131"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"          "0332"           "023"          "0331"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"          "0332"           "032"          "0131"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"          "0331"           "023"           "023"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"          "0331"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"          "0332"           "021"           "021"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"          "0331"           "021"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"          "0332"          "0332"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"          "0331"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"          "0332"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"          "0332"           "021"          "0131"           "021"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"          "0332"           "023"          "0131"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"          "0331"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"          "0131"          "0333"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"          "0131"          "0131"          "0222"          "0333"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"          "0333"          "0131"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"          "0333"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"          "0222"          "0333"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"           "011"           "024"          "0222"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"          "0333"          "0333"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"          "0131"          "0333"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"          "0131"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"          "0131"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1396))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>          "0122"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"          "0122"          "0122"          "0122"          "0122"          "0122" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>          "0122"          "0122"          "0122"          "0122"          "0122"          "0122" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"          "0122"          "0121"          "0122"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"          "0122"          "0121"          "0121"          "0121"          "0122" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>          "0122"          "0121"          "0121"          "0122"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"          "0121"          "0122"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"          "0121"           "011"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"          "0121"           "011"          "0121"          "0121"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"           "011"           "011"          "0121"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"           "011"           "011"           "011"           "011"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"          "0121"           "011"           "011"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"           "011"          "0132"          "0121"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"          "0121"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"           "011"          "0121"          "0132"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"           "011"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"          "0332"           "031"          "0332"           "031"          "0332" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"          "0332"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"          "0334"          "0121"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"           "023"          "0121"          "0334"          "0332"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"           "023"           "031"           "011"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"           "011"           "031"           "023"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"          "0121"           "011"           "023"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"           "011"          "0121"           "023"           "011"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"           "023"           "021"          "0121"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"          "0133"           "011"          "0133"          "0121"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"          "0133"           "011"           "011"          "0121"          "0122" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"          "0122"           "011"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>          "0122"          "0122"          "0121"          "0121"          "0122"          "0122" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"          "0133"          "0122"           "011"          "0122"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"          "0122"           "011"          "0122"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"           "011"           "011"           "023"           "011"          "0122" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"          "0131"          "0133"          "0132"           "011"          "0122" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"           "011"          "0133"          "0133"          "0133"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"           "011"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"          "0133"          "0122"          "0122"          "0334"          "0122" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>          "0122"          "0121"           "011"           "011"           "011"          "0122" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"          "0121"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"           "011"          "0121"           "011"          "0133"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"          "0122"           "011"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"          "0121"          "0122" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"          "0121"          "0122" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"          "0122"          "0122"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>          "0122"          "0122"           "011"          "0121"          "0122"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"           "011"          "0121"          "0122"          "0122" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"          "0122"          "0122"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>          "0122"          "0122"          "0122"          "0122"          "0122"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"          "0122"          "0122"           "011"          "0121"          "0122" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"           "011"          "0122"          "0121"           "011"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"          "0122"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"          "0334" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"          "0334"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"           "011"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"           "032"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"           "011"           "011"          "0334" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"          "0334"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"           "011"          "0131"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>          "0122"          "0131"           "011"           "023"          "0133"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"          "0334"          "0334"           "023"          "0122" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"          "0122" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"          "0334" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"           "023"          "0122"          "0122"          "0122"          "0122" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"           "011"           "011"          "0334"          "0122"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>          "0122"          "0133"          "0131"          "0131"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"          "0334"          "0132"          "0132"           "011"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"          "0122"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"           "011"          "0131"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"           "011"          "0132"          "0132"          "0133"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"          "0334"           "011"           "011"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"          "0122"          "0122" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"          "0132"           "011"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"           "011"           "011"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"          "0131"           "011"           "011"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"           "011"           "011"           "011"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"           "011"           "011"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"           "011"          "0132"          "0122" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"          "0122"           "011"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"           "011"          "0133"          "0122"           "011"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>          "0122"          "0122"          "0132"          "0132"           "011"          "0122" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"          "0122"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"          "0132"          "0122"           "011"          "0132"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"           "011"           "011"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"          "0133"           "011"           "011"           "011"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"           "011"          "0121"          "0132"          "0132"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"           "011"           "011"          "0133"           "011"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"          "0132"          "0132"           "011"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"          "0122"          "0132"           "011"           "011"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"           "011"          "0132"           "011"          "0132"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>          "0122"           "011"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"          "0132"          "0132"          "0132"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"          "0132"           "011"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>          "0122"           "011"          "0131"          "0132"           "011"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"          "0132"           "011"          "0132"          "0132"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"           "011"           "011"          "0334"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"          "0132"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"          "0132"          "0132"          "0132"          "0121"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"          "0121"           "011"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"          "0331"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>          "0332"          "0331"           "021"          "0332"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"          "0332"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"          "0332"           "021"           "021"          "0332"          "0332" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>          "0331"          "0331"          "0332"           "021"          "0332"          "0331" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>          "0331"          "0332"           "021"           "021"          "0332"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>          "0332"          "0332"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"          "0331"          "0331"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"          "0331"          "0331"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"          "0332"          "0331" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"          "0331"          "0331" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"          "0331" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"          "0331" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"          "0332"          "0331"          "0331"          "0131"          "0331" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"          "0332"           "023"          "0331"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"          "0332"           "032"          "0131"          "0331"          "0331" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"          "0331" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"          "0331" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"          "0331"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>          "0331"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"          "0331"           "023"           "023"          "0331" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"          "0331"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"          "0332"           "021"           "021"          "0331" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"          "0331"           "021"          "0332"          "0331" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"          "0332"          "0332"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"          "0331"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>          "0331"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"          "0332"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"          "0332"           "021"          "0131"           "021"          "0332" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"          "0331" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"          "0332"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"          "0332"           "023"          "0131"          "0332" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"          "0331"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"          "0331"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"          "0331"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"          "0331"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>          "0333"          "0223"          "0131"          "0333"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"          "0131"          "0131"          "0222"          "0333"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"          "0333"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"          "0333"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"          "0333"          "0131"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"          "0333"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"          "0222"          "0333"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"          "0333" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"           "011"           "024"          "0222"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"          "0333"          "0333"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"          "0131"          "0333"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"          "0131"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"          "0131"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"          "0333"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1448))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>          "0122"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>          "0121"          "0121"          "0121"          "0121"          "0121"          "0121" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>          "0121"          "0121"          "0121"          "0121"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>          "0121"          "0122"          "0122"          "0122"          "0122"          "0122" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>          "0122"          "0122"          "0122"          "0122"          "0122"          "0122" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"          "0122"          "0121"          "0122"          "0121"          "0121" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>          "0121"          "0122"          "0121"          "0121"          "0121"          "0122" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>          "0122"          "0121"          "0121"          "0122"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>          "0121"          "0121"          "0121"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"          "0121"          "0122"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"          "0121"           "011"          "0121" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"          "0121"           "011"          "0121"          "0121"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>          "0121"          "0121"           "011"           "011"          "0121"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>          "0121"           "011"           "011"           "011"           "011"          "0121" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"          "0121"          "0121" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"          "0121"           "011"           "011"          "0121" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>          "0121"           "011"          "0132"          "0121"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"          "0121"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>          "0121"           "011"          "0121"          "0132"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>          "0121"          "0121"           "011"          "0121"          "0121"          "0121" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>          "0121"           "033"           "031"           "033"           "031"           "033" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"           "033"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"           "033"          "0121"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"           "023"          "0121"           "033"           "033"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"           "023"           "031"           "011"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"           "011"           "031"           "023"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"          "0121"           "011"           "023"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"           "011"          "0121"           "023"           "011"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"          "0121"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"          "0121"          "0121" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"          "0121" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>          "0121"           "023"           "021"          "0121"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>          "0121"          "0121"          "0121"          "0121"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"          "0133"           "011"          "0133"          "0121"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"          "0133"           "011"           "011"          "0121"          "0122" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>          "0121"          "0122"           "011"          "0121"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>          "0122"          "0122"          "0121"          "0121"          "0122"          "0122" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"          "0133"          "0122"           "011"          "0122"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"          "0122"           "011"          "0122"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"           "011"           "011"           "023"           "011"          "0122" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"          "0131"          "0133"          "0132"           "011"          "0122" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"           "011"          "0133"          "0133"          "0133"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"           "011"          "0133"          "0121"          "0121"          "0121" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"          "0133"          "0122"          "0122"           "033"          "0122" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>          "0122"          "0121"           "011"           "011"           "011"          "0122" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"          "0121"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"           "011"          "0121"           "011"          "0133"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"          "0122"           "011"          "0121" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"          "0121"          "0122" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"          "0121"          "0122" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>          "0121"          "0121"          "0121"          "0122"          "0122"          "0121" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>          "0122"          "0122"           "011"          "0121"          "0122"          "0121" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>          "0121"          "0121"           "011"          "0121"          "0122"          "0122" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>          "0121"          "0121"          "0121"          "0122"          "0122"          "0121" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>          "0122"          "0122"          "0122"          "0122"          "0122"          "0121" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>          "0121"          "0122"          "0122"           "011"          "0121"          "0122" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>          "0121"           "011"          "0122"          "0121"           "011"          "0121" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"          "0122"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"           "033" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"           "033"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"           "011"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"           "032"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"           "011"           "011"           "033" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"           "033"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"           "011"          "0131"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>          "0122"          "0131"           "011"           "023"          "0133"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"           "033"           "033"           "023"          "0122" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"          "0122" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"           "033" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>          "0121"           "023"          "0122"          "0122"          "0122"          "0122" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"           "011"           "011"           "033"          "0122"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>          "0122"          "0133"          "0131"          "0131"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"           "033"          "0132"          "0132"           "011"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"          "0122"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"           "011"          "0131"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"           "011"          "0132"          "0132"          "0133"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"           "033"           "011"           "011"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"          "0122"          "0122" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"          "0132"           "011"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"           "011"           "011"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"          "0131"           "011"           "011"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"           "011"           "011"           "011"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"           "011"           "011"          "0132"          "0132"          "0121" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"           "011"          "0132"          "0122" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"          "0133"          "0133"          "0121" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"          "0122"           "011"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"           "011"          "0133"          "0122"           "011"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>          "0122"          "0122"          "0132"          "0132"           "011"          "0122" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"          "0122"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"          "0132"          "0122"           "011"          "0132"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"           "011"           "011"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"          "0133"           "011"           "011"           "011"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"           "011"          "0121"          "0132"          "0132"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"           "011"           "011"          "0133"           "011"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"          "0132"          "0132"           "011"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"          "0122"          "0132"           "011"           "011"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"           "011"          "0132"           "011"          "0132"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>          "0122"           "011"          "0132"          "0121"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"          "0132"          "0132"          "0132"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"          "0132"           "011"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>          "0122"           "011"          "0131"          "0132"           "011"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"          "0132"           "011"          "0132"          "0132"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"           "011"           "011"           "033"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"          "0132"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"          "0132"          "0132"          "0132"          "0121"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"          "0121"           "011"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"           "033"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>           "033"           "033"           "021"           "033"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"           "033"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"           "033"           "021"           "021"           "033"           "033" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>           "033"           "033"           "033"           "021"           "033"           "033" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>           "033"           "033"           "021"           "021"           "033"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>           "033"           "033"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"           "033"           "033"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"           "033"           "033"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"           "033"           "033" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"           "033"           "033" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"           "033" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"           "033" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"           "033"           "033"           "033"          "0131"           "033" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"           "033"           "023"           "033"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"           "033"           "032"          "0131"           "033"           "033" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"           "033" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"           "033"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"           "033" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"           "033"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>           "033"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"           "033"           "023"           "023"           "033" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>           "033"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"           "033"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"           "033"           "021"           "021"           "033" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"           "033"           "021"           "033"           "033" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"           "033"           "033"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"           "033"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>           "033"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"           "033"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"           "033"           "021"          "0131"           "021"           "033" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"           "033" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"           "033"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"           "033"           "023"          "0131"           "033" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"           "033"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"           "033"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"           "033"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"           "033"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>           "033"          "0223"          "0131"           "033"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"          "0131"          "0131"          "0222"           "033"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"           "033"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"           "033"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"           "033"          "0131"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"           "033"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"          "0222"           "033"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"           "033" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"           "011"           "024"          "0222"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"           "033"           "033"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"          "0131"           "033"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"          "0131"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"          "0131"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"           "033"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1545))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>           "012"           "012"           "012"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"           "012"           "012"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"           "012"           "011"           "012"           "012"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>           "012"           "012"           "011"           "011"           "012"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>           "012"           "011"           "011"           "011"           "011"           "012" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"           "012"           "011"           "011"           "012" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>           "012"           "011"          "0132"           "012"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"           "012"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>           "012"           "011"           "012"          "0132"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>           "012"           "033"           "031"           "033"           "031"           "033" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"           "033"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"           "033"           "012"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"           "023"           "012"           "033"           "033"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"           "023"           "031"           "011"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"           "011"           "031"           "023"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"           "012"           "011"           "023"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"           "011"           "012"           "023"           "011"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"           "012"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"           "012"           "012" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"           "012" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>           "012"           "023"           "021"           "012"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"          "0133"           "011"          "0133"           "012"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"          "0133"           "011"           "011"           "012"           "012" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>           "012"           "012"           "011"           "012"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"          "0133"           "012"           "011"           "012"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"           "012"           "011"           "012"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"           "011"           "011"           "023"           "011"           "012" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"          "0131"          "0133"          "0132"           "011"           "012" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"           "011"          "0133"          "0133"          "0133"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"           "011"          "0133"           "012"           "012"           "012" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"          "0133"           "012"           "012"           "033"           "012" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>           "012"           "012"           "011"           "011"           "011"           "012" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"           "012"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"           "011"           "012"           "011"          "0133"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>           "012"           "012"           "012"           "011"           "012"           "012" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>           "012"           "011"           "012"           "012"           "011"           "012" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"           "012"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"           "033" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"           "033"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"           "011"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"           "032"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"           "011"           "011"           "033" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"           "033"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"           "011"          "0131"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>           "012"          "0131"           "011"           "023"          "0133"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"           "033"           "033"           "023"           "012" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"           "012" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"           "033" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>           "012"           "023"           "012"           "012"           "012"           "012" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"           "011"           "011"           "033"           "012"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>           "012"          "0133"          "0131"          "0131"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"           "033"          "0132"          "0132"           "011"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"           "012"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"           "011"          "0131"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"           "011"          "0132"          "0132"          "0133"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"           "033"           "011"           "011"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"          "0132"           "011"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"           "011"           "011"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"          "0131"           "011"           "011"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"           "011"           "011"           "011"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"           "011"           "011"          "0132"          "0132"           "012" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"           "011"          "0132"           "012" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"          "0133"          "0133"           "012" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"           "012"           "011"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"           "011"          "0133"           "012"           "011"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>           "012"           "012"          "0132"          "0132"           "011"           "012" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"           "012"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"          "0132"           "012"           "011"          "0132"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"           "011"           "011"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"          "0133"           "011"           "011"           "011"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"           "011"           "012"          "0132"          "0132"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"           "011"           "011"          "0133"           "011"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"          "0132"          "0132"           "011"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"           "012"          "0132"           "011"           "011"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"           "011"          "0132"           "011"          "0132"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>           "012"           "011"          "0132"           "012"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"          "0132"          "0132"          "0132"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"          "0132"           "011"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>           "012"           "011"          "0131"          "0132"           "011"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"          "0132"           "011"          "0132"          "0132"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"           "011"           "011"           "033"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"          "0132"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"          "0132"          "0132"          "0132"           "012"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"           "012"           "011"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"           "033"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>           "033"           "033"           "021"           "033"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"           "033"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"           "033"           "021"           "021"           "033"           "033" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>           "033"           "033"           "033"           "021"           "033"           "033" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>           "033"           "033"           "021"           "021"           "033"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>           "033"           "033"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"           "033"           "033"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"           "033"           "033"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"           "033"           "033" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"           "033"           "033" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"           "033" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"           "033" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"           "033"           "033"           "033"          "0131"           "033" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"           "033"           "023"           "033"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"           "033"           "032"          "0131"           "033"           "033" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"           "033" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"           "033"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"           "033" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"           "033"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>           "033"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"           "033"           "023"           "023"           "033" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>           "033"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"           "033"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"           "033"           "021"           "021"           "033" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"           "033"           "021"           "033"           "033" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"           "033"           "033"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"           "033"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>           "033"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"           "033"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"           "033"           "021"          "0131"           "021"           "033" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"           "033" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"           "033"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"           "033"           "023"          "0131"           "033" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"           "033"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"           "033"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"           "033"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"           "033"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"          "0221"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>           "033"          "0223"          "0131"           "033"           "024"          "0222" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>          "0223"          "0223"           "024"          "0221"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>          "0222"          "0131"          "0131"          "0222"           "033"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"           "033"          "0223"          "0221"          "0221"          "0222" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>          "0222"           "033"          "0221"           "024"          "0222"          "0222" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"          "0222"          "0222"           "024"           "024"          "0221" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"           "033"          "0131"          "0221"          "0222"          "0222" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"          "0221"          "0221"          "0221"           "033"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"          "0222"           "033"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"          "0221"          "0222"          "0222"           "033" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"          "0222"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"           "011"           "024"          "0222"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>          "0222"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"          "0222"          "0222"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"          "0222" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"          "0221" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"          "0222"          "0222"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"           "033"           "033"           "024"          "0221"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>          "0222"          "0131"           "033"          "0222"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>          "0222"          "0221"           "024"          "0223"          "0223"          "0223" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>          "0221"           "024"           "024"          "0223"           "024"          "0221" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"          "0221"          "0221"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>          "0222"          "0223"           "024"          "0221"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>          "0222"          "0223"          "0223"          "0131"          "0223"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>          "0223"          "0221"          "0221"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>          "0222"          "0221"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>          "0221"          "0222"          "0223"          "0221"          "0222"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>          "0223"          "0222"          "0221"          "0223"          "0221"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>          "0221"          "0221"          "0221"          "0222"           "024"          "0221" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>          "0222"          "0222"           "024"          "0222"          "0223"          "0221" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>          "0223"          "0221"          "0223"          "0222"          "0223"          "0223" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>          "0222"          "0222"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"          "0221"          "0131"          "0221" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>          "0222"          "0221"           "024"           "024"          "0222"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"          "0222"          "0222"          "0222" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>          "0222"           "024"          "0222"          "0223"          "0222"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>          "0221"           "024"          "0222"           "024"          "0222"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>          "0222"          "0222"           "024"          "0222"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>          "0221"          "0221"          "0221"          "0221"           "024"          "0221" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"          "0221"          "0222"          "0222" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>          "0221"          "0221"          "0222"          "0223"           "024"          "0222" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"          "0223"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"          "0222"          "0223"          "0222"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"          "0222"          "0223"          "0222"           "024"          "0223" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>          "0221"          "0131"          "0223"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>          "0221"           "024"           "024"          "0222"           "024"          "0222" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"          "0221"          "0221"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>          "0221"          "0223"          "0222"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>          "0223"           "033"          "0223"           "024"          "0223"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>          "0221"           "024"           "024"          "0221"           "024"          "0222" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>          "0221"          "0221"          "0221"          "0223"          "0223"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1622))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>           "012"           "012"           "012"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"           "012"           "012"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"           "012"           "011"           "012"           "012"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>           "012"           "012"           "011"           "011"           "012"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>           "012"           "011"           "011"           "011"           "011"           "012" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"           "012"           "011"           "011"           "012" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>           "012"           "011"          "0132"           "012"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"           "012"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>           "012"           "011"           "012"          "0132"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>           "012"           "033"           "031"           "033"           "031"           "033" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>           "031"           "033"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"           "031"           "032"           "033"           "012"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>           "031"           "023"           "012"           "033"           "033"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>           "032"           "023"           "031"           "011"           "032"           "032" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>           "031"           "031"           "011"           "031"           "023"           "031" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"           "032"           "032"           "031" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>           "032"          "0131"           "031"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"           "012"           "011"           "023"           "031" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>           "031"           "011"           "012"           "023"           "011"           "032" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"           "012"           "031"           "031"           "032" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"           "031"           "032"           "021"           "012"           "012" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"           "012" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>           "012"           "023"           "021"           "012"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"          "0133"           "011"          "0133"           "012"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"          "0133"           "011"           "011"           "012"           "012" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>           "012"           "012"           "011"           "012"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"          "0133"           "012"           "011"           "012"           "031" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"           "012"           "011"           "012"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"           "011"           "011"           "023"           "011"           "012" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"          "0131"          "0133"          "0132"           "011"           "012" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"           "011"          "0133"          "0133"          "0133"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"           "011"          "0133"           "012"           "012"           "012" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"          "0133"           "012"           "012"           "033"           "012" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>           "012"           "012"           "011"           "011"           "011"           "012" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"           "012"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"           "011"           "012"           "011"          "0133"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>           "012"           "012"           "012"           "011"           "012"           "012" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>           "012"           "011"           "012"           "012"           "011"           "012" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"           "012"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"           "033" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"           "033"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"           "011"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"           "032"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"           "011"           "011"           "033" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"           "033"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"           "011"          "0131"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>           "012"          "0131"           "011"           "023"          "0133"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"           "033"           "033"           "023"           "012" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"           "012" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"           "033" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>           "012"           "023"           "012"           "012"           "012"           "012" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"           "011"           "011"           "033"           "012"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>           "012"          "0133"          "0131"          "0131"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"           "033"          "0132"          "0132"           "011"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"           "012"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"           "011"          "0131"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"           "011"          "0132"          "0132"          "0133"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"           "033"           "011"           "011"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"          "0132"           "011"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"           "011"           "011"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"          "0131"           "011"           "011"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"           "011"           "011"           "011"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"           "011"           "011"          "0132"          "0132"           "012" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"           "011"          "0132"           "012" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"          "0133"          "0133"           "012" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"           "012"           "011"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"           "011"          "0133"           "012"           "011"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>           "012"           "012"          "0132"          "0132"           "011"           "012" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"           "012"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"          "0132"           "012"           "011"          "0132"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"           "011"           "011"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"          "0133"           "011"           "011"           "011"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"           "011"           "012"          "0132"          "0132"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"           "011"           "011"          "0133"           "011"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"          "0132"          "0132"           "011"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"           "012"          "0132"           "011"           "011"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"           "011"          "0132"           "011"          "0132"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>           "012"           "011"          "0132"           "012"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"          "0132"          "0132"          "0132"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"          "0132"           "011"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>           "012"           "011"          "0131"          "0132"           "011"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"          "0132"           "011"          "0132"          "0132"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"           "011"           "011"           "033"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"          "0132"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"          "0132"          "0132"          "0132"           "012"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"           "012"           "011"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"           "033"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>           "033"           "033"           "021"           "033"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"           "033"           "031"           "031"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"           "033"           "021"           "021"           "033"           "033" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"           "031" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>           "033"           "033"           "033"           "021"           "033"           "033" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"           "031"           "021"           "031"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>           "033"           "033"           "021"           "021"           "033"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>           "033"           "033"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"           "031"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"           "033"           "033"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"           "033"           "033"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"           "033"           "033" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"           "033"           "033" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"           "033" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"           "032"           "021"           "021"           "031"           "033" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>           "032"           "033"           "033"           "033"          "0131"           "033" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"           "033"           "023"           "033"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"           "033"           "032"          "0131"           "033"           "033" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>           "031"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"           "033" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"           "033"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"           "033" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"           "033"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>           "033"           "021"           "021"           "021"           "021"           "032" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"           "033"           "023"           "023"           "033" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>           "033"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"           "033"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"           "031" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"           "033"           "021"           "021"           "033" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"           "033"           "021"           "033"           "033" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"           "033"           "033"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"           "031"           "021"           "033"           "031"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>           "033"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"           "033"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"           "033"           "021"          "0131"           "021"           "033" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"           "033" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"           "033"           "031" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"           "033"           "023"          "0131"           "033" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"           "032"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"           "031"           "031"           "031"           "021"           "031" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>           "031"           "031"           "031"           "032"           "031"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>           "032"           "031"           "032"          "0131"          "0131"           "031" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"           "031"           "033"           "031"           "031"           "031" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>           "032"           "031"           "032"          "0131"           "033"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>           "032"          "0131"           "031"           "032"           "031"           "032" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>           "032"           "031"           "031"           "032"           "031"           "032" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>           "031"           "032"           "031"           "032"           "032"           "031" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>           "031"           "032"           "032"           "021"           "021"           "032" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>           "031"           "031"           "032"           "031"           "032"           "032" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>           "031"           "031"           "031"           "031"           "032"           "031" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>           "031"           "031"          "0131"           "032"           "021"           "032" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>           "032"          "0131"           "032"           "033"           "031"           "032" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>           "031"           "032"           "032"           "032"          "0131"           "032" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>           "031"           "032"          "0131"           "031"          "0131"           "032" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>           "031"          "0131"          "0131"           "031"           "031"           "031" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>           "032"           "031"           "021"           "032"           "031"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>           "031"           "031"           "031"           "031"           "031"           "032" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>           "031"           "032"          "0131"           "031"           "031"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>           "032"           "031"           "031"           "031"           "032"           "032" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>           "032"           "032"           "032"           "032"           "032"           "032" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>           "032"           "032"           "031"          "0131"           "033"           "032" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>           "031"           "032"           "031"          "0131"           "032"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>           "032"           "031"           "032"           "032"           "032"           "031" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>           "031"           "031"           "031"           "032"           "032"           "031" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>           "032"           "021"           "031"           "032"           "031"           "031" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>           "032"           "021"           "032"           "031"           "031"           "032" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>           "032"           "021"           "031"           "032"           "021"           "032" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>           "032"           "031"           "032"           "032"           "032"           "032" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>           "031"           "031"           "032"           "031"           "031"           "031" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"           "032"           "021"           "031"           "031"           "032" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>           "031"           "031"          "0131"           "031"           "031"           "032" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"           "031"           "031"           "021"           "021"           "032" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>           "032"           "021"           "021"           "032"           "031"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>           "031"           "032"           "021"           "031"           "031"           "031" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>           "032"           "032"           "024"           "022"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>           "033"           "022"          "0131"           "033"           "024"           "022" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>           "022"           "022"           "024"           "022"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>           "022"          "0131"          "0131"           "022"           "033"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"           "033"           "022"           "022"           "022"           "022" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>           "022"           "033"           "022"           "024"           "022"           "022" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"           "022"           "022"           "024"           "024"           "022" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"           "033"          "0131"           "022"           "022"           "022" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"           "022"           "022"           "022"           "033"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"           "022"           "033"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"           "022"           "022"           "022"           "033" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"           "022"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"           "011"           "024"           "022"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"           "022"           "022"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"           "022" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"           "022" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"           "022"           "022"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"           "033"           "033"           "024"           "022"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>           "022"          "0131"           "033"           "022"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"           "022"           "022"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>           "022"           "022"           "024"           "022"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"           "022"           "022"          "0131"           "022"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>           "022"           "022"           "022"          "0131"           "022"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>           "022"           "022"           "022"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>           "022"           "022"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>           "022"           "022"           "022"           "022"           "022"           "022" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>           "022"           "022"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"           "022"          "0131"           "022" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>           "022"           "022"           "024"           "024"           "022"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"           "022"           "022"           "022" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>           "022"           "024"           "022"           "022"           "022"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>           "022"           "024"           "022"           "024"           "022"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>           "022"           "022"           "024"           "022"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"           "022"           "022"           "022" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"           "022"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"           "022"           "022"           "022"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>           "022"          "0131"           "022"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>           "022"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>           "022"           "033"           "022"           "024"           "022"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>           "022"           "022"           "022"           "022"           "022"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 1692))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>           "012"           "012"           "012"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"           "012"           "012"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"           "012"           "011"           "012"           "012"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>           "012"           "012"           "011"           "011"           "012"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>           "012"           "011"           "011"           "011"           "011"           "012" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"           "012"           "011"           "011"           "012" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>           "012"           "011"          "0132"           "012"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"           "012"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>           "012"           "011"           "012"          "0132"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>           "012"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>            "03"            "03"           "023"          "0133"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"            "03"            "03"            "03"           "012"          "0131" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>            "03"           "023"           "012"            "03"            "03"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>            "03"           "023"            "03"           "011"            "03"            "03" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>            "03"            "03"           "011"            "03"           "023"            "03" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"            "03"            "03"            "03" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>            "03"          "0131"            "03"          "0131"           "023"          "0132" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"           "012"           "011"           "023"            "03" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>            "03"           "011"           "012"           "023"           "011"            "03" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"          "0131"           "012"            "03"            "03"            "03" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"            "03"            "03"           "021"           "012"           "012" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"           "012" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>           "012"           "023"           "021"           "012"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"          "0133"           "011"          "0133"           "012"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"          "0133"           "011"           "011"           "012"           "012" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>           "012"           "012"           "011"           "012"          "0133"          "0132" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"          "0133"           "012"           "011"           "012"            "03" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"           "012"           "011"           "012"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>          "0133"           "011"           "011"           "023"           "011"           "012" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"          "0131"          "0133"          "0132"           "011"           "012" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>          "0133"           "011"          "0133"          "0133"          "0133"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>          "0133"           "011"          "0133"           "012"           "012"           "012" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"          "0133"           "012"           "012"            "03"           "012" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>           "012"           "012"           "011"           "011"           "011"           "012" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"          "0133"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"           "012"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>          "0131"           "011"           "012"           "011"          "0133"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>           "012"           "012"           "012"           "011"           "012"           "012" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>           "012"           "011"           "012"           "012"           "011"           "012" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"           "012"           "023"          "0131"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"          "0133"           "023"          "0133"          "0133" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"          "0133"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>          "0131"           "023"           "023"           "023"           "023"            "03" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>          "0133"           "023"          "0133"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"          "0133"          "0133"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"            "03"           "023"          "0133"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"          "0133"          "0131" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>          "0133"          "0131"           "023"          "0133"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>          "0133"          "0133"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"          "0133"          "0133"           "011"           "023"          "0131" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>          "0133"           "023"          "0133"            "03"          "0131"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>          "0133"           "023"          "0133"           "011"           "011"            "03" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"          "0133"            "03"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"          "0133"           "023"          "0133"          "0133"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"          "0133"          "0133"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"          "0133"           "023"          "0133" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"          "0133"           "011"          "0131"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>           "012"          "0131"           "011"           "023"          "0133"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>          "0133"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>          "0131"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"          "0133"            "03"            "03"           "023"           "012" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"           "012" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"          "0133"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"          "0131"           "023"           "023"           "023"            "03" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>           "012"           "023"           "012"           "012"           "012"           "012" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>          "0132"           "011"           "011"            "03"           "012"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>           "012"          "0133"          "0131"          "0131"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"            "03"          "0132"          "0132"           "011"          "0132" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>          "0132"           "012"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>          "0133"          "0132"          "0132"           "011"          "0131"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>          "0132"          "0133"          "0132"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"          "0131"          "0132"          "0132"          "0132" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>          "0132"           "011"          "0132"          "0132"          "0133"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>          "0133"            "03"           "011"           "011"          "0132"          "0132" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"          "0132"           "011"          "0133"          "0133" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>          "0131"          "0132"           "011"           "011"          "0133"          "0132" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"          "0131"           "011"           "011"          "0131"          "0133" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>          "0133"          "0133"           "011"           "011"           "011"          "0133" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>          "0132"           "011"           "011"          "0132"          "0132"           "012" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>          "0132"          "0133"          "0132"           "011"          "0132"           "012" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"          "0133"          "0133"           "012" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>          "0132"           "012"           "011"          "0133"          "0133"          "0133" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>          "0132"           "011"          "0133"           "012"           "011"          "0132" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>           "012"           "012"          "0132"          "0132"           "011"           "012" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>          "0132"          "0132"          "0132"          "0132"           "012"          "0132" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"          "0132"           "012"           "011"          "0132"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>          "0132"          "0133"           "011"           "011"          "0132"          "0133" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"          "0133"           "011"           "011"           "011"          "0132" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>          "0132"           "011"           "012"          "0132"          "0132"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>          "0132"           "011"           "011"          "0133"           "011"          "0133" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"          "0132"          "0132"           "011"          "0132" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"           "012"          "0132"           "011"           "011"          "0132" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"          "0132"          "0132"          "0132"          "0132"          "0132" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>          "0132"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>          "0132"           "011"          "0132"           "011"          "0132"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>          "0132"          "0132"          "0132"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"          "0132"           "011"          "0132"          "0132"          "0132" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>           "012"           "011"          "0132"           "012"          "0132"          "0133" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"          "0132"          "0132"          "0132"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>          "0132"          "0132"          "0132"          "0133"          "0132"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"          "0132"           "011"          "0132"          "0132" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>           "012"           "011"          "0131"          "0132"           "011"          "0132" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"          "0132"           "011"          "0132"          "0132"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>          "0132"           "011"           "011"            "03"          "0132"          "0132" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"          "0132"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"          "0132"          "0132" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"          "0132"          "0132"          "0132"           "012"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"          "0132"           "012"           "011"          "0132"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"            "03"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>            "03"            "03"           "021"            "03"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"            "03"            "03"            "03"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"            "03"           "021"           "021"            "03"            "03" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"          "0131"            "03" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>            "03"            "03"            "03"           "021"            "03"            "03" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"            "03"           "021"            "03"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>            "03"            "03"           "021"           "021"            "03"          "0131" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>            "03"            "03"          "0131"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"            "03"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"            "03"            "03"          "0131"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"            "03"            "03"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"            "03"            "03" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"            "03"            "03" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"          "0131"            "03" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"            "03"           "021"           "021"            "03"            "03" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>            "03"            "03"            "03"            "03"          "0131"            "03" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"          "0131"            "03"           "023"            "03"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>          "0131"            "03"            "03"          "0131"            "03"            "03" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>            "03"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"          "0131"           "021"           "021"            "03" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"            "03"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"            "03" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"            "03"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>            "03"           "021"           "021"           "021"           "021"            "03" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"            "03"           "023"           "023"            "03" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>            "03"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"            "03"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"          "0131"           "021"           "021"            "03" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"            "03"           "021"           "021"            "03" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"          "0131"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"            "03"           "021"            "03"            "03" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"            "03"            "03"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"            "03"           "021"            "03"            "03"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>            "03"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"          "0131"            "03"          "0131"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"            "03"           "021"          "0131"           "021"            "03" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"            "03" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"            "03"            "03" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"            "03"           "023"          "0131"            "03" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"            "03"          "0131" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"            "03"            "03"            "03"           "021"            "03" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>            "03"            "03"            "03"            "03"            "03"          "0131" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>            "03"            "03"            "03"          "0131"          "0131"            "03" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>          "0131"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>            "03"            "03"            "03"          "0131"            "03"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>            "03"          "0131"            "03"            "03"            "03"            "03" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>            "03"            "03"            "03"           "021"           "021"            "03" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>            "03"            "03"          "0131"            "03"           "021"            "03" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>            "03"          "0131"            "03"            "03"            "03"            "03" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>            "03"            "03"            "03"            "03"          "0131"            "03" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>          "0131"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>            "03"            "03"          "0131"            "03"          "0131"            "03" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>            "03"          "0131"          "0131"            "03"            "03"            "03" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>            "03"            "03"           "021"            "03"            "03"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>            "03"            "03"          "0131"            "03"            "03"          "0131" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>            "03"            "03"            "03"          "0131"            "03"            "03" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>            "03"            "03"            "03"          "0131"            "03"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>            "03"           "021"            "03"            "03"            "03"            "03" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>            "03"           "021"            "03"            "03"            "03"            "03" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>            "03"           "021"            "03"            "03"           "021"            "03" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"            "03"           "021"            "03"            "03"            "03" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>            "03"            "03"          "0131"            "03"            "03"            "03" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"            "03"            "03"           "021"           "021"            "03" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>            "03"           "021"           "021"            "03"            "03"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>            "03"            "03"           "021"            "03"            "03"            "03" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>            "03"            "03"           "024"           "022"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>            "03"           "022"          "0131"            "03"           "024"           "022" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>           "022"           "022"           "024"           "022"          "0131"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>           "022"          "0131"          "0131"           "022"            "03"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"            "03"           "022"           "022"           "022"           "022" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>           "022"            "03"           "022"           "024"           "022"           "022" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"           "022"           "022"           "024"           "024"           "022" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"            "03"          "0131"           "022"           "022"           "022" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"           "022"           "022"           "022"            "03"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>          "0131"           "024"           "024"           "022"            "03"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"           "022"           "022"           "022"            "03" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"          "0131"           "024"           "022"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>          "0131"           "011"           "024"           "022"          "0131"          "0131" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"          "0131"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"          "0131"           "022"           "022"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"          "0131"           "024"          "0131"           "022" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"          "0131"           "024"           "022" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"           "022"           "022"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"            "03"            "03"           "024"           "022"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>           "022"          "0131"            "03"           "022"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"           "022"           "022"           "024"          "0131" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>           "022"           "022"           "024"           "022"           "024"          "0131" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>          "0131"           "022"           "022"          "0131"           "022"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>           "022"           "022"           "022"          "0131"           "022"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>           "022"           "022"           "022"           "024"           "024"          "0131" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>           "022"           "022"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>           "022"           "022"           "022"           "022"           "022"           "022" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>           "022"           "022"           "024"          "0131"           "024"          "0131" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"           "022"          "0131"           "022" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>           "022"           "022"           "024"           "024"           "022"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"           "022"           "022"           "022" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>           "022"           "024"           "022"           "022"           "022"          "0131" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>           "022"           "024"           "022"           "024"           "022"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>           "022"           "022"           "024"           "022"           "024"          "0131" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>          "0131"          "0131"           "024"           "022"           "022"           "022" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"           "022"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"           "022"           "022"           "022"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>           "022"          "0131"           "022"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>           "022"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>           "022"            "03"           "022"           "024"           "022"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>           "022"           "022"           "022"           "022"           "022"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 2435))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>           "011"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>           "012"           "012"           "012"           "011"           "011"           "011" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>           "011"           "011"           "012"           "012"           "011"           "011" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>           "011"           "012"           "011"           "012"           "012"           "011" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>           "012"           "012"           "011"           "011"           "012"           "011" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>           "012"           "011"           "011"           "011"           "011"           "012" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>           "011"           "011"           "012"           "011"           "011"           "012" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>           "012"           "011"           "013"           "012"           "011"           "011" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>           "011"           "011"           "012"           "011"           "011"           "011" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>           "012"           "011"           "012"           "013"           "011"           "011" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>           "012"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>            "03"            "03"           "023"           "013"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"            "03"            "03"            "03"           "012"           "013" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>            "03"           "023"           "012"            "03"            "03"           "011" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>            "03"           "023"            "03"           "011"            "03"            "03" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>            "03"            "03"           "011"            "03"           "023"            "03" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"            "03"            "03"            "03" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>            "03"           "013"            "03"           "013"           "023"           "013" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"           "012"           "011"           "023"            "03" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>            "03"           "011"           "012"           "023"           "011"            "03" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"           "013"           "012"            "03"            "03"            "03" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"            "03"            "03"           "021"           "012"           "012" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"           "012" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>           "012"           "023"           "021"           "012"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>           "012"           "012"           "012"           "012"           "011"           "011" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>           "011"           "013"           "011"           "013"           "012"           "011" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>           "011"           "013"           "011"           "011"           "012"           "012" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>           "012"           "012"           "011"           "012"           "013"           "013" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>           "011"           "013"           "012"           "011"           "012"            "03" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>           "011"           "011"           "012"           "011"           "012"           "011" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>           "013"           "011"           "011"           "023"           "011"           "012" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>           "011"           "013"           "013"           "013"           "011"           "012" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>           "013"           "011"           "013"           "013"           "013"           "011" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>           "013"           "011"           "013"           "012"           "012"           "012" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>           "011"           "013"           "012"           "012"            "03"           "012" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>           "012"           "012"           "011"           "011"           "011"           "012" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"           "013"           "011"           "011"           "011"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>           "011"           "012"           "011"           "011"           "011"           "011" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>           "013"           "011"           "012"           "011"           "013"           "011" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>           "011"           "011"           "011"           "012"           "011"           "012" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>           "012"           "012"           "011"           "012"           "012"           "012" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>           "012"           "012"           "012"           "012"           "012"           "012" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>           "012"           "012"           "012"           "011"           "012"           "012" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>           "012"           "011"           "012"           "012"           "011"           "012" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>           "011"           "023"           "012"           "023"           "013"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"           "011"           "013"           "023"           "013"           "013" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"           "013"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>           "013"           "023"           "023"           "023"           "023"            "03" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"           "013"           "013"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"           "013"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>           "013"           "023"           "013"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"           "013"           "013"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"            "03"           "023"           "013"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"           "011" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"           "011"           "023"           "023"           "013"           "013" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>           "013"           "013"           "023"           "013"           "023"           "011" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>           "013"           "013"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>           "011"           "023"           "023"           "023"           "013"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"           "013"           "013"           "011"           "023"           "013" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>           "013"           "023"           "013"            "03"           "013"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>           "013"           "023"           "013"           "011"           "011"            "03" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"           "013"            "03"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"           "013"           "023"           "013"           "013"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"           "013"           "013"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"           "011"           "013"           "023"           "013" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"           "013"           "011"           "013"           "011" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>           "012"           "013"           "011"           "023"           "013"           "011" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>           "013"           "023"           "023"           "023"           "013"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>           "013"           "023"           "023"           "023"           "013"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"           "013"            "03"            "03"           "023"           "012" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"           "011"           "023"           "011" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"           "011"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"           "011"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"           "012" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"           "013"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"           "013"           "023"           "023"           "023"            "03" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"           "011" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>           "012"           "023"           "012"           "012"           "012"           "012" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>           "013"           "011"           "011"            "03"           "012"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>           "013"           "013"           "013"           "011"           "011"           "011" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>           "012"           "013"           "013"           "013"           "011"           "011" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>           "011"            "03"           "013"           "013"           "011"           "013" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>           "013"           "012"           "013"           "013"           "013"           "013" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>           "013"           "013"           "013"           "011"           "013"           "011" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>           "013"           "013"           "013"           "011"           "011"           "011" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>           "011"           "011"           "013"           "013"           "013"           "013" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>           "013"           "011"           "013"           "013"           "013"           "011" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>           "013"            "03"           "011"           "011"           "013"           "013" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>           "011"           "011"           "011"           "011"           "012"           "012" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>           "011"           "011"           "013"           "011"           "013"           "013" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>           "013"           "013"           "011"           "011"           "013"           "013" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>           "011"           "013"           "011"           "011"           "013"           "013" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>           "013"           "013"           "011"           "011"           "011"           "013" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>           "013"           "011"           "011"           "013"           "013"           "012" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>           "013"           "013"           "013"           "011"           "013"           "012" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>           "011"           "011"           "011"           "013"           "013"           "012" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>           "013"           "012"           "011"           "013"           "013"           "013" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>           "013"           "011"           "013"           "012"           "011"           "013" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>           "012"           "012"           "013"           "013"           "011"           "012" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>           "013"           "013"           "013"           "013"           "012"           "013" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>           "011"           "013"           "012"           "011"           "013"           "011" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>           "013"           "013"           "011"           "011"           "013"           "013" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>           "011"           "013"           "011"           "011"           "011"           "013" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>           "013"           "011"           "012"           "013"           "013"           "011" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>           "013"           "011"           "011"           "013"           "011"           "013" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>           "011"           "011"           "013"           "013"           "011"           "013" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>           "011"           "012"           "013"           "011"           "011"           "013" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"           "013"           "013"           "013"           "013"           "013" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>           "011"           "013"           "013"           "013"           "013"           "013" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>           "013"           "013"           "011"           "013"           "013"           "013" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>           "013"           "011"           "013"           "011"           "013"           "011" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>           "013"           "013"           "013"           "011"           "011"           "011" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>           "011"           "013"           "011"           "013"           "013"           "013" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>           "012"           "011"           "013"           "012"           "013"           "013" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>           "011"           "011"           "013"           "013"           "013"           "011" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>           "013"           "013"           "013"           "013"           "013"           "011" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"           "011"           "013"           "011"           "013"           "013" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>           "012"           "011"           "013"           "013"           "011"           "013" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>           "011"           "013"           "011"           "013"           "013"           "011" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>           "013"           "011"           "011"            "03"           "013"           "013" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>           "011"           "011"           "011"           "011"           "013"           "011" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>           "011"           "011"           "011"           "011"           "013"           "013" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>           "011"           "013"           "013"           "013"           "012"           "011" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"           "013"           "012"           "011"           "013"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"            "03"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>            "03"            "03"           "021"            "03"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"            "03"            "03"            "03"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"            "03"           "021"           "021"            "03"            "03" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"           "013"            "03" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>            "03"            "03"            "03"           "021"            "03"            "03" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"            "03"           "021"            "03"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>            "03"            "03"           "021"           "021"            "03"           "013" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>            "03"            "03"           "013"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"            "03"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"            "03"            "03"           "013"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"            "03"            "03"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"            "03"            "03" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"            "03"            "03" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"           "013"            "03" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"            "03"           "021"           "021"            "03"            "03" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>            "03"            "03"            "03"            "03"           "013"            "03" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"           "013"            "03"           "023"            "03"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>           "013"            "03"            "03"           "013"            "03"            "03" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>            "03"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"           "013"           "021"           "021"            "03" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"            "03"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"            "03" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"            "03"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>            "03"           "021"           "021"           "021"           "021"            "03" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"            "03"           "023"           "023"            "03" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>            "03"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"            "03"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"           "013"           "021"           "021"            "03" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"            "03"           "021"           "021"            "03" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"           "013"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"            "03"           "021"            "03"            "03" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"            "03"            "03"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"            "03"           "021"            "03"            "03"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>            "03"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"           "013"            "03"           "013"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"            "03"           "021"           "013"           "021"            "03" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"            "03" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"            "03"            "03" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"            "03"           "023"           "013"            "03" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"            "03"           "013" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"            "03"            "03"            "03"           "021"            "03" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>            "03"            "03"            "03"            "03"            "03"           "013" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>            "03"            "03"            "03"           "013"           "013"            "03" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>           "013"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>            "03"            "03"            "03"           "013"            "03"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>            "03"           "013"            "03"            "03"            "03"            "03" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>            "03"            "03"            "03"           "021"           "021"            "03" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>            "03"            "03"           "013"            "03"           "021"            "03" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>            "03"           "013"            "03"            "03"            "03"            "03" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>            "03"            "03"            "03"            "03"           "013"            "03" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>           "013"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>            "03"            "03"           "013"            "03"           "013"            "03" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>            "03"           "013"           "013"            "03"            "03"            "03" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>            "03"            "03"           "021"            "03"            "03"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>            "03"            "03"           "013"            "03"            "03"           "013" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>            "03"            "03"            "03"           "013"            "03"            "03" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>            "03"            "03"            "03"           "013"            "03"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>            "03"           "021"            "03"            "03"            "03"            "03" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>            "03"           "021"            "03"            "03"            "03"            "03" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>            "03"           "021"            "03"            "03"           "021"            "03" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"            "03"           "021"            "03"            "03"            "03" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>            "03"            "03"           "013"            "03"            "03"            "03" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"            "03"            "03"           "021"           "021"            "03" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>            "03"           "021"           "021"            "03"            "03"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>            "03"            "03"           "021"            "03"            "03"            "03" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>            "03"            "03"           "024"           "022"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>            "03"           "022"           "013"            "03"           "024"           "022" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>           "022"           "022"           "024"           "022"           "013"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>           "022"           "013"           "013"           "022"            "03"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"            "03"           "022"           "022"           "022"           "022" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>           "022"            "03"           "022"           "024"           "022"           "022" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"           "022"           "022"           "024"           "024"           "022" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"            "03"           "013"           "022"           "022"           "022" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"           "022"           "022"           "022"            "03"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>           "013"           "024"           "024"           "022"            "03"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"           "022"           "022"           "022"            "03" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"           "013"           "024"           "022"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>           "013"           "011"           "024"           "022"           "013"           "013" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"           "013"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"           "013"           "022"           "022"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"           "013"           "024"           "013"           "022" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"           "013"           "024"           "022" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"           "022"           "022"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"            "03"            "03"           "024"           "022"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>           "022"           "013"            "03"           "022"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"           "022"           "022"           "024"           "013" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>           "022"           "022"           "024"           "022"           "024"           "013" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>           "013"           "022"           "022"           "013"           "022"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>           "022"           "022"           "022"           "013"           "022"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>           "022"           "022"           "022"           "024"           "024"           "013" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>           "022"           "022"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>           "022"           "022"           "022"           "022"           "022"           "022" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>           "022"           "022"           "024"           "013"           "024"           "013" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"           "022"           "013"           "022" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>           "022"           "022"           "024"           "024"           "022"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"           "022"           "022"           "022" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>           "022"           "024"           "022"           "022"           "022"           "013" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>           "022"           "024"           "022"           "024"           "022"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>           "022"           "022"           "024"           "022"           "024"           "013" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>           "013"           "013"           "024"           "022"           "022"           "022" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"           "022"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"           "022"           "022"           "022"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>           "022"           "013"           "022"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>           "022"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>           "022"            "03"           "022"           "024"           "022"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>           "022"           "022"           "022"           "022"           "022"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 3961))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>            "01"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>            "03"            "03"           "023"            "01"           "023"           "023" 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>           "021"            "03"            "03"            "03"            "01"            "01" 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>            "03"           "023"            "01"            "03"            "03"            "01" 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>            "03"           "023"            "03"            "01"            "03"            "03" 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>            "03"            "03"            "01"            "03"           "023"            "03" 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>           "023"           "021"           "021"            "03"            "03"            "03" 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>            "03"            "01"            "03"            "01"           "023"            "01" 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>           "023"           "023"            "01"            "01"           "023"            "03" 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>            "03"            "01"            "01"           "023"            "01"            "03" 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>           "023"            "01"            "01"            "03"            "03"            "03" 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>           "021"            "03"            "03"           "021"            "01"            "01" 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>           "023"           "023"           "023"           "023"           "021"            "01" 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>            "01"           "023"           "021"            "01"           "021"           "023" 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>            "01"            "01"            "01"            "01"            "01"            "03" 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>            "01"            "01"            "01"           "023"            "01"            "01" 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>            "01"            "01"            "01"            "01"            "03"            "01" 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>           "023"            "01"            "01"            "01"            "01"           "023" 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>            "01"           "023"            "01"           "023"            "01"           "023" 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>           "023"            "01"            "01"           "023"            "01"            "01" 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>           "023"           "023"           "023"            "01"           "023"           "023" 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>            "01"           "023"           "023"           "023"           "023"            "03" 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>           "023"           "023"            "01"            "01"           "023"           "023" 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>           "023"           "023"            "01"           "023"           "023"           "023" 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>            "01"           "023"            "01"           "023"           "023"           "023" 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>           "023"           "023"            "01"            "01"           "023"           "023" 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>           "023"            "03"           "023"            "01"           "023"           "023" 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>           "023"           "023"           "023"           "023"           "023"            "01" 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>           "023"           "023"           "023"           "023"           "021"           "021" 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>           "023"            "01"           "023"           "023"            "01"            "01" 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>            "01"            "01"           "023"            "01"           "023"            "01" 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>            "01"            "01"           "023"           "023"           "023"           "023" 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>            "01"           "023"           "023"           "023"            "01"           "023" 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>           "023"            "01"            "01"            "01"           "023"            "01" 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>            "01"           "023"            "01"            "03"            "01"           "023" 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>            "01"           "023"            "01"            "01"            "01"            "03" 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>           "023"           "023"            "01"            "03"           "023"           "023" 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>           "023"            "01"           "023"            "01"            "01"           "023" 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>           "023"           "023"           "023"            "01"            "01"           "023" 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>           "023"           "023"            "01"            "01"           "023"            "01" 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>           "023"           "023"            "01"            "01"            "01"            "01" 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>            "01"            "01"            "01"           "023"            "01"            "01" 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>            "01"           "023"           "023"           "023"            "01"           "023" 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>            "01"           "023"           "023"           "023"            "01"           "023" 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>           "023"            "01"            "03"            "03"           "023"            "01" 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>           "023"           "021"           "023"            "01"           "023"            "01" 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>           "023"            "01"           "021"           "023"           "023"           "023" 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>           "023"           "023"           "021"           "023"            "01"           "023" 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>           "021"           "023"           "021"           "021"           "021"            "01" 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>           "023"           "023"           "023"           "023"            "01"           "023" 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>           "023"           "023"           "023"           "023"           "023"           "023" 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>           "023"            "01"           "023"           "023"           "023"            "03" 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>           "023"           "023"           "021"           "021"           "023"            "01" 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>            "01"           "023"            "01"            "01"            "01"            "01" 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>            "01"            "01"            "01"            "03"            "01"           "023" 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>            "01"            "03"            "01"            "01"            "01"            "01" 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>            "01"            "03"            "01"            "01"            "01"            "01" 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>           "023"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>           "023"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>            "01"            "01"            "01"            "03"            "01"            "01" 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>            "01"            "01"            "01"            "01"            "01"            "01" 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>           "023"            "01"            "01"            "01"            "01"           "021" 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>           "021"           "021"            "03"           "021"           "021"           "021" 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>            "03"            "03"           "021"            "03"           "021"           "021" 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>           "021"            "03"            "03"            "03"           "021"           "021" 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>           "021"            "03"           "021"           "021"            "03"            "03" 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>           "021"           "021"           "021"           "021"            "01"            "03" 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>            "03"            "03"            "03"           "021"            "03"            "03" 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>           "021"           "021"            "03"           "021"            "03"           "021" 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>            "03"            "03"           "021"           "021"            "03"            "01" 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>            "03"            "03"            "01"           "021"           "021"           "021" 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>           "021"            "03"           "021"           "021"           "023"           "021" 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>           "021"           "021"            "03"            "03"            "01"           "021" 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>           "023"           "021"            "03"            "03"           "021"           "021" 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>           "021"           "021"           "023"           "021"            "03"            "03" 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>           "021"           "021"           "021"           "021"            "03"            "03" 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>           "021"           "021"           "021"           "021"            "01"            "03" 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>           "021"            "03"           "021"           "021"            "03"            "03" 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>            "03"            "03"            "03"            "03"            "01"            "03" 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>           "021"            "01"            "03"           "023"            "03"           "021" 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>            "01"            "03"            "03"            "01"            "03"            "03" 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>            "03"           "021"           "021"           "021"           "021"           "023" 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>           "023"           "021"            "01"           "021"           "021"            "03" 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>           "021"           "021"           "021"           "021"            "03"           "021" 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>           "021"           "023"           "021"           "021"           "021"            "03" 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>           "021"           "021"           "021"           "021"            "03"           "021" 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>            "03"           "021"           "021"           "021"           "021"            "03" 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>           "021"           "021"            "03"           "023"           "023"            "03" 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>           "021"           "021"           "023"           "021"           "021"           "021" 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>            "03"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>           "021"           "021"           "021"           "021"            "03"           "023" 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>           "021"           "023"            "01"           "021"           "021"            "03" 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>           "021"           "021"            "03"           "021"           "021"            "03" 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>           "021"           "021"           "021"           "021"            "01"           "021" 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>           "021"           "021"            "03"           "021"            "03"            "03" 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>           "021"           "021"            "03"            "03"           "021"           "021" 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>           "021"            "03"           "021"            "03"            "03"           "021" 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>            "03"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>           "021"            "01"            "03"            "01"           "021"           "021" 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>           "021"            "03"           "021"            "01"           "021"            "03" 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>           "021"           "021"           "021"           "021"           "021"            "03" 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>           "021"           "021"           "021"           "021"           "021"           "021" 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>           "021"           "023"           "021"           "021"            "03"            "03" 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>           "021"           "021"            "03"           "023"            "01"            "03" 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>           "021"           "023"           "021"           "023"            "03"            "01" 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>           "021"            "03"            "03"            "03"           "021"            "03" 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>            "03"            "03"            "03"            "03"            "03"            "01" 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>            "03"            "03"            "03"            "01"            "01"            "03" 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>            "01"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>            "03"            "03"            "03"            "01"            "03"           "021" 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>            "03"            "01"            "03"            "03"            "03"            "03" 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>            "03"            "03"            "03"           "021"           "021"            "03" 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>            "03"            "03"            "01"            "03"           "021"            "03" 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>            "03"            "01"            "03"            "03"            "03"            "03" 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>            "03"            "03"            "03"            "03"            "01"            "03" 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>            "01"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>            "03"            "03"            "01"            "03"            "01"            "03" 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>            "03"            "01"            "01"            "03"            "03"            "03" 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>            "03"            "03"           "021"            "03"            "03"           "021" 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>            "03"            "03"            "01"            "03"            "03"            "01" 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>            "03"            "03"            "03"            "01"            "03"            "03" 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>            "03"            "03"            "03"            "01"            "03"           "021" 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>            "03"           "021"            "03"            "03"            "03"            "03" 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>            "03"           "021"            "03"            "03"            "03"            "03" 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>            "03"           "021"            "03"            "03"           "021"            "03" 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>            "03"            "03"            "03"            "03"            "03"            "03" 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>           "021"            "03"           "021"            "03"            "03"            "03" 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>            "03"            "03"            "01"            "03"            "03"            "03" 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>           "021"            "03"            "03"           "021"           "021"            "03" 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>            "03"           "021"           "021"            "03"            "03"           "021" 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>            "03"            "03"           "021"            "03"            "03"            "03" 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>            "03"            "03"           "024"           "022"           "024"           "024" 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>            "03"           "022"            "01"            "03"           "024"           "022" 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>           "022"           "022"           "024"           "022"            "01"           "024" 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>           "022"            "01"            "01"           "022"            "03"           "024" 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>           "024"            "03"           "022"           "022"           "022"           "022" 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>           "022"            "03"           "022"           "024"           "022"           "022" 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>           "024"           "022"           "022"           "024"           "024"           "022" 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>           "024"            "03"            "01"           "022"           "022"           "022" 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>           "024"           "022"           "022"           "022"            "03"           "024" 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>            "01"           "024"           "024"           "022"            "03"           "024" 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>           "024"           "024"           "022"           "022"           "022"            "03" 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>           "024"            "01"           "024"           "022"           "024"           "024" 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>            "01"            "01"           "024"           "022"            "01"            "01" 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>           "024"           "024"           "024"           "024"            "01"           "024" 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>           "024"           "024"            "01"           "022"           "022"           "024" 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>           "024"           "024"            "01"           "024"            "01"           "022" 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>           "024"           "024"           "024"            "01"           "024"           "022" 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>           "024"           "024"           "022"           "022"           "024"           "024" 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>           "024"            "03"            "03"           "024"           "022"           "024" 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>           "022"            "01"            "03"           "022"           "024"           "024" 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>           "024"           "024"           "022"           "022"           "024"            "01" 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>           "022"           "022"           "024"           "022"           "024"            "01" 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>            "01"           "022"           "022"            "01"           "022"           "024" 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>           "022"           "022"           "022"            "01"           "022"           "024" 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>           "022"           "022"           "022"           "024"           "024"            "01" 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>           "022"           "022"           "024"           "024"           "024"           "024" 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>           "022"           "022"           "022"           "022"           "022"           "024" 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>           "022"           "022"           "024"           "022"           "022"           "022" 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>           "022"           "022"           "022"           "022"           "022"           "022" 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>           "022"           "022"           "024"            "01"           "024"            "01" 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>           "024"           "024"           "024"           "022"            "01"           "022" 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>           "022"           "022"           "024"           "024"           "022"           "024" 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>           "024"           "024"           "024"           "022"           "022"           "022" 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>           "022"           "024"           "022"           "022"           "022"            "01" 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>           "022"           "024"           "022"           "024"           "022"           "024" 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>           "022"           "022"           "024"           "022"           "024"            "01" 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>            "01"            "01"           "024"           "022"           "022"           "022" 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>           "022"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>           "024"           "024"           "024"           "024"           "022"           "024" 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>           "024"           "022"           "022"           "022"           "024"           "024" 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>           "024"           "022"           "022"           "022"           "024"           "022" 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>           "022"            "01"           "022"           "024"           "024"           "024" 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>           "024"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>           "022"           "022"           "022"           "024"           "024"           "024" 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>           "022"            "03"           "022"           "024"           "022"           "024" 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>           "022"           "024"           "024"           "022"           "024"           "022" 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>           "022"           "022"           "022"           "022"           "022"

show/hide code output

get_classes(res_rh, merge_node = merge_node_param(min_n_signatures = 5526))
#> 1772122_301_C02 1772122_180_E05 1772122_300_H02 1772122_180_B09 1772122_180_G04 1772122_182_E09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_C04 1772122_302_D11 1772122_180_C11 1772122_298_A07 1772122_299_A11 1772122_298_D09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_A06 1772122_302_G06 1772122_182_D07 1772122_182_D02 1772122_300_D04 1772122_300_E06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_F10 1772122_301_G12 1772122_301_F09 1772122_301_C12 1772122_301_F07 1772122_301_F05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_D08 1772122_301_G10 1772122_301_C04 1772122_301_G07 1772122_301_B08 1772122_301_G04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_G11 1772122_301_H03 1772122_302_G07 1772122_301_D10 1772122_300_F01 1772122_299_H11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_B05 1772122_301_C07 1772122_298_C12 1772122_300_A05 1772122_300_H06 1772122_301_E07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_A02 1772122_299_F02 1772122_300_D02 1772122_301_H05 1772122_181_C12 1772122_180_H06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_D07 1772122_302_A08 1772122_180_H12 1772122_180_H10 1772122_182_G02 1772122_181_E09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_F06 1772122_302_H11 1772122_180_G03 1772122_301_H12 1772122_300_D03 1772122_299_C07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_E08 1772122_302_G08 1772122_301_A04 1772122_302_D04 1772122_300_E11 1772122_300_C01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_A03 1772122_298_C11 1772122_298_E09 1772122_298_H07 1772122_300_B12 1772122_300_H08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_F03 1772122_182_A09 1772122_182_C09 1772122_298_D10 1772122_298_D05 1772122_299_C01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_A02 1772122_300_F05 1772122_182_A10 1772122_299_F10 1772122_181_E05 1772122_300_A12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_G04 1772122_182_H12 1772122_302_G10 1772122_182_C06 1772122_298_E06 1772122_300_A01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_E03 1772122_302_C05 1772122_299_G06 1772122_299_F09 1772122_302_C12 1772122_299_E07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_D02 1772122_300_D09 1772122_298_F09 1772122_302_A11 1772122_180_F06 1772122_299_E09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_A05 1772122_182_C05 1772122_181_C05 1772122_300_A06 1772122_181_A02 1772122_181_E11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_C05 1772122_181_C07 1772122_182_C02 1772122_300_E10 1772122_299_D06 1772122_180_F09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_B07 1772122_300_F04 1772122_180_D12 1772122_180_H11 1772122_300_A10 1772122_299_G05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_E06 1772122_205_D01 1772122_262_E04 1772122_206_F10 1772122_325_B06 1772122_205_A05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_H07 1772122_262_F04 1772122_305_D11 1772122_315_A07 1772122_303_B02 1772122_315_F04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_E06 1772122_204_C06 1772122_263_F12 1772122_306_H07 1772122_206_D10 1772122_325_G03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_D12 1772122_205_C02 1772122_315_F02 1772122_206_A11 1772122_262_D12 1772122_182_H11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_D01 1772122_205_E01 1772122_326_E02 1772122_263_G09 1772122_326_G02 1772122_326_C11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_D01 1772122_326_D08 1772122_326_G12 1772122_263_A11 1772122_315_G09 1772122_263_C01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_B03 1772122_204_D11 1772122_206_A03 1772122_263_H09 1772122_325_E01 1772122_263_B06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_D06 1772122_325_A08 1772122_326_F04 1772122_263_G11 1772122_205_G06 1772122_299_A07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_C05 1772122_305_G06 1772122_303_A03 1772122_303_A05 1772122_306_H11 1772122_325_H09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_D04 1772122_298_H05 1772122_303_B12 1772122_315_A11 1772122_303_D05 1772122_263_B12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_G01 1772122_326_H08 1772122_206_H10 1772122_326_H07 1772122_326_H10 1772122_263_A01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_F08 1772122_326_F11 1772122_326_G10 1772122_206_D01 1772122_263_H02 1772122_306_E02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_F05 1772122_306_B12 1772122_306_B07 1772122_306_A12 1772122_204_C01 1772122_315_E03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_G07 1772122_315_E08 1772122_262_A07 1772122_306_H02 1772122_206_B06 1772122_315_H08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_303_D08 1772122_303_H07 1772122_306_D05 1772122_305_H05 1772122_302_B03 1772122_300_B03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_E02 1772122_303_B01 1772122_298_B10 1772122_298_D07 1772122_298_G09 1772122_300_E07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_H12 1772122_298_D11 1772122_299_G12 1772122_302_F05 1772122_300_E09 1772122_301_G09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_F02 1772122_301_G11 1772122_302_D05 1772122_302_E11 1772122_299_A05 1772122_299_H06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_A01 1772122_299_D04 1772122_180_E07 1772122_300_E02 1772122_301_A09 1772122_301_B05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_G09 1772122_299_A06 1772122_301_B12 1772122_324_H10 1772122_301_F03 1772122_325_F03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_H01 1772122_325_F05 1772122_301_E02 1772122_302_F11 1772122_300_C06 1772122_302_G04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_C05 1772122_302_H08 1772122_300_G08 1772122_298_B07 1772122_299_B02 1772122_301_A05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_B11 1772122_299_H04 1772122_299_G07 1772122_300_C09 1772122_300_A03 1772122_302_A02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_H07 1772122_300_C07 1772122_298_C02 1772122_300_E12 1772122_299_H12 1772122_300_B04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_H05 1772122_299_D09 1772122_299_B04 1772122_298_A09 1772122_298_E02 1772122_302_D06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_F12 1772122_298_F02 1772122_301_B11 1772122_301_H01 1772122_298_H08 1772122_301_H06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_F02 1772122_305_D01 1772122_181_D10 1772122_182_E04 1772122_182_B12 1772122_301_E01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_A11 1772122_315_B01 1772122_300_B05 1772122_298_A01 1772122_182_A01 1772122_315_C10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_C12 1772122_299_D11 1772122_302_B05 1772122_180_C08 1772122_302_C08 1772122_300_D10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_C10 1772122_302_E12 1772122_298_H04 1772122_182_D09 1772122_300_D07 1772122_298_F12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_A01 1772122_299_F12 1772122_298_B05 1772122_301_C01 1772122_298_A08 1772122_180_F05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_H10 1772122_299_D01 1772122_302_A01 1772122_298_H10 1772122_298_F05 1772122_301_C06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_C04 1772122_181_G05 1772122_298_D04 1772122_180_B10 1772122_180_H04 1772122_301_B03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_A11 1772122_182_D04 1772122_300_H10 1772122_301_B06 1772122_301_D06 1772122_298_A03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_A11 1772122_301_F06 1772122_298_F04 1772122_300_H12 1772122_301_B07 1772122_299_F04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_E04 1772122_299_F11 1772122_300_H09 1772122_302_C02 1772122_301_D05 1772122_301_H04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_G06 1772122_299_H07 1772122_298_H06 1772122_301_G06 1772122_301_C10 1772122_300_B11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_C08 1772122_301_D07 1772122_301_D04 1772122_301_G05 1772122_301_H09 1772122_302_F02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_F11 1772122_301_C11 1772122_301_F11 1772122_302_C11 1772122_299_A08 1772122_301_E10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_D11 1772122_182_A12 1772122_301_C05 1772122_302_B09 1772122_299_B10 1772122_182_F09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_F03 1772122_315_F03 1772122_303_C09 1772122_306_H10 1772122_306_E09 1772122_305_F05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_H04 1772122_305_B03 1772122_305_A01 1772122_303_D10 1772122_306_C10 1772122_303_D01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_C01 1772122_305_E08 1772122_305_E03 1772122_305_E12 1772122_306_A04 1772122_305_C02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_303_F12 1772122_303_H08 1772122_305_E06 1772122_306_A10 1772122_315_H03 1772122_315_F01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_G06 1772122_303_B09 1772122_306_D12 1772122_303_E07 1772122_315_H07 1772122_305_E04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_H06 1772122_305_D04 1772122_306_C09 1772122_315_G10 1772122_315_D06 1772122_306_F01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_H06 1772122_315_A05 1772122_315_E10 1772122_306_G04 1772122_315_G06 1772122_315_H10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_G10 1772122_315_E05 1772122_315_F10 1772122_305_C11 1772122_306_A08 1772122_305_E05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_E12 1772122_315_A06 1772122_306_G09 1772122_315_B05 1772122_305_E01 1772122_306_G05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_A10 1772122_315_D04 1772122_306_G03 1772122_306_H08 1772122_305_D08 1772122_315_D05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_H03 1772122_306_F08 1772122_306_D03 1772122_306_B04 1772122_306_G07 1772122_306_A07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_H11 1772122_306_A03 1772122_315_H02 1772122_306_F12 1772122_205_A06 1772122_205_E05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_B11 1772122_302_F01 1772122_315_F11 1772122_306_B09 1772122_305_G02 1772122_262_A05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_H09 1772122_306_F11 1772122_315_D12 1772122_315_B11 1772122_306_D02 1772122_302_G01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_C11 1772122_315_D08 1772122_306_E08 1772122_315_D09 1772122_306_G12 1772122_315_E01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_D12 1772122_315_H09 1772122_306_F06 1772122_315_B07 1772122_306_E07 1772122_315_E11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_C03 1772122_306_A02 1772122_315_G12 1772122_306_A06 1772122_315_D10 1772122_306_D11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_E10 1772122_315_A12 1772122_306_B05 1772122_263_E12 1772122_205_B05 1772122_315_G07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_F04 1772122_306_F02 1772122_315_A03 1772122_315_H01 1772122_302_G11 1772122_315_B03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_G02 1772122_315_F09 1772122_306_D08 1772122_315_F12 1772122_303_C07 1772122_305_D02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_E07 1772122_305_B09 1772122_303_C04 1772122_303_G03 1772122_305_F11 1772122_315_F07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_F09 1772122_305_B12 1772122_305_H02 1772122_305_C04 1772122_305_H03 1772122_305_A06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_303_C08 1772122_303_C01 1772122_303_G02 1772122_303_A06 1772122_315_E06 1772122_303_C10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_303_B07 1772122_305_H04 1772122_306_D10 1772122_315_C12 1772122_303_A08 1772122_303_H02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_C06 1772122_303_D02 1772122_303_E08 1772122_303_F04 1772122_303_A10 1772122_305_G11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_A01 1772122_305_F10 1772122_300_G03 1772122_305_A10 1772122_305_G08 1772122_303_G08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_A03 1772122_303_A07 1772122_299_D12 1772122_305_G09 1772122_305_E10 1772122_298_F07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_E08 1772122_262_F01 1772122_300_G05 1772122_305_H12 1772122_298_C06 1772122_300_H03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_A04 1772122_305_A12 1772122_303_F03 1772122_305_H10 1772122_305_A05 1772122_305_H08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_G04 1772122_305_C10 1772122_315_D11 1772122_305_C01 1772122_306_B10 1772122_305_B07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_B02 1772122_303_C11 1772122_305_F01 1772122_303_E02 1772122_303_E09 1772122_315_C07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_A09 1772122_303_B05 1772122_306_C04 1772122_305_H06 1772122_306_C02 1772122_315_E02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_A04 1772122_306_H05 1772122_306_E11 1772122_302_E08 1772122_306_G11 1772122_182_F01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_B09 1772122_298_B01 1772122_315_C06 1772122_303_G07 1772122_306_B06 1772122_305_E09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_E05 1772122_306_F07 1772122_315_F05 1772122_315_B12 1772122_302_E02 1772122_306_C08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_G05 1772122_315_D07 1772122_315_F06 1772122_315_E04 1772122_305_D09 1772122_301_A12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_303_F09 1772122_315_E12 1772122_303_F08 1772122_315_F08 1772122_305_A11 1772122_315_C05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_303_G01 1772122_303_H03 1772122_315_B08 1772122_305_D10 1772122_305_B10 1772122_315_H12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_315_G08 1772122_305_A07 1772122_315_B10 1772122_306_F10 1772122_306_C01 1772122_315_G01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_306_D01 1772122_306_E01 1772122_306_D07 1772122_306_C12 1772122_305_B06 1772122_305_D06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_305_H01 1772122_315_G04 1772122_305_F04 1772122_305_F02 1772122_303_A04 1772122_299_G08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_C11 1772122_301_H11 1772122_301_E04 1772122_301_E12 1772122_301_E05 1772122_301_D01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_A07 1772122_301_F08 1772122_300_D08 1772122_299_E04 1772122_300_A02 1772122_299_G02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_H01 1772122_298_G07 1772122_299_A02 1772122_181_F01 1772122_180_A12 1772122_302_G02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_E11 1772122_298_E08 1772122_302_E03 1772122_300_B09 1772122_182_C12 1772122_181_A04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_A02 1772122_180_E04 1772122_181_C03 1772122_181_D01 1772122_181_B05 1772122_180_G08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_G11 1772122_302_F09 1772122_300_G12 1772122_298_D06 1772122_299_H05 1772122_180_B03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_G07 1772122_298_E01 1772122_298_G03 1772122_302_A12 1772122_181_D12 1772122_299_E03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_D07 1772122_298_H02 1772122_181_H05 1772122_181_E12 1772122_302_F12 1772122_299_G09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_B10 1772122_182_A07 1772122_298_F11 1772122_181_G07 1772122_182_B06 1772122_299_G03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_A10 1772122_180_B02 1772122_298_E07 1772122_300_C08 1772122_298_D02 1772122_299_A12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_B04 1772122_298_A06 1772122_181_E03 1772122_299_B03 1772122_181_C11 1772122_181_H04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_D01 1772122_302_E06 1772122_301_G03 1772122_302_A05 1772122_300_H07 1772122_301_B02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_G03 1772122_301_C03 1772122_180_D05 1772122_180_D08 1772122_299_C12 1772122_302_H06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_E12 1772122_298_B08 1772122_302_G12 1772122_300_E01 1772122_300_B10 1772122_180_G12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_F07 1772122_180_B12 1772122_182_F08 1772122_302_E04 1772122_298_F06 1772122_300_C04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_H01 1772122_302_D02 1772122_182_E05 1772122_182_E10 1772122_182_B07 1772122_180_A03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_F04 1772122_299_D05 1772122_182_F02 1772122_299_E12 1772122_298_A05 1772122_298_B02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_F08 1772122_298_C03 1772122_300_G10 1772122_182_E12 1772122_298_B04 1772122_301_E06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_H09 1772122_302_A10 1772122_181_F12 1772122_302_H10 1772122_302_H05 1772122_181_D11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_G08 1772122_298_H11 1772122_180_G07 1772122_180_A10 1772122_298_D08 1772122_299_B01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_F05 1772122_302_B07 1772122_180_E06 1772122_301_A10 1772122_182_A11 1772122_180_G10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_D02 1772122_301_F01 1772122_181_A06 1772122_181_B06 1772122_182_F04 1772122_181_F09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_D03 1772122_300_F06 1772122_300_D06 1772122_299_D02 1772122_301_G02 1772122_299_H08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_C03 1772122_299_B09 1772122_301_A03 1772122_300_H01 1772122_300_C10 1772122_300_A09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_H03 1772122_299_C06 1772122_182_E11 1772122_300_B08 1772122_300_C05 1772122_300_E05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_C05 1772122_300_E08 1772122_181_G11 1772122_300_G11 1772122_300_D05 1772122_300_A04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_B02 1772122_302_A03 1772122_180_G05 1772122_300_F08 1772122_182_E03 1772122_299_G04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_A04 1772122_181_E01 1772122_302_C06 1772122_298_B11 1772122_182_F12 1772122_180_H02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_A01 1772122_180_C09 1772122_180_D06 1772122_302_B02 1772122_300_G01 1772122_298_E04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_301_C09 1772122_301_E03 1772122_180_C04 1772122_299_F08 1772122_180_H08 1772122_298_D03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_D11 1772122_180_A08 1772122_181_A12 1772122_180_C12 1772122_182_B01 1772122_180_H07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_E01 1772122_181_C04 1772122_180_D10 1772122_181_B10 1772122_182_F03 1772122_180_B07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_C06 1772122_181_G06 1772122_181_H03 1772122_181_F06 1772122_181_D05 1772122_299_E05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_E06 1772122_302_C10 1772122_182_H01 1772122_181_C08 1772122_299_H09 1772122_182_B08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_H03 1772122_181_B11 1772122_180_C01 1772122_182_C11 1772122_182_B05 1772122_302_A09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_C01 1772122_299_C08 1772122_299_G01 1772122_182_E07 1772122_181_H02 1772122_181_D09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_G09 1772122_181_D03 1772122_181_H07 1772122_298_C07 1772122_182_D01 1772122_302_H12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_299_A03 1772122_181_H10 1772122_180_E12 1772122_180_B05 1772122_181_H12 1772122_180_E08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_F10 1772122_180_F08 1772122_181_F03 1772122_299_E01 1772122_181_B01 1772122_180_F03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_300_G02 1772122_182_B02 1772122_181_F02 1772122_181_B12 1772122_182_D06 1772122_181_F11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_E02 1772122_180_C03 1772122_180_B06 1772122_180_D09 1772122_182_H08 1772122_298_C08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_C10 1772122_180_D03 1772122_182_A05 1772122_299_H02 1772122_180_B01 1772122_299_C04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_180_B08 1772122_181_F04 1772122_182_B11 1772122_298_G05 1772122_181_E04 1772122_181_D02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_182_A06 1772122_181_A05 1772122_181_B02 1772122_182_D05 1772122_181_F07 1772122_181_H08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_181_C01 1772122_182_C08 1772122_180_F02 1772122_181_G09 1772122_181_E07 1772122_180_F11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_302_B01 1772122_180_F01 1772122_180_E03 1772122_181_A07 1772122_299_E10 1772122_181_B08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_298_A02 1772122_299_A09 1772122_182_B09 1772122_182_G08 1772122_181_F10 1772122_204_D02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_B03 1772122_206_G04 1772122_204_E03 1772122_205_H04 1772122_206_A02 1772122_204_G07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_A03 1772122_206_H06 1772122_205_C06 1772122_206_F08 1772122_205_D08 1772122_204_G01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_E11 1772122_205_B01 1772122_204_E08 1772122_262_E02 1772122_205_H11 1772122_205_E04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_B09 1772122_262_E10 1772122_204_B05 1772122_206_B04 1772122_262_C09 1772122_206_B09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_B11 1772122_204_A06 1772122_205_G05 1772122_205_C01 1772122_262_E07 1772122_204_A08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_H08 1772122_206_F11 1772122_262_H07 1772122_262_B09 1772122_205_B07 1772122_206_E11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_H11 1772122_205_D09 1772122_204_F03 1772122_204_C10 1772122_206_C12 1772122_206_F01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_D02 1772122_206_H03 1772122_205_A07 1772122_206_E08 1772122_206_A06 1772122_206_E06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_D06 1772122_205_H02 1772122_262_F09 1772122_206_F03 1772122_262_C10 1772122_204_C09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_G12 1772122_262_C07 1772122_205_A08 1772122_206_H04 1772122_205_A03 1772122_204_E04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_G08 1772122_204_A02 1772122_262_G02 1772122_205_F07 1772122_205_H01 1772122_206_H07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_H01 1772122_205_C11 1772122_262_H06 1772122_205_C09 1772122_204_A09 1772122_206_C02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_C08 1772122_204_F07 1772122_204_F11 1772122_204_B06 1772122_262_C02 1772122_205_F11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_D02 1772122_204_C07 1772122_205_D05 1772122_204_A05 1772122_206_G07 1772122_206_A09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_G10 1772122_206_A12 1772122_262_A09 1772122_205_E10 1772122_206_B01 1772122_206_D08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_A08 1772122_325_D10 1772122_205_A12 1772122_204_B03 1772122_204_F12 1772122_205_B12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_B10 1772122_204_A01 1772122_205_F12 1772122_205_C05 1772122_204_E10 1772122_262_H02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_G07 1772122_204_H07 1772122_204_A10 1772122_262_D03 1772122_262_H04 1772122_262_B05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_B01 1772122_204_D06 1772122_263_C06 1772122_204_G03 1772122_204_D05 1772122_262_G08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_C12 1772122_262_A04 1772122_262_H03 1772122_206_B08 1772122_204_D12 1772122_262_E03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_F02 1772122_206_G03 1772122_206_G09 1772122_205_H12 1772122_262_F12 1772122_204_G09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_F02 1772122_206_C10 1772122_204_D01 1772122_206_C07 1772122_206_F12 1772122_262_C08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_G01 1772122_206_F05 1772122_205_E02 1772122_262_H08 1772122_326_D09 1772122_262_D08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_F01 1772122_206_F04 1772122_206_E09 1772122_206_E10 1772122_204_F09 1772122_205_H09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_G11 1772122_206_C06 1772122_204_D03 1772122_206_C04 1772122_262_A11 1772122_206_E07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_H06 1772122_262_F11 1772122_204_D09 1772122_205_H05 1772122_206_B12 1772122_204_B02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_B07 1772122_205_C07 1772122_205_B08 1772122_262_C12 1772122_206_A10 1772122_206_D04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_F03 1772122_206_D11 1772122_204_A12 1772122_205_A04 1772122_205_F05 1772122_205_B04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_H05 1772122_206_C03 1772122_204_A11 1772122_262_E08 1772122_262_B10 1772122_206_G06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_G04 1772122_262_D05 1772122_206_F06 1772122_206_E12 1772122_204_C04 1772122_262_G04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_C11 1772122_205_G10 1772122_204_E09 1772122_262_B07 1772122_204_C03 1772122_206_A04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_A04 1772122_205_H03 1772122_204_D04 1772122_205_B09 1772122_205_F09 1772122_204_F05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_A09 1772122_205_E08 1772122_262_C05 1772122_262_G06 1772122_262_F05 1772122_262_F10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_B10 1772122_205_G03 1772122_206_A05 1772122_205_D06 1772122_206_E03 1772122_206_B07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_A03 1772122_262_B08 1772122_206_E04 1772122_205_D04 1772122_262_D09 1772122_205_A01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_B01 1772122_206_H09 1772122_205_G01 1772122_206_D05 1772122_204_B08 1772122_262_D11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_B03 1772122_205_G12 1772122_206_H01 1772122_205_C08 1772122_262_G12 1772122_204_C02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_A01 1772122_263_B05 1772122_206_B02 1772122_262_F07 1772122_325_B07 1772122_205_C10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_G05 1772122_205_D11 1772122_204_E01 1772122_262_B06 1772122_262_E05 1772122_206_C11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_D08 1772122_204_E02 1772122_205_D12 1772122_262_G03 1772122_205_A11 1772122_205_D07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_F08 1772122_205_C03 1772122_262_G11 1772122_262_D04 1772122_205_H10 1772122_262_B03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_204_B12 1772122_205_A10 1772122_262_D07 1772122_205_F10 1772122_204_G06 1772122_204_E11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_205_E12 1772122_206_E05 1772122_206_C05 1772122_205_C12 1772122_204_E07 1772122_205_F06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_A12 1772122_206_H11 1772122_204_E06 1772122_205_B06 1772122_262_B11 1772122_262_C11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_262_A08 1772122_206_G08 1772122_262_B04 1772122_205_C04 1772122_205_B02 1772122_206_B10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_206_D12 1772122_262_E06 1772122_262_D01 1772122_262_F06 1772122_325_C11 1772122_325_B02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_A09 1772122_205_E03 1772122_326_F06 1772122_324_A01 1772122_326_E06 1772122_326_C12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_D09 1772122_324_C12 1772122_326_C06 1772122_324_D04 1772122_263_A07 1772122_326_G06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_C08 1772122_326_G04 1772122_206_G02 1772122_325_G01 1772122_263_F06 1772122_263_E07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_F05 1772122_324_D10 1772122_263_F08 1772122_325_A10 1772122_206_D03 1772122_263_A05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_D01 1772122_324_C05 1772122_262_A10 1772122_263_A02 1772122_326_A07 1772122_324_B12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_F01 1772122_326_B02 1772122_324_A03 1772122_262_A06 1772122_204_H02 1772122_263_B07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_E08 1772122_326_B12 1772122_325_E09 1772122_263_C11 1772122_325_A07 1772122_263_B01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_C07 1772122_263_C03 1772122_326_D11 1772122_263_D12 1772122_326_F01 1772122_325_B08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_G10 1772122_326_B03 1772122_324_C10 1772122_325_A02 1772122_325_D04 1772122_263_C02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_G01 1772122_324_E01 1772122_325_F02 1772122_324_E04 1772122_325_D02 1772122_263_E11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_A04 1772122_325_C07 1772122_263_A12 1772122_325_E03 1772122_326_E12 1772122_325_A12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_F12 1772122_325_D09 1772122_325_B09 1772122_324_C09 1772122_325_G04 1772122_324_B03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_D07 1772122_324_E03 1772122_326_A04 1772122_326_F03 1772122_326_C05 1772122_325_F09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_G07 1772122_324_B11 1772122_263_F04 1772122_324_E12 1772122_326_E11 1772122_263_C04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_G10 1772122_262_B02 1772122_263_H04 1772122_206_C08 1772122_324_D08 1772122_325_C12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_D06 1772122_263_B11 1772122_325_C03 1772122_326_E10 1772122_325_B03 1772122_325_A11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_A01 1772122_325_D06 1772122_326_D10 1772122_325_A04 1772122_263_E03 1772122_324_E02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_B01 1772122_263_B02 1772122_325_E05 1772122_325_A09 1772122_326_F05 1772122_263_D02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_F07 1772122_204_H03 1772122_263_H03 1772122_324_A12 1772122_324_C06 1772122_263_B04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_C12 1772122_324_A05 1772122_325_D07 1772122_326_G05 1772122_324_E05 1772122_324_A09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_C07 1772122_326_C04 1772122_263_E08 1772122_263_A10 1772122_324_A08 1772122_263_D05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_A07 1772122_325_F08 1772122_326_F09 1772122_325_G07 1772122_324_C04 1772122_326_H02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_E03 1772122_263_B03 1772122_263_A09 1772122_326_E08 1772122_325_B01 1772122_263_E05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_A03 1772122_263_D10 1772122_263_H06 1772122_325_C08 1772122_326_A05 1772122_263_C08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_B10 1772122_263_H05 1772122_325_B11 1772122_206_H08 1772122_204_G12 1772122_263_C10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_E06 1772122_263_H11 1772122_263_D07 1772122_263_G08 1772122_326_G11 1772122_324_B04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_E09 1772122_263_D03 1772122_326_A03 1772122_326_A08 1772122_326_F10 1772122_324_E09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_E06 1772122_325_H01 1772122_326_B05 1772122_325_D08 1772122_263_D08 1772122_324_C03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_A10 1772122_326_H05 1772122_324_D11 1772122_326_H03 1772122_326_A02 1772122_263_F10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_A11 1772122_326_H12 1772122_325_A05 1772122_326_D01 1772122_324_E08 1772122_325_C09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_A03 1772122_263_D11 1772122_324_C11 1772122_263_H10 1772122_324_A10 1772122_325_C05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_G03 1772122_326_E07 1772122_263_F11 1772122_326_C10 1772122_326_G08 1772122_326_D05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_H11 1772122_325_H08 1772122_326_B11 1772122_326_B07 1772122_325_B12 1772122_263_A04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_C07 1772122_326_A12 1772122_324_A11 1772122_324_B07 1772122_326_C09 1772122_325_E06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_F01 1772122_324_D02 1772122_325_E04 1772122_324_A06 1772122_324_B05 1772122_263_G03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_324_E07 1772122_324_B08 1772122_324_A02 1772122_324_C01 1772122_326_H04 1772122_325_C04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_326_C01 1772122_324_C02 1772122_324_B09 1772122_325_G08 1772122_263_E04 1772122_324_B06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_325_A06 1772122_326_D07 1772122_324_D06 1772122_324_D05 1772122_324_B02 1772122_324_B10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_263_E10 1772122_263_F01 1772122_310_B10 1772122_311_D04 1772122_311_B04 1772122_310_D05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_E09 1772122_311_A03 1772122_312_E01 1772122_312_B08 1772122_314_F11 1772122_312_E02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_E12 1772122_311_C02 1772122_312_G11 1772122_310_F11 1772122_314_C07 1772122_310_B07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_B03 1772122_312_E03 1772122_312_D01 1772122_312_C09 1772122_314_D05 1772122_314_H06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_C04 1772122_312_H07 1772122_311_F07 1772122_312_A06 1772122_312_A09 1772122_310_B06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_D10 1772122_312_F08 1772122_310_F02 1772122_314_F12 1772122_312_E06 1772122_314_A07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_H09 1772122_312_D06 1772122_314_A05 1772122_310_H06 1772122_310_C12 1772122_311_F11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_D07 1772122_311_E11 1772122_311_F12 1772122_314_A06 1772122_314_G09 1772122_312_B11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_B03 1772122_314_B07 1772122_312_D05 1772122_314_G06 1772122_314_H02 1772122_312_C10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_E12 1772122_314_B12 1772122_310_E07 1772122_314_D11 1772122_311_C12 1772122_310_E03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_G10 1772122_314_C04 1772122_312_H02 1772122_312_C01 1772122_314_A04 1772122_311_A05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_B05 1772122_310_D08 1772122_310_A03 1772122_312_F12 1772122_310_F09 1772122_311_A06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_F01 1772122_311_G09 1772122_312_E09 1772122_312_C08 1772122_310_C09 1772122_312_H06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_D12 1772122_311_B09 1772122_312_D12 1772122_314_F10 1772122_312_B09 1772122_310_G06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_F04 1772122_312_F10 1772122_310_H05 1772122_312_B04 1772122_310_G10 1772122_314_C10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_F01 1772122_314_E12 1772122_314_H10 1772122_312_E12 1772122_314_F05 1772122_312_F01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_G08 1772122_312_A11 1772122_310_F10 1772122_310_E10 1772122_312_C11 1772122_314_G11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_F07 1772122_314_E07 1772122_314_C08 1772122_310_G03 1772122_314_A12 1772122_311_C01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_D08 1772122_310_A04 1772122_314_E02 1772122_312_B06 1772122_312_D07 1772122_312_B01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_F09 1772122_314_E03 1772122_314_G01 1772122_312_B07 1772122_312_F06 1772122_310_G01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_G02 1772122_312_G07 1772122_314_A08 1772122_310_A05 1772122_314_A02 1772122_312_E08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_A12 1772122_310_E04 1772122_310_H09 1772122_311_D09 1772122_311_H06 1772122_311_G04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_H04 1772122_310_G02 1772122_310_E05 1772122_311_C09 1772122_310_G07 1772122_311_E09 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_F12 1772122_310_F04 1772122_311_G10 1772122_311_D06 1772122_311_D02 1772122_310_E08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_D12 1772122_311_B05 1772122_310_E02 1772122_310_F05 1772122_310_C10 1772122_311_F04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_C03 1772122_310_A02 1772122_310_D09 1772122_311_C10 1772122_311_D03 1772122_311_G07 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_E11 1772122_311_H05 1772122_311_E04 1772122_311_C05 1772122_311_G11 1772122_311_E06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_G12 1772122_311_A10 1772122_311_A07 1772122_310_D02 1772122_311_H03 1772122_310_C01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_A07 1772122_310_D06 1772122_311_A01 1772122_311_B01 1772122_310_H01 1772122_310_A12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_B11 1772122_310_A01 1772122_311_D11 1772122_310_H02 1772122_310_H12 1772122_311_F05 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_A12 1772122_310_A09 1772122_311_H11 1772122_311_E05 1772122_311_A09 1772122_314_H08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_F05 1772122_312_A07 1772122_310_H04 1772122_310_D11 1772122_310_A10 1772122_310_H10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_G05 1772122_310_D10 1772122_314_C05 1772122_312_F02 1772122_310_B09 1772122_310_F06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_E06 1772122_311_D10 1772122_311_E03 1772122_310_G04 1772122_311_B07 1772122_311_C11 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_B04 1772122_312_F04 1772122_314_D03 1772122_310_C05 1772122_314_B06 1772122_310_D01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_H07 1772122_314_C12 1772122_314_C06 1772122_312_H11 1772122_312_C03 1772122_312_H12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_H08 1772122_314_E04 1772122_312_H05 1772122_310_C06 1772122_312_G06 1772122_314_E08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_G05 1772122_314_D09 1772122_314_B05 1772122_314_B08 1772122_314_A10 1772122_312_D08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_C07 1772122_312_D10 1772122_312_B02 1772122_312_C06 1772122_312_G04 1772122_314_F02 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_H04 1772122_312_A03 1772122_314_C09 1772122_314_H03 1772122_314_E11 1772122_314_H12 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_E04 1772122_312_G12 1772122_314_H05 1772122_314_D04 1772122_312_F11 1772122_310_D03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_D04 1772122_311_E08 1772122_310_B11 1772122_311_E10 1772122_312_E10 1772122_310_C04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_A04 1772122_310_B02 1772122_314_G04 1772122_311_H07 1772122_312_D03 1772122_314_A03 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_D04 1772122_312_D02 1772122_314_H11 1772122_311_B06 1772122_312_E05 1772122_314_F06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_B11 1772122_312_G02 1772122_312_C05 1772122_311_F10 1772122_311_B12 1772122_314_E06 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_C01 1772122_312_D11 1772122_310_F01 1772122_314_E05 1772122_312_H10 1772122_311_G01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_C03 1772122_312_F09 1772122_311_C08 1772122_314_B10 1772122_310_B03 1772122_311_D08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_310_A11 1772122_312_H03 1772122_311_F02 1772122_310_G12 1772122_311_H01 1772122_311_A04 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_G06 1772122_312_G09 1772122_314_C11 1772122_312_C02 1772122_312_B12 1772122_314_B01 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_D07 1772122_311_A08 1772122_314_B09 1772122_312_D09 1772122_311_B10 1772122_310_G08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_D12 1772122_310_B04 1772122_310_C02 1772122_311_H12 1772122_310_A08 1772122_310_B08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_311_A02 1772122_314_B02 1772122_311_B02 1772122_310_F08 1772122_311_F08 1772122_314_F08 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_312_A02 1772122_311_C04 1772122_314_E01 1772122_311_H10 1772122_314_G12 1772122_312_A10 
#>              NA              NA              NA              NA              NA              NA 
#> 1772122_314_G08 1772122_311_F06 1772122_312_E11 1772122_310_H11 1772122_311_H02 
#>              NA              NA              NA              NA              NA

Top rows heatmap

Heatmaps of the top rows:

top_rows_heatmap(res_rh)

plot of chunk top-rows-heatmap

Top rows on each node:

top_rows_overlap(res_rh, method = "upset")

plot of chunk top-rows-overlap

UMAP plot

UMAP plot which shows how samples are separated.

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 224),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 224),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-1

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 314),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 314),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-2

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 314),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 314),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-3

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 393),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 393),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-4

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 466),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 466),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-5

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 498),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 498),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-6

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 552),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 552),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-7

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 911),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 911),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-8

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 940),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 940),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-9

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 990),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 990),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-10

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1014),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1014),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-11

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1396),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1396),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-12

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1448),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1448),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-13

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1545),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1545),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-14

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1622),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1622),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-15

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1692),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 1692),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-16

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 2435),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 2435),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-17

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 3961),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 3961),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-18

par(mfrow = c(1, 2))
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 5526),
    method = "UMAP", top_value_method = "SD", top_n = 1200, scale_rows = FALSE)
dimension_reduction(res_rh, merge_node = merge_node_param(min_n_signatures = 5526),
    method = "UMAP", top_value_method = "ATC", top_n = 1200, scale_rows = TRUE)

plot of chunk tab-dimension-reduction-by-depth-19

Signature heatmap

Signatures on the heatmap are the union of all signatures found on every node on the hierarchy. The number of k-means on rows are automatically selected by the function.

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 224))

plot of chunk tab-get-signatures-from-hierarchical-partition-1

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 314))

plot of chunk tab-get-signatures-from-hierarchical-partition-2

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 314))

plot of chunk tab-get-signatures-from-hierarchical-partition-3

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 393))

plot of chunk tab-get-signatures-from-hierarchical-partition-4

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 466))

plot of chunk tab-get-signatures-from-hierarchical-partition-5

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 498))

plot of chunk tab-get-signatures-from-hierarchical-partition-6

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 552))

plot of chunk tab-get-signatures-from-hierarchical-partition-7

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 911))

plot of chunk tab-get-signatures-from-hierarchical-partition-8

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 940))

plot of chunk tab-get-signatures-from-hierarchical-partition-9

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 990))

plot of chunk tab-get-signatures-from-hierarchical-partition-10

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 1014))

plot of chunk tab-get-signatures-from-hierarchical-partition-11

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 1396))

plot of chunk tab-get-signatures-from-hierarchical-partition-12

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 1448))

plot of chunk tab-get-signatures-from-hierarchical-partition-13

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 1545))

plot of chunk tab-get-signatures-from-hierarchical-partition-14

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 1622))

plot of chunk tab-get-signatures-from-hierarchical-partition-15

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 1692))

plot of chunk tab-get-signatures-from-hierarchical-partition-16

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 2435))

plot of chunk tab-get-signatures-from-hierarchical-partition-17

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 3961))

plot of chunk tab-get-signatures-from-hierarchical-partition-18

get_signatures(res_rh, merge_node = merge_node_param(min_n_signatures = 5526))
#> Error in names(x) <- value: 'names' attribute [1] must be the same length as the vector [0]

Compare signatures from different nodes:

compare_signatures(res_rh, verbose = FALSE)

plot of chunk unnamed-chunk-24

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs. Note it only works on every node and the final signatures are the union of all signatures of all nodes.

# code only for demonstration
# e.g. to show the top 500 most significant rows on each node.
tb = get_signature(res_rh, top_signatures = 500)

Test to known annotations

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 224))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 314))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 314))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 393))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 466))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 498))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 552))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 911))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 940))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 990))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 1014))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 1396))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 1448))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 1545))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 1622))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 1692))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 2435))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 3961))
#>       Cell_type Timepoint
#> class         0         0
test_to_known_factors(res_rh, merge_node = merge_node_param(min_n_signatures = 5526))
#>       Cell_type Timepoint
#> class        NA        NA

Results for each node


Node0

Child nodes: Node01 , Node02 , Node03 .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0"]

A summary of res and all the functions that can be applied to it:

res
#> A 'DownSamplingConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 11181 rows and 500 columns, randomly sampled from 1715 columns.
#>   Top rows (1042) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 4.
#> 
#> Following methods can be applied to this 'DownSamplingConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.986       0.994          0.501 0.500   0.500
#> 3 3 1.000           0.984       0.994          0.258 0.844   0.696
#> 4 4 0.981           0.946       0.977          0.128 0.876   0.685

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 4
#> attr(,"optional")
#> [1] 2 3

There is also optional best \(k\) = 2 3 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

get_classes(res, k = 2)
#>                 class     p
#> 1772122_301_C02     1 0.000
#> 1772122_180_E05     1 0.000
#> 1772122_300_H02     1 0.000
#> 1772122_180_B09     1 0.000
#> 1772122_180_G04     1 0.000
#> 1772122_182_E09     1 0.000
#> 1772122_302_C04     1 0.000
#> 1772122_302_D11     1 0.000
#> 1772122_180_C11     1 0.000
#> 1772122_298_A07     1 0.000
#> 1772122_299_A11     1 0.000
#> 1772122_298_D09     1 0.000
#> 1772122_180_A06     1 0.000
#> 1772122_302_G06     1 0.000
#> 1772122_182_D07     1 0.000
#> 1772122_182_D02     1 0.000
#> 1772122_300_D04     1 0.000
#> 1772122_300_E06     1 0.000
#> 1772122_300_F10     1 0.000
#> 1772122_301_G12     1 0.000
#> 1772122_301_F09     1 0.000
#> 1772122_301_C12     1 0.000
#> 1772122_301_F07     1 0.000
#> 1772122_301_F05     1 0.000
#> 1772122_301_D08     1 0.000
#> 1772122_301_G10     1 0.000
#> 1772122_301_C04     1 0.000
#> 1772122_301_G07     1 0.000
#> 1772122_301_B08     1 0.000
#> 1772122_301_G04     1 0.000
#> 1772122_298_G11     1 0.000
#> 1772122_301_H03     1 0.000
#> 1772122_302_G07     1 0.000
#> 1772122_301_D10     1 0.000
#> 1772122_300_F01     1 0.000
#> 1772122_299_H11     1 0.000
#> 1772122_299_B05     1 0.000
#> 1772122_301_C07     1 0.000
#> 1772122_298_C12     1 0.498
#> 1772122_300_A05     1 0.000
#> 1772122_300_H06     1 0.000
#> 1772122_301_E07     1 0.000
#> 1772122_301_A02     1 0.000
#> 1772122_299_F02     1 0.000
#> 1772122_300_D02     1 0.000
#> 1772122_301_H05     1 0.000
#> 1772122_181_C12     1 0.000
#> 1772122_180_H06     1 0.000
#> 1772122_302_D07     1 0.000
#> 1772122_302_A08     1 0.000
#> 1772122_180_H12     1 0.000
#> 1772122_180_H10     1 0.249
#> 1772122_182_G02     1 0.000
#> 1772122_181_E09     1 0.000
#> 1772122_299_F06     1 0.000
#> 1772122_302_H11     1 0.000
#> 1772122_180_G03     1 0.000
#> 1772122_301_H12     1 0.000
#> 1772122_300_D03     1 0.000
#> 1772122_299_C07     1 0.000
#> 1772122_182_E08     1 0.000
#> 1772122_302_G08     1 0.000
#> 1772122_301_A04     1 0.000
#> 1772122_302_D04     1 0.000
#> 1772122_300_E11     1 0.000
#> 1772122_300_C01     1 0.000
#> 1772122_181_A03     1 0.000
#> 1772122_298_C11     1 0.000
#> 1772122_298_E09     1 0.000
#> 1772122_298_H07     1 0.000
#> 1772122_300_B12     1 0.000
#> 1772122_300_H08     1 0.000
#> 1772122_298_F03     1 0.000
#> 1772122_182_A09     1 0.000
#> 1772122_182_C09     1 0.000
#> 1772122_298_D10     1 0.000
#> 1772122_298_D05     1 0.000
#> 1772122_299_C01     1 0.000
#> 1772122_180_A02     1 0.000
#> 1772122_300_F05     1 0.000
#> 1772122_182_A10     1 0.000
#> 1772122_299_F10     1 0.000
#> 1772122_181_E05     1 0.000
#> 1772122_300_A12     1 0.000
#> 1772122_300_G04     1 0.000
#> 1772122_182_H12     1 0.000
#> 1772122_302_G10     1 0.000
#> 1772122_182_C06     1 0.000
#> 1772122_298_E06     1 0.000
#> 1772122_300_A01     1 0.000
#> 1772122_300_E03     1 0.000
#> 1772122_302_C05     1 0.000
#> 1772122_299_G06     1 0.000
#> 1772122_299_F09     1 0.000
#> 1772122_302_C12     1 0.000
#> 1772122_299_E07     1 0.000
#> 1772122_180_D02     1 0.000
#> 1772122_300_D09     1 0.000
#> 1772122_298_F09     1 0.751
#> 1772122_302_A11     1 0.000
#> 1772122_180_F06     1 0.000
#> 1772122_299_E09     1 0.000
#> 1772122_180_A05     1 0.000
#> 1772122_182_C05     1 0.000
#> 1772122_181_C05     1 0.000
#> 1772122_300_A06     1 0.000
#> 1772122_181_A02     1 0.000
#> 1772122_181_E11     1 0.000
#> 1772122_298_C05     1 0.000
#> 1772122_181_C07     1 0.000
#> 1772122_182_C02     1 0.000
#> 1772122_300_E10     1 0.000
#> 1772122_299_D06     1 0.000
#> 1772122_180_F09     1 0.000
#> 1772122_299_B07     1 0.249
#> 1772122_300_F04     1 0.000
#> 1772122_180_D12     1 0.000
#> 1772122_180_H11     1 0.000
#> 1772122_300_A10     1 0.000
#> 1772122_299_G05     1 0.000
#> 1772122_299_E06     1 0.000
#> 1772122_205_D01     2 0.000
#> 1772122_262_E04     2 0.000
#> 1772122_206_F10     2 0.000
#> 1772122_325_B06     2 0.000
#> 1772122_205_A05     2 0.000
#> 1772122_263_H07     2 0.000
#> 1772122_262_F04     2 0.000
#> 1772122_305_D11     2 1.000
#> 1772122_315_A07     1 0.747
#> 1772122_303_B02     2 0.253
#> 1772122_315_F04     2 0.000
#> 1772122_205_E06     2 0.502
#> 1772122_204_C06     2 0.000
#> 1772122_263_F12     2 0.000
#> 1772122_306_H07     1 0.249
#> 1772122_206_D10     1 0.000
#> 1772122_325_G03     1 1.000
#> 1772122_324_D12     2 0.000
#> 1772122_205_C02     2 0.000
#> 1772122_315_F02     1 0.000
#> 1772122_206_A11     2 1.000
#> 1772122_262_D12     2 0.000
#> 1772122_182_H11     1 0.000
#> 1772122_325_D01     1 1.000
#> 1772122_205_E01     2 0.000
#> 1772122_326_E02     2 0.000
#> 1772122_263_G09     1 0.249
#> 1772122_326_G02     1 1.000
#> 1772122_326_C11     2 0.000
#> 1772122_324_D01     2 0.000
#> 1772122_326_D08     2 0.000
#> 1772122_326_G12     1 1.000
#> 1772122_263_A11     2 0.000
#> 1772122_315_G09     2 0.751
#> 1772122_263_C01     2 0.000
#> 1772122_306_B03     2 1.000
#> 1772122_204_D11     2 0.000
#> 1772122_206_A03     2 0.000
#> 1772122_263_H09     1 1.000
#> 1772122_325_E01     2 0.000
#> 1772122_263_B06     2 0.000
#> 1772122_263_D06     1 1.000
#> 1772122_325_A08     1 1.000
#> 1772122_326_F04     2 0.000
#> 1772122_263_G11     1 1.000
#> 1772122_205_G06     2 1.000
#> 1772122_299_A07     1 0.000
#> 1772122_305_C05     2 1.000
#> 1772122_305_G06     2 0.751
#> 1772122_303_A03     1 0.000
#> 1772122_303_A05     1 0.000
#> 1772122_306_H11     2 0.000
#> 1772122_325_H09     2 0.000
#> 1772122_263_D04     2 0.000
#> 1772122_298_H05     1 0.000
#> 1772122_303_B12     1 0.000
#> 1772122_315_A11     2 1.000
#> 1772122_303_D05     1 0.000
#> 1772122_263_B12     2 0.000
#> 1772122_306_G01     2 1.000
#> 1772122_326_H08     1 1.000
#> 1772122_206_H10     1 0.000
#> 1772122_326_H07     2 0.000
#> 1772122_326_H10     2 0.000
#> 1772122_263_A01     1 1.000
#> 1772122_204_F08     2 0.000
#> 1772122_326_F11     2 0.000
#> 1772122_326_G10     1 1.000
#> 1772122_206_D01     2 1.000
#> 1772122_263_H02     1 0.751
#> 1772122_306_E02     1 0.000
#> 1772122_306_F05     2 0.000
#> 1772122_306_B12     2 0.000
#> 1772122_306_B07     2 1.000
#> 1772122_306_A12     2 1.000
#> 1772122_204_C01     2 0.000
#> 1772122_315_E03     1 0.249
#> 1772122_305_G07     1 0.000
#> 1772122_315_E08     2 1.000
#> 1772122_262_A07     2 0.253
#> 1772122_306_H02     1 0.000
#> 1772122_206_B06     2 0.000
#> 1772122_315_H08     2 1.000
#> 1772122_303_D08     1 0.000
#> 1772122_303_H07     1 0.000
#> 1772122_306_D05     1 0.000
#> 1772122_305_H05     1 0.000
#> 1772122_302_B03     1 0.000
#> 1772122_300_B03     1 0.000
#> 1772122_299_E02     1 0.000
#> 1772122_303_B01     1 0.498
#> 1772122_298_B10     1 0.000
#> 1772122_298_D07     1 0.000
#> 1772122_298_G09     1 0.000
#> 1772122_300_E07     1 0.000
#> 1772122_298_H12     1 0.000
#> 1772122_298_D11     1 0.000
#> 1772122_299_G12     1 0.000
#> 1772122_302_F05     1 0.000
#> 1772122_300_E09     1 0.000
#> 1772122_301_G09     1 0.253
#> 1772122_300_F02     1 0.000
#> 1772122_301_G11     1 0.000
#> 1772122_302_D05     1 0.000
#> 1772122_302_E11     1 0.000
#> 1772122_299_A05     1 0.000
#> 1772122_299_H06     1 0.000
#> 1772122_301_A01     1 0.000
#> 1772122_299_D04     1 0.000
#> 1772122_180_E07     1 0.000
#> 1772122_300_E02     1 0.000
#> 1772122_301_A09     1 0.000
#> 1772122_301_B05     1 0.000
#> 1772122_302_G09     1 0.249
#> 1772122_299_A06     1 0.000
#> 1772122_301_B12     1 0.000
#> 1772122_324_H10     1 0.000
#> 1772122_301_F03     1 0.000
#> 1772122_325_F03     2 0.000
#> 1772122_181_H01     1 0.000
#> 1772122_325_F05     1 0.000
#> 1772122_301_E02     1 0.000
#> 1772122_302_F11     1 0.000
#> 1772122_300_C06     1 0.502
#> 1772122_302_G04     1 0.000
#> 1772122_299_C05     1 0.000
#> 1772122_302_H08     1 0.000
#> 1772122_300_G08     1 0.000
#> 1772122_298_B07     2 1.000
#> 1772122_299_B02     1 0.000
#> 1772122_301_A05     1 0.000
#> 1772122_302_B11     1 0.000
#> 1772122_299_H04     1 0.000
#> 1772122_299_G07     1 0.000
#> 1772122_300_C09     1 0.249
#> 1772122_300_A03     1 0.000
#> 1772122_302_A02     1 0.000
#> 1772122_302_H07     1 0.249
#> 1772122_300_C07     1 0.000
#> 1772122_298_C02     1 0.000
#> 1772122_300_E12     1 0.000
#> 1772122_299_H12     1 0.000
#> 1772122_300_B04     1 0.000
#> 1772122_300_H05     1 0.000
#> 1772122_299_D09     1 0.000
#> 1772122_299_B04     1 0.000
#> 1772122_298_A09     1 0.000
#> 1772122_298_E02     1 0.000
#> 1772122_302_D06     1 0.000
#> 1772122_180_F12     1 0.000
#> 1772122_298_F02     1 0.000
#> 1772122_301_B11     1 0.000
#> 1772122_301_H01     1 0.000
#> 1772122_298_H08     2 1.000
#> 1772122_301_H06     1 0.000
#> 1772122_301_F02     1 0.000
#> 1772122_305_D01     1 0.000
#> 1772122_181_D10     1 0.000
#> 1772122_182_E04     1 0.000
#> 1772122_182_B12     1 0.000
#> 1772122_301_E01     1 0.000
#> 1772122_306_A11     2 0.751
#> 1772122_315_B01     1 0.000
#> 1772122_300_B05     1 0.000
#> 1772122_298_A01     1 0.000
#> 1772122_182_A01     1 0.000
#> 1772122_315_C10     2 0.253
#> 1772122_300_C12     1 0.000
#> 1772122_299_D11     1 0.000
#> 1772122_302_B05     1 0.000
#> 1772122_180_C08     1 0.000
#> 1772122_302_C08     1 0.000
#> 1772122_300_D10     1 0.000
#> 1772122_299_C10     1 0.000
#> 1772122_302_E12     1 0.000
#> 1772122_298_H04     1 0.000
#> 1772122_182_D09     1 0.000
#> 1772122_300_D07     1 0.000
#> 1772122_298_F12     1 0.000
#> 1772122_299_A01     1 0.000
#> 1772122_299_F12     1 0.000
#> 1772122_298_B05     1 0.000
#> 1772122_301_C01     1 0.000
#> 1772122_298_A08     1 0.000
#> 1772122_180_F05     1 0.000
#> 1772122_299_H10     1 0.000
#> 1772122_299_D01     1 0.000
#> 1772122_302_A01     1 0.000
#> 1772122_298_H10     1 0.000
#> 1772122_298_F05     1 0.000
#> 1772122_301_C06     1 0.000
#> 1772122_298_C04     1 0.000
#> 1772122_181_G05     1 0.249
#> 1772122_298_D04     1 0.000
#> 1772122_180_B10     1 0.000
#> 1772122_180_H04     1 0.000
#> 1772122_301_B03     1 0.000
#> 1772122_298_A11     1 0.000
#> 1772122_182_D04     1 0.000
#> 1772122_300_H10     1 0.000
#> 1772122_301_B06     1 0.000
#> 1772122_301_D06     1 0.000
#> 1772122_298_A03     1 0.000
#> 1772122_301_A11     1 0.000
#> 1772122_301_F06     1 0.000
#> 1772122_298_F04     1 0.000
#> 1772122_300_H12     1 0.000
#> 1772122_301_B07     1 0.000
#> 1772122_299_F04     1 0.000
#> 1772122_300_E04     1 0.000
#> 1772122_299_F11     1 0.000
#> 1772122_300_H09     1 0.000
#> 1772122_302_C02     1 0.000
#> 1772122_301_D05     1 0.000
#> 1772122_301_H04     1 0.000
#> 1772122_300_G06     1 0.000
#> 1772122_299_H07     1 0.000
#> 1772122_298_H06     1 0.000
#> 1772122_301_G06     1 0.000
#> 1772122_301_C10     1 0.000
#> 1772122_300_B11     1 0.000
#> 1772122_301_C08     1 0.000
#> 1772122_301_D07     1 0.000
#> 1772122_301_D04     1 0.000
#> 1772122_301_G05     1 0.000
#> 1772122_301_H09     1 0.000
#> 1772122_302_F02     1 0.000
#> 1772122_300_F11     1 0.000
#> 1772122_301_C11     1 0.000
#> 1772122_301_F11     1 0.000
#> 1772122_302_C11     1 0.000
#> 1772122_299_A08     1 0.000
#> 1772122_301_E10     1 0.000
#> 1772122_300_D11     1 0.000
#> 1772122_182_A12     1 0.000
#> 1772122_301_C05     1 0.000
#> 1772122_302_B09     1 0.000
#> 1772122_299_B10     1 0.000
#> 1772122_182_F09     1 0.000
#> 1772122_299_F03     1 0.000
#> 1772122_315_F03     2 1.000
#> 1772122_303_C09     1 0.000
#> 1772122_306_H10     2 0.751
#> 1772122_306_E09     1 0.249
#> 1772122_305_F05     2 0.249
#> 1772122_306_H04     2 0.502
#> 1772122_305_B03     1 0.000
#> 1772122_305_A01     1 0.000
#> 1772122_303_D10     2 0.249
#> 1772122_306_C10     1 0.000
#> 1772122_303_D01     1 0.000
#> 1772122_315_C01     2 0.249
#> 1772122_305_E08     2 0.249
#> 1772122_305_E03     2 0.249
#> 1772122_305_E12     1 0.751
#> 1772122_306_A04     2 0.000
#> 1772122_305_C02     2 1.000
#> 1772122_303_F12     1 0.502
#> 1772122_303_H08     2 1.000
#> 1772122_305_E06     2 0.498
#> 1772122_306_A10     2 0.751
#> 1772122_315_H03     2 1.000
#> 1772122_315_F01     2 1.000
#> 1772122_306_G06     2 0.000
#> 1772122_303_B09     2 1.000
#> 1772122_306_D12     1 0.498
#> 1772122_303_E07     1 0.000
#> 1772122_315_H07     2 1.000
#> 1772122_305_E04     2 0.000
#> 1772122_306_H06     2 0.751
#> 1772122_305_D04     2 0.747
#> 1772122_306_C09     1 0.000
#> 1772122_315_G10     2 1.000
#> 1772122_315_D06     2 0.000
#> 1772122_306_F01     2 0.751
#> 1772122_315_H06     2 0.502
#> 1772122_315_A05     2 0.000
#> 1772122_315_E10     2 0.000
#> 1772122_306_G04     2 0.249
#> 1772122_315_G06     2 0.751
#> 1772122_315_H10     2 0.000
#> 1772122_305_G10     1 0.751
#> 1772122_315_E05     2 0.751
#> 1772122_315_F10     1 0.000
#> 1772122_305_C11     2 1.000
#> 1772122_306_A08     2 0.000
#> 1772122_305_E05     2 1.000
#> 1772122_306_E12     2 0.000
#> 1772122_315_A06     2 0.000
#> 1772122_306_G09     1 0.249
#> 1772122_315_B05     1 0.249
#> 1772122_305_E01     2 0.249
#> 1772122_306_G05     2 0.000
#> 1772122_315_A10     2 1.000
#> 1772122_315_D04     2 0.000
#> 1772122_306_G03     2 0.000
#> 1772122_306_H08     1 0.751
#> 1772122_305_D08     2 0.751
#> 1772122_315_D05     2 0.498
#> 1772122_306_H03     1 0.249
#> 1772122_306_F08     2 0.751
#> 1772122_306_D03     2 0.000
#> 1772122_306_B04     2 0.249
#> 1772122_306_G07     2 0.000
#> 1772122_306_A07     1 0.000
#> 1772122_315_H11     2 1.000
#> 1772122_306_A03     2 1.000
#> 1772122_315_H02     2 1.000
#> 1772122_306_F12     2 0.253
#> 1772122_205_A06     2 0.498
#> 1772122_205_E05     2 0.000
#> 1772122_306_B11     2 0.000
#> 1772122_302_F01     1 0.000
#> 1772122_315_F11     2 0.498
#> 1772122_306_B09     2 0.498
#> 1772122_305_G02     1 0.751
#> 1772122_262_A05     1 1.000
#> 1772122_305_H09     1 0.249
#> 1772122_306_F11     1 0.000
#> 1772122_315_D12     2 0.000
#> 1772122_315_B11     1 0.000
#> 1772122_306_D02     2 0.000
#> 1772122_302_G01     1 0.000
#> 1772122_306_C11     1 0.000
#> 1772122_315_D08     1 0.249
#> 1772122_306_E08     2 0.502
#> 1772122_315_D09     2 0.000
#> 1772122_306_G12     2 0.000
#> 1772122_315_E01     2 0.000
#> 1772122_300_D12     1 0.000
#> 1772122_315_H09     2 0.000
#> 1772122_306_F06     2 0.000
#> 1772122_315_B07     2 0.000
#> 1772122_306_E07     1 0.751
#> 1772122_315_E11     2 0.000
#> 1772122_315_C03     2 0.502
#> 1772122_306_A02     1 0.498
#> 1772122_315_G12     1 1.000
#> 1772122_306_A06     1 0.000
#> 1772122_315_D10     2 0.498
#> 1772122_306_D11     1 0.253
#> 1772122_306_E10     1 0.751
#> 1772122_315_A12     2 0.751
#> 1772122_306_B05     1 0.000
#> 1772122_263_E12     2 0.000
#> 1772122_205_B05     1 1.000
#> 1772122_315_G07     2 0.000
#> 1772122_306_F04     1 0.253
#> 1772122_306_F02     2 0.751
#> 1772122_315_A03     1 1.000
#> 1772122_315_H01     1 0.000
#> 1772122_302_G11     1 0.000
#> 1772122_315_B03     1 0.502
#> 1772122_306_G02     2 0.502
#> 1772122_315_F09     2 0.000
#> 1772122_306_D08     2 0.751
#> 1772122_315_F12     2 0.751
#> 1772122_303_C07     2 0.502
#> 1772122_305_D02     2 1.000
#> 1772122_305_E07     2 0.000
#> 1772122_305_B09     2 0.502
#> 1772122_303_C04     2 0.000
#> 1772122_303_G03     2 1.000
#> 1772122_305_F11     2 1.000
#> 1772122_315_F07     2 0.000
#> 1772122_306_F09     2 0.000
#> 1772122_305_B12     2 0.751
#> 1772122_305_H02     1 0.747
#> 1772122_305_C04     2 0.000
#> 1772122_305_H03     2 1.000
#> 1772122_305_A06     2 0.249
#> 1772122_303_C08     2 0.751
#> 1772122_303_C01     2 1.000
#> 1772122_303_G02     2 1.000
#> 1772122_303_A06     2 0.253
#> 1772122_315_E06     2 0.000
#> 1772122_303_C10     2 0.502
#> 1772122_303_B07     2 1.000
#> 1772122_305_H04     1 0.000
#> 1772122_306_D10     2 0.000
#> 1772122_315_C12     1 0.000
#> 1772122_303_A08     1 0.249
#> 1772122_303_H02     2 1.000
#> 1772122_305_C06     2 0.498
#> 1772122_303_D02     2 1.000
#> 1772122_303_E08     2 0.751
#> 1772122_303_F04     1 0.000
#> 1772122_303_A10     1 0.000
#> 1772122_305_G11     2 0.249
#> 1772122_306_A01     2 0.000
#> 1772122_305_F10     2 0.000
#> 1772122_300_G03     1 0.000
#> 1772122_305_A10     1 0.751
#> 1772122_305_G08     2 1.000
#> 1772122_303_G08     1 0.747
#> 1772122_305_A03     2 1.000
#> 1772122_303_A07     2 0.249
#> 1772122_299_D12     1 0.000
#> 1772122_305_G09     1 0.000
#> 1772122_305_E10     1 0.249
#> 1772122_298_F07     1 0.000
#> 1772122_301_E08     1 0.000
#> 1772122_262_F01     1 0.249
#> 1772122_300_G05     1 0.000
#> 1772122_305_H12     2 0.000
#> 1772122_298_C06     1 0.000
#> 1772122_300_H03     1 0.000
#> 1772122_305_A04     1 0.000
#> 1772122_305_A12     2 1.000
#> 1772122_303_F03     2 0.249
#> 1772122_305_H10     2 1.000
#> 1772122_305_A05     1 0.000
#> 1772122_305_H08     2 0.000
#> 1772122_305_G04     1 0.000
#> 1772122_305_C10     2 0.000
#> 1772122_315_D11     2 0.253
#> 1772122_305_C01     2 0.747
#> 1772122_306_B10     1 0.253
#> 1772122_305_B07     2 0.000
#> 1772122_305_B02     2 0.249
#> 1772122_303_C11     1 0.000
#> 1772122_305_F01     2 0.000
#> 1772122_303_E02     2 0.249
#> 1772122_303_E09     2 0.000
#> 1772122_315_C07     1 0.000
#> 1772122_306_A09     2 0.000
#> 1772122_303_B05     2 0.751
#> 1772122_306_C04     2 0.000
#> 1772122_305_H06     2 0.502
#> 1772122_306_C02     2 0.000
#> 1772122_315_E02     2 0.000
#> 1772122_315_A04     2 0.000
#> 1772122_306_H05     2 0.000
#> 1772122_306_E11     2 0.000
#> 1772122_302_E08     1 0.000
#> 1772122_306_G11     1 0.751
#> 1772122_182_F01     1 0.000
#> 1772122_315_B09     2 0.000
#> 1772122_298_B01     1 0.000
#> 1772122_315_C06     2 0.000
#> 1772122_303_G07     2 0.253
#> 1772122_306_B06     2 0.000
#> 1772122_305_E09     2 0.000
#> 1772122_306_E05     2 0.000
#> 1772122_306_F07     2 0.249
#> 1772122_315_F05     2 0.000
#> 1772122_315_B12     2 0.000
#> 1772122_302_E02     1 0.000
#> 1772122_306_C08     2 0.000
#> 1772122_315_G05     2 0.000
#> 1772122_315_D07     2 0.249
#> 1772122_315_F06     2 0.000
#> 1772122_315_E04     2 0.000
#> 1772122_305_D09     2 0.000
#> 1772122_301_A12     1 0.000
#> 1772122_303_F09     2 0.249
#> 1772122_315_E12     2 0.000
#> 1772122_303_F08     2 0.000
#> 1772122_315_F08     2 0.000
#> 1772122_305_A11     2 0.249
#> 1772122_315_C05     2 0.502
#> 1772122_303_G01     2 1.000
#> 1772122_303_H03     2 1.000
#> 1772122_315_B08     2 0.000
#> 1772122_305_D10     2 0.000
#> 1772122_305_B10     1 0.000
#> 1772122_315_H12     2 0.502
#> 1772122_315_G08     2 0.000
#> 1772122_305_A07     2 0.000
#> 1772122_315_B10     2 0.249
#> 1772122_306_F10     2 0.000
#> 1772122_306_C01     2 0.000
#> 1772122_315_G01     2 0.000
#> 1772122_306_D01     2 0.000
#> 1772122_306_E01     1 0.751
#> 1772122_306_D07     2 0.000
#> 1772122_306_C12     2 0.253
#> 1772122_305_B06     2 0.249
#> 1772122_305_D06     2 0.000
#> 1772122_305_H01     2 0.253
#> 1772122_315_G04     2 0.000
#> 1772122_305_F04     2 0.502
#> 1772122_305_F02     2 0.000
#> 1772122_303_A04     2 0.000
#> 1772122_299_G08     1 0.000
#> 1772122_300_C11     1 0.751
#> 1772122_301_H11     1 0.000
#> 1772122_301_E04     1 0.000
#> 1772122_301_E12     1 0.000
#> 1772122_301_E05     1 0.000
#> 1772122_301_D01     1 0.000
#> 1772122_180_A07     1 0.000
#> 1772122_301_F08     1 0.000
#> 1772122_300_D08     1 0.000
#> 1772122_299_E04     2 0.249
#> 1772122_300_A02     1 0.751
#> 1772122_299_G02     2 1.000
#> 1772122_180_H01     1 0.249
#> 1772122_298_G07     1 0.249
#> 1772122_299_A02     1 0.000
#> 1772122_181_F01     1 0.000
#> 1772122_180_A12     1 0.000
#> 1772122_302_G02     1 0.000
#> 1772122_180_E11     1 1.000
#> 1772122_298_E08     1 0.249
#> 1772122_302_E03     1 0.249
#> 1772122_300_B09     1 0.502
#> 1772122_182_C12     1 0.000
#> 1772122_181_A04     1 0.000
#> 1772122_182_A02     1 0.000
#> 1772122_180_E04     1 1.000
#> 1772122_181_C03     1 0.000
#> 1772122_181_D01     1 0.000
#> 1772122_181_B05     1 0.000
#> 1772122_180_G08     1 0.000
#> 1772122_180_G11     1 0.249
#> 1772122_302_F09     1 0.000
#> 1772122_300_G12     1 0.000
#> 1772122_298_D06     1 0.000
#> 1772122_299_H05     1 0.000
#> 1772122_180_B03     1 0.000
#> 1772122_300_G07     1 0.502
#> 1772122_298_E01     1 0.000
#> 1772122_298_G03     1 0.253
#> 1772122_302_A12     1 0.000
#> 1772122_181_D12     1 0.502
#> 1772122_299_E03     1 0.000
#> 1772122_181_D07     1 0.747
#> 1772122_298_H02     1 0.000
#> 1772122_181_H05     1 0.000
#> 1772122_181_E12     1 0.000
#> 1772122_302_F12     1 0.000
#> 1772122_299_G09     1 0.000
#> 1772122_182_B10     1 0.000
#> 1772122_182_A07     1 0.000
#> 1772122_298_F11     1 0.751
#> 1772122_181_G07     1 0.000
#> 1772122_182_B06     1 0.000
#> 1772122_299_G03     1 0.000
#> 1772122_298_A10     1 0.000
#> 1772122_180_B02     1 0.000
#> 1772122_298_E07     1 0.000
#> 1772122_300_C08     1 0.000
#> 1772122_298_D02     1 0.000
#> 1772122_299_A12     1 0.000
#> 1772122_182_B04     1 0.000
#> 1772122_298_A06     2 0.000
#> 1772122_181_E03     1 0.000
#> 1772122_299_B03     1 0.000
#> 1772122_181_C11     1 0.249
#> 1772122_181_H04     1 0.502
#> 1772122_300_D01     1 0.000
#> 1772122_302_E06     1 0.000
#> 1772122_301_G03     1 0.000
#> 1772122_302_A05     1 0.000
#> 1772122_300_H07     1 0.000
#> 1772122_301_B02     1 0.000
#> 1772122_182_G03     1 0.000
#> 1772122_301_C03     1 0.000
#> 1772122_180_D05     1 0.000
#> 1772122_180_D08     1 0.000
#> 1772122_299_C12     1 0.000
#> 1772122_302_H06     1 0.000
#> 1772122_298_E12     1 0.751
#> 1772122_298_B08     1 0.000
#> 1772122_302_G12     1 0.000
#> 1772122_300_E01     1 0.000
#> 1772122_300_B10     1 0.000
#> 1772122_180_G12     1 0.000
#> 1772122_300_F07     1 0.000
#> 1772122_180_B12     1 0.000
#> 1772122_182_F08     1 0.000
#> 1772122_302_E04     1 0.000
#> 1772122_298_F06     1 0.000
#> 1772122_300_C04     1 0.000
#> 1772122_302_H01     1 0.000
#> 1772122_302_D02     1 0.000
#> 1772122_182_E05     1 0.747
#> 1772122_182_E10     1 0.000
#> 1772122_182_B07     1 0.000
#> 1772122_180_A03     1 0.000
#> 1772122_180_F04     1 0.000
#> 1772122_299_D05     1 0.000
#> 1772122_182_F02     1 0.000
#> 1772122_299_E12     1 0.253
#> 1772122_298_A05     1 0.000
#> 1772122_298_B02     1 0.000
#> 1772122_181_F08     1 0.000
#> 1772122_298_C03     1 0.000
#> 1772122_300_G10     1 0.000
#> 1772122_182_E12     1 0.000
#> 1772122_298_B04     1 0.747
#> 1772122_301_E06     1 0.000
#> 1772122_182_H09     1 0.000
#> 1772122_302_A10     1 0.000
#> 1772122_181_F12     1 0.000
#> 1772122_302_H10     1 0.000
#> 1772122_302_H05     1 0.000
#> 1772122_181_D11     1 0.000
#> 1772122_298_G08     1 0.000
#> 1772122_298_H11     1 0.000
#> 1772122_180_G07     1 0.000
#> 1772122_180_A10     1 0.000
#> 1772122_298_D08     1 0.000
#> 1772122_299_B01     1 0.000
#> 1772122_299_F05     1 0.249
#> 1772122_302_B07     1 0.000
#> 1772122_180_E06     1 0.000
#> 1772122_301_A10     1 0.000
#> 1772122_182_A11     1 0.000
#> 1772122_180_G10     1 0.000
#> 1772122_301_D02     1 0.000
#> 1772122_301_F01     1 0.000
#> 1772122_181_A06     1 0.000
#> 1772122_181_B06     1 0.249
#> 1772122_182_F04     1 0.000
#> 1772122_181_F09     1 0.249
#> 1772122_182_D03     1 0.000
#> 1772122_300_F06     1 0.249
#> 1772122_300_D06     1 0.249
#> 1772122_299_D02     1 0.000
#> 1772122_301_G02     1 0.000
#> 1772122_299_H08     1 0.000
#> 1772122_300_C03     1 0.000
#> 1772122_299_B09     1 0.000
#> 1772122_301_A03     1 0.000
#> 1772122_300_H01     1 0.000
#> 1772122_300_C10     1 0.000
#> 1772122_300_A09     1 0.000
#> 1772122_298_H03     1 0.000
#> 1772122_299_C06     1 0.000
#> 1772122_182_E11     1 0.000
#> 1772122_300_B08     1 0.000
#> 1772122_300_C05     1 0.000
#> 1772122_300_E05     1 0.000
#> 1772122_180_C05     1 0.000
#> 1772122_300_E08     1 0.000
#> 1772122_181_G11     1 0.000
#> 1772122_300_G11     1 0.000
#> 1772122_300_D05     1 0.000
#> 1772122_300_A04     1 0.000
#> 1772122_300_B02     1 0.000
#> 1772122_302_A03     1 0.000
#> 1772122_180_G05     1 0.000
#> 1772122_300_F08     1 0.000
#> 1772122_182_E03     1 0.000
#> 1772122_299_G04     1 0.000
#> 1772122_298_A04     1 0.000
#> 1772122_181_E01     1 0.000
#> 1772122_302_C06     1 0.000
#> 1772122_298_B11     1 0.000
#> 1772122_182_F12     1 0.000
#> 1772122_180_H02     1 0.000
#> 1772122_180_A01     1 0.000
#> 1772122_180_C09     1 0.000
#> 1772122_180_D06     1 0.000
#> 1772122_302_B02     1 0.000
#> 1772122_300_G01     1 0.000
#> 1772122_298_E04     1 0.000
#> 1772122_301_C09     1 0.000
#> 1772122_301_E03     1 0.000
#> 1772122_180_C04     1 0.249
#> 1772122_299_F08     1 0.000
#> 1772122_180_H08     1 0.000
#> 1772122_298_D03     1 0.249
#> 1772122_180_D11     2 0.751
#> 1772122_180_A08     1 0.498
#> 1772122_181_A12     1 0.000
#> 1772122_180_C12     1 0.000
#> 1772122_182_B01     1 0.000
#> 1772122_180_H07     1 0.000
#> 1772122_182_E01     1 0.000
#> 1772122_181_C04     1 0.000
#> 1772122_180_D10     1 0.249
#> 1772122_181_B10     1 0.000
#> 1772122_182_F03     1 0.000
#> 1772122_180_B07     1 0.000
#> 1772122_181_C06     1 0.000
#> 1772122_181_G06     1 0.000
#> 1772122_181_H03     1 0.000
#> 1772122_181_F06     1 0.000
#> 1772122_181_D05     1 0.000
#> 1772122_299_E05     1 0.249
#> 1772122_182_E06     1 0.000
#> 1772122_302_C10     1 0.000
#> 1772122_182_H01     1 0.000
#> 1772122_181_C08     1 0.000
#> 1772122_299_H09     1 0.000
#> 1772122_182_B08     1 0.000
#> 1772122_299_H03     1 0.000
#> 1772122_181_B11     1 0.000
#> 1772122_180_C01     1 0.000
#> 1772122_182_C11     1 0.000
#> 1772122_182_B05     1 0.000
#> 1772122_302_A09     1 0.000
#> 1772122_182_C01     1 0.000
#> 1772122_299_C08     1 0.502
#> 1772122_299_G01     1 0.000
#> 1772122_182_E07     1 0.000
#> 1772122_181_H02     1 0.000
#> 1772122_181_D09     1 0.000
#> 1772122_180_G09     1 0.000
#> 1772122_181_D03     1 0.000
#> 1772122_181_H07     1 0.000
#> 1772122_298_C07     1 0.249
#> 1772122_182_D01     1 0.000
#> 1772122_302_H12     1 0.000
#> 1772122_299_A03     1 0.000
#> 1772122_181_H10     1 0.000
#> 1772122_180_E12     1 0.000
#> 1772122_180_B05     1 0.000
#> 1772122_181_H12     1 0.000
#> 1772122_180_E08     1 0.000
#> 1772122_180_F10     1 0.000
#> 1772122_180_F08     1 0.000
#> 1772122_181_F03     1 0.000
#> 1772122_299_E01     1 0.000
#> 1772122_181_B01     1 0.000
#> 1772122_180_F03     1 0.000
#> 1772122_300_G02     2 1.000
#> 1772122_182_B02     1 0.000
#> 1772122_181_F02     1 0.000
#> 1772122_181_B12     1 0.000
#> 1772122_182_D06     1 0.000
#> 1772122_181_F11     1 0.000
#> 1772122_181_E02     1 0.000
#> 1772122_180_C03     1 0.000
#> 1772122_180_B06     1 0.000
#> 1772122_180_D09     1 0.000
#> 1772122_182_H08     1 0.000
#> 1772122_298_C08     1 0.000
#> 1772122_182_C10     1 0.000
#> 1772122_180_D03     1 0.000
#> 1772122_182_A05     1 0.000
#> 1772122_299_H02     1 0.000
#> 1772122_180_B01     1 0.000
#> 1772122_299_C04     1 0.000
#> 1772122_180_B08     1 0.000
#> 1772122_181_F04     1 0.000
#> 1772122_182_B11     1 0.000
#> 1772122_298_G05     2 1.000
#> 1772122_181_E04     1 0.000
#> 1772122_181_D02     1 0.000
#> 1772122_182_A06     1 0.000
#> 1772122_181_A05     1 0.000
#> 1772122_181_B02     1 0.000
#> 1772122_182_D05     1 0.000
#> 1772122_181_F07     1 0.000
#> 1772122_181_H08     1 0.000
#> 1772122_181_C01     1 0.000
#> 1772122_182_C08     1 0.000
#> 1772122_180_F02     1 0.000
#> 1772122_181_G09     1 0.000
#> 1772122_181_E07     1 0.249
#> 1772122_180_F11     1 0.751
#> 1772122_302_B01     1 0.000
#> 1772122_180_F01     1 0.000
#> 1772122_180_E03     1 0.000
#> 1772122_181_A07     1 0.000
#> 1772122_299_E10     1 0.000
#> 1772122_181_B08     1 0.000
#> 1772122_298_A02     2 1.000
#> 1772122_299_A09     1 0.000
#> 1772122_182_B09     1 0.000
#> 1772122_182_G08     1 0.000
#> 1772122_181_F10     1 0.000
#> 1772122_204_D02     2 0.000
#> 1772122_206_B03     2 0.000
#> 1772122_206_G04     2 0.000
#> 1772122_204_E03     2 0.000
#> 1772122_205_H04     2 0.000
#> 1772122_206_A02     2 0.000
#> 1772122_204_G07     2 0.000
#> 1772122_262_A03     2 0.000
#> 1772122_206_H06     2 0.000
#> 1772122_205_C06     2 0.249
#> 1772122_206_F08     2 0.000
#> 1772122_205_D08     2 0.000
#> 1772122_204_G01     2 0.000
#> 1772122_262_E11     2 0.000
#> 1772122_205_B01     2 0.000
#> 1772122_204_E08     2 0.000
#> 1772122_262_E02     2 0.000
#> 1772122_205_H11     2 0.000
#> 1772122_205_E04     2 0.000
#> 1772122_204_B09     2 0.000
#> 1772122_262_E10     2 0.000
#> 1772122_204_B05     2 0.000
#> 1772122_206_B04     2 0.000
#> 1772122_262_C09     2 0.000
#> 1772122_206_B09     2 0.000
#> 1772122_206_B11     2 0.000
#> 1772122_204_A06     2 0.000
#> 1772122_205_G05     2 0.000
#> 1772122_205_C01     2 0.000
#> 1772122_262_E07     1 0.253
#> 1772122_204_A08     2 0.000
#> 1772122_204_H08     2 0.000
#> 1772122_206_F11     2 0.000
#> 1772122_262_H07     2 0.000
#> 1772122_262_B09     2 0.000
#> 1772122_205_B07     2 0.000
#> 1772122_206_E11     2 0.000
#> 1772122_262_H11     2 0.000
#> 1772122_205_D09     2 0.000
#> 1772122_204_F03     2 0.000
#> 1772122_204_C10     2 0.000
#> 1772122_206_C12     2 0.000
#> 1772122_206_F01     2 0.000
#> 1772122_262_D02     2 0.000
#> 1772122_206_H03     2 0.249
#> 1772122_205_A07     2 0.000
#> 1772122_206_E08     2 0.000
#> 1772122_206_A06     2 0.000
#> 1772122_206_E06     1 1.000
#> 1772122_262_D06     2 0.000
#> 1772122_205_H02     2 0.000
#> 1772122_262_F09     1 0.000
#> 1772122_206_F03     2 0.000
#> 1772122_262_C10     2 0.000
#> 1772122_204_C09     2 0.000
#> 1772122_206_G12     2 0.000
#> 1772122_262_C07     2 0.000
#> 1772122_205_A08     2 0.000
#> 1772122_206_H04     2 0.000
#> 1772122_205_A03     2 0.000
#> 1772122_204_E04     2 0.000
#> 1772122_205_G08     2 0.000
#> 1772122_204_A02     2 0.000
#> 1772122_262_G02     2 0.498
#> 1772122_205_F07     2 0.000
#> 1772122_205_H01     1 0.751
#> 1772122_206_H07     2 0.000
#> 1772122_262_H01     2 0.249
#> 1772122_205_C11     2 0.000
#> 1772122_262_H06     1 1.000
#> 1772122_205_C09     2 0.000
#> 1772122_204_A09     2 0.000
#> 1772122_206_C02     2 0.000
#> 1772122_204_C08     2 0.000
#> 1772122_204_F07     2 0.000
#> 1772122_204_F11     2 0.000
#> 1772122_204_B06     2 0.000
#> 1772122_262_C02     2 0.000
#> 1772122_205_F11     2 0.000
#> 1772122_206_D02     2 0.000
#> 1772122_204_C07     2 0.000
#> 1772122_205_D05     2 0.000
#> 1772122_204_A05     2 0.000
#> 1772122_206_G07     2 0.000
#> 1772122_206_A09     2 0.498
#> 1772122_206_G10     2 0.000
#> 1772122_206_A12     2 0.000
#> 1772122_262_A09     2 0.000
#> 1772122_205_E10     2 0.000
#> 1772122_206_B01     1 0.249
#> 1772122_206_D08     1 0.751
#> 1772122_206_A08     2 0.000
#> 1772122_325_D10     1 1.000
#> 1772122_205_A12     2 0.000
#> 1772122_204_B03     2 0.000
#> 1772122_204_F12     2 0.000
#> 1772122_205_B12     1 1.000
#> 1772122_326_B10     2 0.000
#> 1772122_204_A01     2 0.000
#> 1772122_205_F12     2 0.000
#> 1772122_205_C05     2 0.000
#> 1772122_204_E10     1 1.000
#> 1772122_262_H02     2 0.000
#> 1772122_262_G07     2 0.000
#> 1772122_204_H07     1 1.000
#> 1772122_204_A10     2 0.000
#> 1772122_262_D03     2 0.249
#> 1772122_262_H04     1 0.751
#> 1772122_262_B05     2 0.000
#> 1772122_262_B01     1 0.000
#> 1772122_204_D06     2 0.000
#> 1772122_263_C06     2 0.000
#> 1772122_204_G03     1 1.000
#> 1772122_204_D05     2 0.000
#> 1772122_262_G08     2 0.000
#> 1772122_204_C12     2 0.000
#> 1772122_262_A04     2 0.000
#> 1772122_262_H03     2 0.249
#> 1772122_206_B08     2 0.000
#> 1772122_204_D12     2 0.000
#> 1772122_262_E03     2 0.498
#> 1772122_206_F02     2 0.000
#> 1772122_206_G03     2 0.000
#> 1772122_206_G09     1 0.249
#> 1772122_205_H12     2 0.000
#> 1772122_262_F12     2 0.249
#> 1772122_204_G09     2 0.000
#> 1772122_204_F02     2 0.000
#> 1772122_206_C10     2 0.000
#> 1772122_204_D01     2 0.000
#> 1772122_206_C07     2 0.000
#> 1772122_206_F12     2 0.000
#> 1772122_262_C08     2 0.000
#> 1772122_206_G01     2 0.000
#> 1772122_206_F05     2 0.000
#> 1772122_205_E02     2 0.000
#> 1772122_262_H08     2 0.000
#> 1772122_326_D09     2 0.000
#> 1772122_262_D08     2 0.000
#> 1772122_204_F01     2 0.000
#> 1772122_206_F04     2 0.000
#> 1772122_206_E09     2 0.000
#> 1772122_206_E10     2 0.000
#> 1772122_204_F09     2 0.000
#> 1772122_205_H09     2 0.000
#> 1772122_206_G11     2 0.000
#> 1772122_206_C06     2 0.000
#> 1772122_204_D03     2 0.000
#> 1772122_206_C04     2 0.000
#> 1772122_262_A11     2 0.000
#> 1772122_206_E07     1 1.000
#> 1772122_205_H06     2 0.000
#> 1772122_262_F11     2 0.000
#> 1772122_204_D09     2 0.000
#> 1772122_205_H05     2 0.000
#> 1772122_206_B12     2 0.000
#> 1772122_204_B02     2 0.000
#> 1772122_204_B07     2 0.000
#> 1772122_205_C07     2 0.000
#> 1772122_205_B08     1 1.000
#> 1772122_262_C12     2 0.000
#> 1772122_206_A10     2 0.498
#> 1772122_206_D04     2 0.000
#> 1772122_262_F03     2 0.000
#> 1772122_206_D11     2 0.000
#> 1772122_204_A12     2 1.000
#> 1772122_205_A04     2 0.000
#> 1772122_205_F05     2 0.000
#> 1772122_205_B04     2 0.249
#> 1772122_206_H05     2 0.000
#> 1772122_206_C03     2 0.000
#> 1772122_204_A11     2 0.000
#> 1772122_262_E08     2 0.000
#> 1772122_262_B10     2 0.000
#> 1772122_206_G06     2 0.000
#> 1772122_205_G04     2 0.000
#> 1772122_262_D05     2 0.000
#> 1772122_206_F06     2 0.000
#> 1772122_206_E12     2 0.000
#> 1772122_204_C04     1 1.000
#> 1772122_262_G04     2 0.000
#> 1772122_204_C11     2 0.000
#> 1772122_205_G10     2 1.000
#> 1772122_204_E09     1 1.000
#> 1772122_262_B07     2 0.751
#> 1772122_204_C03     2 0.000
#> 1772122_206_A04     2 0.000
#> 1772122_204_A04     2 0.000
#> 1772122_205_H03     2 0.000
#> 1772122_204_D04     2 0.000
#> 1772122_205_B09     2 0.000
#> 1772122_205_F09     2 0.000
#> 1772122_204_F05     1 1.000
#> 1772122_205_A09     2 0.000
#> 1772122_205_E08     2 0.000
#> 1772122_262_C05     2 0.000
#> 1772122_262_G06     2 0.000
#> 1772122_262_F05     1 1.000
#> 1772122_262_F10     2 0.000
#> 1772122_204_B10     2 0.000
#> 1772122_205_G03     2 0.000
#> 1772122_206_A05     2 0.000
#> 1772122_205_D06     2 0.000
#> 1772122_206_E03     2 0.000
#> 1772122_206_B07     2 0.000
#> 1772122_204_A03     2 0.000
#> 1772122_262_B08     2 0.000
#> 1772122_206_E04     2 0.000
#> 1772122_205_D04     2 0.000
#> 1772122_262_D09     2 0.000
#> 1772122_205_A01     2 0.000
#> 1772122_204_B01     2 0.000
#> 1772122_206_H09     2 0.000
#> 1772122_205_G01     2 0.000
#> 1772122_206_D05     2 0.000
#> 1772122_204_B08     2 0.249
#> 1772122_262_D11     2 0.000
#> 1772122_205_B03     2 0.000
#> 1772122_205_G12     2 0.000
#> 1772122_206_H01     2 0.000
#> 1772122_205_C08     2 0.000
#> 1772122_262_G12     2 0.000
#> 1772122_204_C02     2 0.000
#> 1772122_262_A01     2 0.000
#> 1772122_263_B05     2 0.000
#> 1772122_206_B02     2 0.000
#> 1772122_262_F07     2 0.502
#> 1772122_325_B07     2 0.000
#> 1772122_205_C10     2 0.000
#> 1772122_262_G05     2 0.498
#> 1772122_205_D11     2 0.000
#> 1772122_204_E01     2 0.000
#> 1772122_262_B06     2 0.000
#> 1772122_262_E05     2 0.000
#> 1772122_206_C11     2 0.000
#> 1772122_204_D08     2 0.000
#> 1772122_204_E02     1 0.000
#> 1772122_205_D12     2 0.000
#> 1772122_262_G03     1 0.502
#> 1772122_205_A11     2 0.000
#> 1772122_205_D07     2 0.000
#> 1772122_262_F08     2 0.249
#> 1772122_205_C03     2 0.000
#> 1772122_262_G11     2 0.249
#> 1772122_262_D04     1 1.000
#> 1772122_205_H10     2 0.000
#> 1772122_262_B03     2 0.000
#> 1772122_204_B12     2 0.000
#> 1772122_205_A10     2 0.000
#> 1772122_262_D07     2 0.000
#> 1772122_205_F10     2 0.000
#> 1772122_204_G06     2 0.000
#> 1772122_204_E11     2 0.000
#> 1772122_205_E12     2 0.000
#> 1772122_206_E05     2 0.000
#> 1772122_206_C05     2 0.000
#> 1772122_205_C12     2 0.000
#> 1772122_204_E07     2 0.000
#> 1772122_205_F06     2 0.000
#> 1772122_262_A12     2 0.000
#> 1772122_206_H11     2 0.000
#> 1772122_204_E06     2 0.000
#> 1772122_205_B06     2 0.000
#> 1772122_262_B11     2 0.000
#> 1772122_262_C11     2 0.000
#> 1772122_262_A08     2 0.000
#> 1772122_206_G08     2 0.000
#> 1772122_262_B04     2 0.000
#> 1772122_205_C04     2 0.000
#> 1772122_205_B02     1 0.000
#> 1772122_206_B10     2 0.000
#> 1772122_206_D12     2 0.000
#> 1772122_262_E06     2 0.000
#> 1772122_262_D01     2 0.000
#> 1772122_262_F06     2 0.000
#> 1772122_325_C11     1 1.000
#> 1772122_325_B02     1 1.000
#> 1772122_326_A09     2 0.000
#> 1772122_205_E03     2 0.000
#> 1772122_326_F06     2 0.000
#> 1772122_324_A01     2 0.000
#> 1772122_326_E06     2 0.000
#> 1772122_326_C12     2 0.000
#> 1772122_263_D09     2 0.000
#> 1772122_324_C12     2 0.000
#> 1772122_326_C06     2 0.000
#> 1772122_324_D04     2 0.000
#> 1772122_263_A07     2 0.000
#> 1772122_326_G06     2 0.000
#> 1772122_324_C08     2 0.000
#> 1772122_326_G04     2 0.000
#> 1772122_206_G02     2 0.000
#> 1772122_325_G01     2 0.000
#> 1772122_263_F06     2 0.000
#> 1772122_263_E07     1 1.000
#> 1772122_263_F05     2 0.000
#> 1772122_324_D10     2 0.000
#> 1772122_263_F08     1 1.000
#> 1772122_325_A10     1 1.000
#> 1772122_206_D03     1 1.000
#> 1772122_263_A05     2 0.000
#> 1772122_263_D01     1 1.000
#> 1772122_324_C05     2 0.000
#> 1772122_262_A10     2 0.000
#> 1772122_263_A02     2 0.000
#> 1772122_326_A07     2 0.000
#> 1772122_324_B12     2 0.000
#> 1772122_325_F01     1 1.000
#> 1772122_326_B02     2 0.000
#> 1772122_324_A03     2 0.000
#> 1772122_262_A06     1 0.000
#> 1772122_204_H02     1 1.000
#> 1772122_263_B07     2 0.000
#> 1772122_325_E08     1 1.000
#> 1772122_326_B12     1 1.000
#> 1772122_325_E09     2 0.000
#> 1772122_263_C11     1 1.000
#> 1772122_325_A07     2 0.000
#> 1772122_263_B01     2 0.000
#> 1772122_263_C07     2 0.000
#> 1772122_263_C03     2 0.000
#> 1772122_326_D11     2 0.000
#> 1772122_263_D12     1 1.000
#> 1772122_326_F01     2 0.000
#> 1772122_325_B08     1 1.000
#> 1772122_263_G10     2 0.000
#> 1772122_326_B03     1 1.000
#> 1772122_324_C10     2 0.000
#> 1772122_325_A02     2 0.502
#> 1772122_325_D04     2 0.000
#> 1772122_263_C02     2 0.000
#> 1772122_263_G01     2 0.000
#> 1772122_324_E01     2 0.000
#> 1772122_325_F02     2 0.000
#> 1772122_324_E04     2 0.000
#> 1772122_325_D02     2 0.000
#> 1772122_263_E11     1 1.000
#> 1772122_324_A04     2 0.000
#> 1772122_325_C07     2 0.000
#> 1772122_263_A12     2 0.000
#> 1772122_325_E03     2 0.000
#> 1772122_326_E12     1 1.000
#> 1772122_325_A12     1 1.000
#> 1772122_326_F12     2 0.000
#> 1772122_325_D09     2 0.000
#> 1772122_325_B09     2 0.000
#> 1772122_324_C09     2 0.000
#> 1772122_325_G04     2 0.000
#> 1772122_324_B03     2 0.000
#> 1772122_324_D07     2 0.000
#> 1772122_324_E03     2 0.000
#> 1772122_326_A04     2 0.000
#> 1772122_326_F03     2 0.000
#> 1772122_326_C05     2 0.000
#> 1772122_325_F09     2 0.000
#> 1772122_263_G07     2 0.000
#> 1772122_324_B11     2 0.000
#> 1772122_263_F04     1 1.000
#> 1772122_324_E12     1 1.000
#> 1772122_326_E11     2 0.000
#> 1772122_263_C04     2 0.000
#> 1772122_324_G10     2 0.000
#> 1772122_262_B02     1 1.000
#> 1772122_263_H04     1 1.000
#> 1772122_206_C08     2 0.249
#> 1772122_324_D08     2 0.000
#> 1772122_325_C12     1 1.000
#> 1772122_326_D06     2 0.000
#> 1772122_263_B11     2 0.000
#> 1772122_325_C03     1 1.000
#> 1772122_326_E10     2 0.000
#> 1772122_325_B03     1 1.000
#> 1772122_325_A11     2 0.000
#> 1772122_326_A01     1 1.000
#> 1772122_325_D06     2 0.000
#> 1772122_326_D10     2 0.000
#> 1772122_325_A04     2 0.000
#> 1772122_263_E03     2 0.000
#> 1772122_324_E02     2 0.000
#> 1772122_324_B01     2 0.000
#> 1772122_263_B02     1 1.000
#> 1772122_325_E05     1 1.000
#> 1772122_325_A09     2 0.000
#> 1772122_326_F05     1 1.000
#> 1772122_263_D02     2 0.000
#> 1772122_325_F07     2 0.000
#> 1772122_204_H03     1 0.751
#> 1772122_263_H03     1 1.000
#> 1772122_324_A12     2 0.000
#> 1772122_324_C06     2 0.000
#> 1772122_263_B04     2 0.000
#> 1772122_263_C12     2 0.000
#> 1772122_324_A05     2 0.000
#> 1772122_325_D07     2 0.000
#> 1772122_326_G05     1 1.000
#> 1772122_324_E05     2 0.000
#> 1772122_324_A09     2 0.000
#> 1772122_326_C07     2 0.000
#> 1772122_326_C04     2 0.000
#> 1772122_263_E08     2 0.000
#> 1772122_263_A10     2 0.000
#> 1772122_324_A08     2 0.000
#> 1772122_263_D05     2 0.000
#> 1772122_324_A07     2 0.000
#> 1772122_325_F08     2 0.000
#> 1772122_326_F09     1 1.000
#> 1772122_325_G07     2 0.000
#> 1772122_324_C04     2 0.000
#> 1772122_326_H02     1 0.751
#> 1772122_326_E03     1 1.000
#> 1772122_263_B03     2 0.000
#> 1772122_263_A09     2 0.000
#> 1772122_326_E08     2 0.000
#> 1772122_325_B01     2 0.000
#> 1772122_263_E05     2 0.000
#> 1772122_263_A03     2 0.000
#> 1772122_263_D10     2 0.000
#> 1772122_263_H06     1 1.000
#> 1772122_325_C08     2 0.000
#> 1772122_326_A05     2 0.000
#> 1772122_263_C08     1 1.000
#> 1772122_325_B10     2 0.000
#> 1772122_263_H05     2 0.000
#> 1772122_325_B11     2 0.000
#> 1772122_206_H08     1 0.751
#> 1772122_204_G12     1 1.000
#> 1772122_263_C10     2 0.000
#> 1772122_263_E06     2 0.000
#> 1772122_263_H11     1 1.000
#> 1772122_263_D07     2 0.000
#> 1772122_263_G08     1 0.751
#> 1772122_326_G11     2 0.000
#> 1772122_324_B04     2 0.000
#> 1772122_263_E09     2 1.000
#> 1772122_263_D03     2 0.000
#> 1772122_326_A03     1 1.000
#> 1772122_326_A08     2 0.498
#> 1772122_326_F10     2 0.000
#> 1772122_324_E09     2 0.000
#> 1772122_324_E06     2 0.000
#> 1772122_325_H01     2 0.000
#> 1772122_326_B05     2 0.000
#> 1772122_325_D08     1 1.000
#> 1772122_263_D08     2 0.000
#> 1772122_324_C03     2 0.000
#> 1772122_326_A10     2 0.000
#> 1772122_326_H05     2 0.000
#> 1772122_324_D11     2 0.000
#> 1772122_326_H03     1 0.751
#> 1772122_326_A02     2 0.000
#> 1772122_263_F10     2 0.000
#> 1772122_326_A11     2 0.000
#> 1772122_326_H12     2 0.000
#> 1772122_325_A05     2 0.000
#> 1772122_326_D01     2 0.000
#> 1772122_324_E08     2 0.000
#> 1772122_325_C09     2 0.000
#> 1772122_325_A03     1 1.000
#> 1772122_263_D11     2 0.000
#> 1772122_324_C11     2 0.000
#> 1772122_263_H10     2 0.000
#> 1772122_324_A10     2 0.000
#> 1772122_325_C05     1 1.000
#> 1772122_326_G03     2 0.000
#> 1772122_326_E07     2 0.000
#> 1772122_263_F11     1 1.000
#> 1772122_326_C10     2 0.000
#> 1772122_326_G08     2 0.000
#> 1772122_326_D05     2 0.000
#> 1772122_326_H11     2 0.000
#> 1772122_325_H08     2 0.000
#> 1772122_326_B11     1 1.000
#> 1772122_326_B07     2 0.000
#> 1772122_325_B12     2 0.000
#> 1772122_263_A04     2 0.000
#> 1772122_324_C07     2 0.000
#> 1772122_326_A12     2 0.000
#> 1772122_324_A11     2 0.000
#> 1772122_324_B07     2 0.000
#> 1772122_326_C09     2 0.000
#> 1772122_325_E06     2 0.000
#> 1772122_324_F01     2 0.000
#> 1772122_324_D02     2 0.000
#> 1772122_325_E04     1 1.000
#> 1772122_324_A06     2 0.000
#> 1772122_324_B05     2 0.000
#> 1772122_263_G03     2 0.000
#> 1772122_324_E07     2 0.000
#> 1772122_324_B08     2 0.000
#> 1772122_324_A02     2 0.000
#> 1772122_324_C01     2 0.000
#> 1772122_326_H04     2 0.000
#> 1772122_325_C04     1 1.000
#> 1772122_326_C01     2 0.000
#> 1772122_324_C02     2 0.000
#> 1772122_324_B09     2 0.000
#> 1772122_325_G08     1 1.000
#> 1772122_263_E04     2 0.000
#> 1772122_324_B06     2 0.000
#> 1772122_325_A06     2 0.000
#> 1772122_326_D07     2 0.000
#> 1772122_324_D06     2 0.000
#> 1772122_324_D05     2 0.000
#> 1772122_324_B02     2 0.000
#> 1772122_324_B10     2 0.000
#> 1772122_263_E10     2 0.000
#> 1772122_263_F01     2 0.000
#> 1772122_310_B10     2 0.502
#> 1772122_311_D04     2 0.000
#> 1772122_311_B04     2 0.000
#> 1772122_310_D05     2 0.747
#> 1772122_314_E09     2 0.000
#> 1772122_311_A03     2 0.000
#> 1772122_312_E01     1 0.751
#> 1772122_312_B08     2 0.000
#> 1772122_314_F11     2 0.502
#> 1772122_312_E02     2 0.000
#> 1772122_311_E12     2 0.249
#> 1772122_311_C02     2 0.000
#> 1772122_312_G11     2 0.000
#> 1772122_310_F11     2 0.502
#> 1772122_314_C07     1 0.000
#> 1772122_310_B07     2 0.249
#> 1772122_312_B03     2 0.000
#> 1772122_312_E03     1 1.000
#> 1772122_312_D01     1 0.751
#> 1772122_312_C09     2 0.000
#> 1772122_314_D05     2 0.000
#> 1772122_314_H06     2 0.000
#> 1772122_312_C04     2 0.000
#> 1772122_312_H07     2 0.498
#> 1772122_311_F07     2 0.249
#> 1772122_312_A06     2 0.000
#> 1772122_312_A09     2 0.000
#> 1772122_310_B06     2 0.000
#> 1772122_314_D10     2 0.000
#> 1772122_312_F08     1 0.751
#> 1772122_310_F02     2 0.000
#> 1772122_314_F12     2 0.000
#> 1772122_312_E06     2 0.000
#> 1772122_314_A07     2 0.000
#> 1772122_312_H09     2 0.498
#> 1772122_312_D06     2 0.000
#> 1772122_314_A05     2 0.000
#> 1772122_310_H06     2 0.000
#> 1772122_310_C12     2 0.502
#> 1772122_311_F11     2 0.751
#> 1772122_314_D07     2 0.000
#> 1772122_311_E11     2 0.000
#> 1772122_311_F12     1 1.000
#> 1772122_314_A06     2 0.000
#> 1772122_314_G09     2 0.000
#> 1772122_312_B11     2 0.000
#> 1772122_314_B03     2 0.000
#> 1772122_314_B07     2 0.249
#> 1772122_312_D05     2 0.000
#> 1772122_314_G06     2 0.000
#> 1772122_314_H02     2 0.000
#> 1772122_312_C10     2 0.253
#> 1772122_310_E12     1 0.751
#> 1772122_314_B12     2 0.000
#> 1772122_310_E07     2 0.751
#> 1772122_314_D11     2 0.000
#> 1772122_311_C12     2 0.498
#> 1772122_310_E03     2 0.498
#> 1772122_314_G10     2 1.000
#> 1772122_314_C04     2 0.000
#> 1772122_312_H02     2 0.000
#> 1772122_312_C01     2 0.253
#> 1772122_314_A04     2 0.249
#> 1772122_311_A05     2 0.253
#> 1772122_310_B05     2 0.498
#> 1772122_310_D08     1 0.249
#> 1772122_310_A03     2 0.502
#> 1772122_312_F12     2 0.000
#> 1772122_310_F09     2 0.000
#> 1772122_311_A06     2 0.751
#> 1772122_314_F01     1 0.249
#> 1772122_311_G09     1 0.000
#> 1772122_312_E09     2 0.249
#> 1772122_312_C08     2 0.751
#> 1772122_310_C09     1 0.249
#> 1772122_312_H06     1 1.000
#> 1772122_314_D12     2 0.249
#> 1772122_311_B09     2 0.253
#> 1772122_312_D12     2 0.000
#> 1772122_314_F10     2 0.498
#> 1772122_312_B09     1 0.502
#> 1772122_310_G06     2 0.751
#> 1772122_314_F04     2 0.000
#> 1772122_312_F10     2 0.249
#> 1772122_310_H05     2 1.000
#> 1772122_312_B04     2 0.253
#> 1772122_310_G10     2 0.000
#> 1772122_314_C10     2 0.000
#> 1772122_311_F01     2 0.498
#> 1772122_314_E12     2 0.502
#> 1772122_314_H10     1 1.000
#> 1772122_312_E12     2 0.000
#> 1772122_314_F05     2 0.000
#> 1772122_312_F01     2 0.751
#> 1772122_311_G08     2 0.249
#> 1772122_312_A11     2 0.502
#> 1772122_310_F10     1 0.249
#> 1772122_310_E10     2 0.751
#> 1772122_312_C11     1 1.000
#> 1772122_314_G11     2 0.000
#> 1772122_312_F07     2 0.000
#> 1772122_314_E07     2 0.249
#> 1772122_314_C08     2 0.000
#> 1772122_310_G03     1 0.000
#> 1772122_314_A12     2 0.000
#> 1772122_311_C01     2 0.498
#> 1772122_314_D08     2 0.747
#> 1772122_310_A04     2 0.000
#> 1772122_314_E02     2 0.000
#> 1772122_312_B06     2 0.000
#> 1772122_312_D07     2 0.000
#> 1772122_312_B01     2 0.502
#> 1772122_311_F09     2 0.747
#> 1772122_314_E03     2 0.000
#> 1772122_314_G01     2 0.000
#> 1772122_312_B07     2 0.000
#> 1772122_312_F06     2 0.000
#> 1772122_310_G01     2 0.249
#> 1772122_314_G02     2 0.000
#> 1772122_312_G07     1 1.000
#> 1772122_314_A08     2 0.000
#> 1772122_310_A05     2 0.249
#> 1772122_314_A02     2 0.253
#> 1772122_312_E08     2 0.000
#> 1772122_312_A12     2 0.000
#> 1772122_310_E04     2 0.498
#> 1772122_310_H09     1 1.000
#> 1772122_311_D09     2 0.498
#> 1772122_311_H06     2 0.751
#> 1772122_311_G04     2 0.751
#> 1772122_311_H04     2 1.000
#> 1772122_310_G02     2 1.000
#> 1772122_310_E05     2 1.000
#> 1772122_311_C09     2 0.000
#> 1772122_310_G07     2 0.751
#> 1772122_311_E09     2 0.249
#> 1772122_310_F12     2 0.751
#> 1772122_310_F04     2 1.000
#> 1772122_311_G10     2 0.751
#> 1772122_311_D06     2 0.498
#> 1772122_311_D02     2 1.000
#> 1772122_310_E08     1 0.000
#> 1772122_310_D12     2 0.751
#> 1772122_311_B05     2 1.000
#> 1772122_310_E02     2 0.751
#> 1772122_310_F05     2 0.000
#> 1772122_310_C10     2 0.498
#> 1772122_311_F04     1 0.000
#> 1772122_311_C03     1 0.000
#> 1772122_310_A02     2 0.000
#> 1772122_310_D09     2 0.498
#> 1772122_311_C10     1 0.000
#> 1772122_311_D03     2 1.000
#> 1772122_311_G07     2 0.000
#> 1772122_310_E11     2 0.253
#> 1772122_311_H05     2 0.751
#> 1772122_311_E04     2 0.249
#> 1772122_311_C05     1 0.249
#> 1772122_311_G11     2 0.751
#> 1772122_311_E06     2 0.000
#> 1772122_311_G12     2 0.498
#> 1772122_311_A10     2 0.498
#> 1772122_311_A07     2 0.751
#> 1772122_310_D02     2 0.249
#> 1772122_311_H03     2 0.751
#> 1772122_310_C01     1 0.253
#> 1772122_310_A07     2 0.000
#> 1772122_310_D06     2 0.249
#> 1772122_311_A01     2 1.000
#> 1772122_311_B01     1 0.498
#> 1772122_310_H01     2 0.498
#> 1772122_310_A12     2 0.751
#> 1772122_311_B11     2 0.000
#> 1772122_310_A01     2 0.000
#> 1772122_311_D11     2 0.502
#> 1772122_310_H02     2 0.253
#> 1772122_310_H12     2 1.000
#> 1772122_311_F05     2 0.249
#> 1772122_311_A12     2 0.249
#> 1772122_310_A09     2 0.000
#> 1772122_311_H11     2 0.498
#> 1772122_311_E05     2 0.249
#> 1772122_311_A09     2 0.751
#> 1772122_314_H08     2 0.000
#> 1772122_312_F05     2 0.249
#> 1772122_312_A07     2 0.000
#> 1772122_310_H04     2 0.000
#> 1772122_310_D11     2 0.249
#> 1772122_310_A10     2 0.747
#> 1772122_310_H10     2 0.747
#> 1772122_310_G05     2 0.498
#> 1772122_310_D10     2 1.000
#> 1772122_314_C05     2 0.000
#> 1772122_312_F02     2 0.249
#> 1772122_310_B09     2 0.000
#> 1772122_310_F06     2 0.498
#> 1772122_310_E06     2 0.498
#> 1772122_311_D10     2 0.249
#> 1772122_311_E03     2 0.249
#> 1772122_310_G04     2 0.000
#> 1772122_311_B07     2 0.000
#> 1772122_311_C11     2 0.498
#> 1772122_314_B04     2 0.000
#> 1772122_312_F04     2 0.000
#> 1772122_314_D03     2 0.751
#> 1772122_310_C05     1 0.751
#> 1772122_314_B06     2 0.000
#> 1772122_310_D01     1 0.000
#> 1772122_314_H07     2 0.000
#> 1772122_314_C12     2 0.000
#> 1772122_314_C06     2 0.249
#> 1772122_312_H11     2 0.000
#> 1772122_312_C03     1 0.249
#> 1772122_312_H12     2 0.000
#> 1772122_312_H08     2 0.000
#> 1772122_314_E04     2 0.000
#> 1772122_312_H05     2 0.000
#> 1772122_310_C06     2 0.000
#> 1772122_312_G06     2 0.000
#> 1772122_314_E08     2 0.000
#> 1772122_314_G05     2 0.000
#> 1772122_314_D09     2 0.751
#> 1772122_314_B05     2 1.000
#> 1772122_314_B08     2 0.000
#> 1772122_314_A10     2 0.000
#> 1772122_312_D08     2 0.000
#> 1772122_312_C07     2 0.000
#> 1772122_312_D10     2 0.000
#> 1772122_312_B02     2 0.249
#> 1772122_312_C06     2 0.249
#> 1772122_312_G04     2 0.000
#> 1772122_314_F02     1 0.751
#> 1772122_314_H04     2 0.000
#> 1772122_312_A03     2 0.000
#> 1772122_314_C09     2 0.000
#> 1772122_314_H03     2 0.498
#> 1772122_314_E11     2 0.000
#> 1772122_314_H12     2 0.000
#> 1772122_312_E04     2 0.000
#> 1772122_312_G12     2 0.000
#> 1772122_314_H05     2 0.502
#> 1772122_314_D04     2 0.000
#> 1772122_312_F11     2 0.747
#> 1772122_310_D03     1 0.000
#> 1772122_310_D04     2 0.000
#> 1772122_311_E08     2 0.498
#> 1772122_310_B11     2 0.751
#> 1772122_311_E10     2 0.000
#> 1772122_312_E10     2 0.751
#> 1772122_310_C04     2 0.249
#> 1772122_312_A04     1 0.000
#> 1772122_310_B02     1 0.000
#> 1772122_314_G04     2 0.253
#> 1772122_311_H07     2 0.747
#> 1772122_312_D03     2 0.249
#> 1772122_314_A03     2 0.000
#> 1772122_312_D04     2 0.000
#> 1772122_312_D02     2 0.000
#> 1772122_314_H11     2 0.000
#> 1772122_311_B06     2 0.498
#> 1772122_312_E05     2 0.249
#> 1772122_314_F06     2 0.000
#> 1772122_314_B11     2 0.498
#> 1772122_312_G02     2 1.000
#> 1772122_312_C05     2 0.502
#> 1772122_311_F10     1 0.249
#> 1772122_311_B12     2 0.498
#> 1772122_314_E06     2 0.000
#> 1772122_314_C01     1 0.249
#> 1772122_312_D11     2 0.000
#> 1772122_310_F01     2 0.502
#> 1772122_314_E05     2 0.249
#> 1772122_312_H10     2 0.000
#> 1772122_311_G01     2 1.000
#> 1772122_310_C03     2 0.751
#> 1772122_312_F09     2 0.253
#> 1772122_311_C08     2 0.000
#> 1772122_314_B10     2 0.000
#> 1772122_310_B03     2 0.000
#> 1772122_311_D08     2 0.498
#> 1772122_310_A11     2 0.751
#> 1772122_312_H03     1 0.502
#> 1772122_311_F02     2 0.249
#> 1772122_310_G12     2 1.000
#> 1772122_311_H01     2 0.502
#> 1772122_311_A04     2 1.000
#> 1772122_311_G06     2 0.751
#> 1772122_312_G09     2 0.000
#> 1772122_314_C11     2 0.000
#> 1772122_312_C02     2 0.000
#> 1772122_312_B12     2 0.249
#> 1772122_314_B01     2 0.249
#> 1772122_311_D07     2 0.498
#> 1772122_311_A08     2 0.249
#> 1772122_314_B09     2 0.747
#> 1772122_312_D09     2 0.249
#> 1772122_311_B10     2 0.502
#> 1772122_310_G08     2 0.751
#> 1772122_311_D12     2 0.498
#> 1772122_310_B04     2 1.000
#> 1772122_310_C02     2 0.502
#> 1772122_311_H12     2 0.498
#> 1772122_310_A08     2 0.502
#> 1772122_310_B08     2 1.000
#> 1772122_311_A02     2 1.000
#> 1772122_314_B02     1 0.751
#> 1772122_311_B02     2 1.000
#> 1772122_310_F08     2 1.000
#> 1772122_311_F08     2 0.751
#> 1772122_314_F08     2 0.751
#> 1772122_312_A02     2 0.502
#> 1772122_311_C04     2 0.000
#> 1772122_314_E01     2 0.751
#> 1772122_311_H10     2 1.000
#> 1772122_314_G12     2 0.751
#> 1772122_312_A10     2 0.249
#> 1772122_314_G08     2 0.502
#> 1772122_311_F06     2 0.249
#> 1772122_312_E11     2 0.000
#> 1772122_310_H11     2 0.000
#> 1772122_311_H02     2 1.000

show/hide code output

get_classes(res, k = 3)
#>                 class     p
#> 1772122_301_C02     1 0.000
#> 1772122_180_E05     1 0.000
#> 1772122_300_H02     1 0.249
#> 1772122_180_B09     1 0.000
#> 1772122_180_G04     1 0.000
#> 1772122_182_E09     1 0.000
#> 1772122_302_C04     1 0.000
#> 1772122_302_D11     1 0.000
#> 1772122_180_C11     1 0.000
#> 1772122_298_A07     1 0.000
#> 1772122_299_A11     1 0.000
#> 1772122_298_D09     1 0.000
#> 1772122_180_A06     1 0.000
#> 1772122_302_G06     1 0.000
#> 1772122_182_D07     1 0.000
#> 1772122_182_D02     1 0.000
#> 1772122_300_D04     1 0.000
#> 1772122_300_E06     1 0.000
#> 1772122_300_F10     1 0.000
#> 1772122_301_G12     1 0.000
#> 1772122_301_F09     1 0.000
#> 1772122_301_C12     1 0.000
#> 1772122_301_F07     1 0.000
#> 1772122_301_F05     1 0.000
#> 1772122_301_D08     1 0.000
#> 1772122_301_G10     1 0.000
#> 1772122_301_C04     1 0.000
#> 1772122_301_G07     1 0.000
#> 1772122_301_B08     1 0.000
#> 1772122_301_G04     1 0.000
#> 1772122_298_G11     1 0.000
#> 1772122_301_H03     1 0.000
#> 1772122_302_G07     1 0.249
#> 1772122_301_D10     1 0.000
#> 1772122_300_F01     1 0.000
#> 1772122_299_H11     1 0.000
#> 1772122_299_B05     1 0.000
#> 1772122_301_C07     1 0.000
#> 1772122_298_C12     1 0.000
#> 1772122_300_A05     1 0.000
#> 1772122_300_H06     1 0.000
#> 1772122_301_E07     1 0.000
#> 1772122_301_A02     1 0.000
#> 1772122_299_F02     1 0.000
#> 1772122_300_D02     1 0.000
#> 1772122_301_H05     1 1.000
#> 1772122_181_C12     1 0.000
#> 1772122_180_H06     1 0.000
#> 1772122_302_D07     1 0.000
#> 1772122_302_A08     1 0.000
#> 1772122_180_H12     1 0.000
#> 1772122_180_H10     1 0.000
#> 1772122_182_G02     1 0.000
#> 1772122_181_E09     1 0.000
#> 1772122_299_F06     1 0.000
#> 1772122_302_H11     1 0.000
#> 1772122_180_G03     1 0.000
#> 1772122_301_H12     1 0.000
#> 1772122_300_D03     1 0.000
#> 1772122_299_C07     1 0.000
#> 1772122_182_E08     1 0.000
#> 1772122_302_G08     1 0.000
#> 1772122_301_A04     1 0.000
#> 1772122_302_D04     1 0.000
#> 1772122_300_E11     1 0.000
#> 1772122_300_C01     1 0.000
#> 1772122_181_A03     1 0.000
#> 1772122_298_C11     1 0.747
#> 1772122_298_E09     1 0.000
#> 1772122_298_H07     1 1.000
#> 1772122_300_B12     1 0.000
#> 1772122_300_H08     1 0.000
#> 1772122_298_F03     1 0.000
#> 1772122_182_A09     1 0.000
#> 1772122_182_C09     1 0.000
#> 1772122_298_D10     1 0.000
#> 1772122_298_D05     1 0.000
#> 1772122_299_C01     1 0.000
#> 1772122_180_A02     1 0.000
#> 1772122_300_F05     1 0.000
#> 1772122_182_A10     1 0.000
#> 1772122_299_F10     1 0.000
#> 1772122_181_E05     1 0.000
#> 1772122_300_A12     1 0.000
#> 1772122_300_G04     1 0.000
#> 1772122_182_H12     1 0.000
#> 1772122_302_G10     1 0.000
#> 1772122_182_C06     1 0.000
#> 1772122_298_E06     1 0.000
#> 1772122_300_A01     1 0.000
#> 1772122_300_E03     1 0.000
#> 1772122_302_C05     1 0.000
#> 1772122_299_G06     1 0.000
#> 1772122_299_F09     1 0.000
#> 1772122_302_C12     1 0.000
#> 1772122_299_E07     1 0.000
#> 1772122_180_D02     1 0.000
#> 1772122_300_D09     1 0.000
#> 1772122_298_F09     1 0.498
#> 1772122_302_A11     1 0.000
#> 1772122_180_F06     1 0.000
#> 1772122_299_E09     1 0.000
#> 1772122_180_A05     1 0.000
#> 1772122_182_C05     1 0.000
#> 1772122_181_C05     1 0.000
#> 1772122_300_A06     1 0.000
#> 1772122_181_A02     1 0.000
#> 1772122_181_E11     1 0.000
#> 1772122_298_C05     1 0.498
#> 1772122_181_C07     1 0.000
#> 1772122_182_C02     1 0.000
#> 1772122_300_E10     1 0.253
#> 1772122_299_D06     1 0.000
#> 1772122_180_F09     1 0.000
#> 1772122_299_B07     1 0.000
#> 1772122_300_F04     1 0.000
#> 1772122_180_D12     1 0.000
#> 1772122_180_H11     1 0.000
#> 1772122_300_A10     1 0.000
#> 1772122_299_G05     1 0.000
#> 1772122_299_E06     1 0.000
#> 1772122_205_D01     3 0.751
#> 1772122_262_E04     3 0.000
#> 1772122_206_F10     3 0.498
#> 1772122_325_B06     3 0.000
#> 1772122_205_A05     3 0.000
#> 1772122_263_H07     3 0.000
#> 1772122_262_F04     3 0.000
#> 1772122_305_D11     2 0.000
#> 1772122_315_A07     1 0.000
#> 1772122_303_B02     2 0.000
#> 1772122_315_F04     2 0.000
#> 1772122_205_E06     2 1.000
#> 1772122_204_C06     3 0.249
#> 1772122_263_F12     3 0.000
#> 1772122_306_H07     3 1.000
#> 1772122_206_D10     1 0.000
#> 1772122_325_G03     1 1.000
#> 1772122_324_D12     3 0.000
#> 1772122_205_C02     2 1.000
#> 1772122_315_F02     1 0.000
#> 1772122_206_A11     3 0.000
#> 1772122_262_D12     3 1.000
#> 1772122_182_H11     1 0.000
#> 1772122_325_D01     3 0.000
#> 1772122_205_E01     2 1.000
#> 1772122_326_E02     3 0.000
#> 1772122_263_G09     1 1.000
#> 1772122_326_G02     3 0.000
#> 1772122_326_C11     3 0.000
#> 1772122_324_D01     3 0.000
#> 1772122_326_D08     3 1.000
#> 1772122_326_G12     1 1.000
#> 1772122_263_A11     3 0.000
#> 1772122_315_G09     2 0.000
#> 1772122_263_C01     3 0.000
#> 1772122_306_B03     2 0.000
#> 1772122_204_D11     2 1.000
#> 1772122_206_A03     2 0.249
#> 1772122_263_H09     3 0.000
#> 1772122_325_E01     3 0.000
#> 1772122_263_B06     3 0.249
#> 1772122_263_D06     3 0.498
#> 1772122_325_A08     1 1.000
#> 1772122_326_F04     3 0.000
#> 1772122_263_G11     1 1.000
#> 1772122_205_G06     2 0.249
#> 1772122_299_A07     1 0.000
#> 1772122_305_C05     2 0.000
#> 1772122_305_G06     2 0.000
#> 1772122_303_A03     1 0.000
#> 1772122_303_A05     1 0.000
#> 1772122_306_H11     2 0.000
#> 1772122_325_H09     3 0.000
#> 1772122_263_D04     3 0.000
#> 1772122_298_H05     1 0.000
#> 1772122_303_B12     1 0.000
#> 1772122_315_A11     2 0.751
#> 1772122_303_D05     1 0.000
#> 1772122_263_B12     3 0.000
#> 1772122_306_G01     2 0.000
#> 1772122_326_H08     1 1.000
#> 1772122_206_H10     1 0.000
#> 1772122_326_H07     3 0.000
#> 1772122_326_H10     3 0.000
#> 1772122_263_A01     3 0.000
#> 1772122_204_F08     2 1.000
#> 1772122_326_F11     3 0.000
#> 1772122_326_G10     3 1.000
#> 1772122_206_D01     2 0.000
#> 1772122_263_H02     1 1.000
#> 1772122_306_E02     1 0.000
#> 1772122_306_F05     2 0.000
#> 1772122_306_B12     2 0.000
#> 1772122_306_B07     2 0.000
#> 1772122_306_A12     2 0.000
#> 1772122_204_C01     2 1.000
#> 1772122_315_E03     1 0.000
#> 1772122_305_G07     1 0.000
#> 1772122_315_E08     2 0.000
#> 1772122_262_A07     2 1.000
#> 1772122_306_H02     1 0.000
#> 1772122_206_B06     2 1.000
#> 1772122_315_H08     2 0.000
#> 1772122_303_D08     1 0.000
#> 1772122_303_H07     1 0.000
#> 1772122_306_D05     1 0.747
#> 1772122_305_H05     1 0.000
#> 1772122_302_B03     1 0.000
#> 1772122_300_B03     1 0.000
#> 1772122_299_E02     1 0.000
#> 1772122_303_B01     1 1.000
#> 1772122_298_B10     1 0.000
#> 1772122_298_D07     1 0.000
#> 1772122_298_G09     1 0.000
#> 1772122_300_E07     1 0.000
#> 1772122_298_H12     1 0.000
#> 1772122_298_D11     1 0.000
#> 1772122_299_G12     1 0.000
#> 1772122_302_F05     1 0.000
#> 1772122_300_E09     1 0.000
#> 1772122_301_G09     1 1.000
#> 1772122_300_F02     1 0.000
#> 1772122_301_G11     1 0.000
#> 1772122_302_D05     1 0.000
#> 1772122_302_E11     1 0.000
#> 1772122_299_A05     1 0.000
#> 1772122_299_H06     1 0.000
#> 1772122_301_A01     1 0.000
#> 1772122_299_D04     1 0.000
#> 1772122_180_E07     1 0.000
#> 1772122_300_E02     1 0.000
#> 1772122_301_A09     1 0.000
#> 1772122_301_B05     1 0.000
#> 1772122_302_G09     1 0.498
#> 1772122_299_A06     1 0.000
#> 1772122_301_B12     1 0.000
#> 1772122_324_H10     1 0.000
#> 1772122_301_F03     1 0.249
#> 1772122_325_F03     3 0.000
#> 1772122_181_H01     1 0.000
#> 1772122_325_F05     1 1.000
#> 1772122_301_E02     1 0.249
#> 1772122_302_F11     1 0.000
#> 1772122_300_C06     1 1.000
#> 1772122_302_G04     1 0.000
#> 1772122_299_C05     1 0.000
#> 1772122_302_H08     1 0.000
#> 1772122_300_G08     1 0.000
#> 1772122_298_B07     2 0.000
#> 1772122_299_B02     1 0.000
#> 1772122_301_A05     1 0.000
#> 1772122_302_B11     1 0.000
#> 1772122_299_H04     1 0.000
#> 1772122_299_G07     1 0.000
#> 1772122_300_C09     1 0.000
#> 1772122_300_A03     1 0.000
#> 1772122_302_A02     1 0.000
#> 1772122_302_H07     1 0.000
#> 1772122_300_C07     1 0.000
#> 1772122_298_C02     1 1.000
#> 1772122_300_E12     1 0.000
#> 1772122_299_H12     1 0.000
#> 1772122_300_B04     1 0.000
#> 1772122_300_H05     1 0.000
#> 1772122_299_D09     1 0.000
#> 1772122_299_B04     1 0.000
#> 1772122_298_A09     1 0.000
#> 1772122_298_E02     1 0.000
#> 1772122_302_D06     1 0.000
#> 1772122_180_F12     1 0.000
#> 1772122_298_F02     1 1.000
#> 1772122_301_B11     1 0.000
#> 1772122_301_H01     1 0.000
#> 1772122_298_H08     3 1.000
#> 1772122_301_H06     1 0.000
#> 1772122_301_F02     1 0.000
#> 1772122_305_D01     1 0.000
#> 1772122_181_D10     1 0.000
#> 1772122_182_E04     1 0.000
#> 1772122_182_B12     1 0.000
#> 1772122_301_E01     1 0.000
#> 1772122_306_A11     2 0.498
#> 1772122_315_B01     1 0.249
#> 1772122_300_B05     1 0.000
#> 1772122_298_A01     1 0.000
#> 1772122_182_A01     1 0.000
#> 1772122_315_C10     2 0.000
#> 1772122_300_C12     1 0.000
#> 1772122_299_D11     1 0.000
#> 1772122_302_B05     1 0.000
#> 1772122_180_C08     1 0.000
#> 1772122_302_C08     1 0.000
#> 1772122_300_D10     1 0.000
#> 1772122_299_C10     1 0.000
#> 1772122_302_E12     1 0.000
#> 1772122_298_H04     1 0.000
#> 1772122_182_D09     1 0.000
#> 1772122_300_D07     1 0.000
#> 1772122_298_F12     1 0.000
#> 1772122_299_A01     1 0.000
#> 1772122_299_F12     1 0.000
#> 1772122_298_B05     1 0.000
#> 1772122_301_C01     1 0.000
#> 1772122_298_A08     1 0.000
#> 1772122_180_F05     1 0.751
#> 1772122_299_H10     1 0.000
#> 1772122_299_D01     1 0.000
#> 1772122_302_A01     1 0.000
#> 1772122_298_H10     1 0.000
#> 1772122_298_F05     1 0.000
#> 1772122_301_C06     1 0.000
#> 1772122_298_C04     1 0.000
#> 1772122_181_G05     1 0.498
#> 1772122_298_D04     1 0.000
#> 1772122_180_B10     1 0.000
#> 1772122_180_H04     1 0.000
#> 1772122_301_B03     1 0.000
#> 1772122_298_A11     1 0.000
#> 1772122_182_D04     1 0.000
#> 1772122_300_H10     1 0.000
#> 1772122_301_B06     1 0.000
#> 1772122_301_D06     1 0.000
#> 1772122_298_A03     1 0.000
#> 1772122_301_A11     1 0.000
#> 1772122_301_F06     1 0.000
#> 1772122_298_F04     1 0.000
#> 1772122_300_H12     1 0.000
#> 1772122_301_B07     1 0.000
#> 1772122_299_F04     1 0.000
#> 1772122_300_E04     1 0.000
#> 1772122_299_F11     1 0.000
#> 1772122_300_H09     1 0.000
#> 1772122_302_C02     1 0.000
#> 1772122_301_D05     1 0.000
#> 1772122_301_H04     1 0.000
#> 1772122_300_G06     1 0.000
#> 1772122_299_H07     1 0.000
#> 1772122_298_H06     1 0.000
#> 1772122_301_G06     1 0.000
#> 1772122_301_C10     1 0.000
#> 1772122_300_B11     1 0.000
#> 1772122_301_C08     1 0.000
#> 1772122_301_D07     1 0.000
#> 1772122_301_D04     1 0.000
#> 1772122_301_G05     1 0.000
#> 1772122_301_H09     1 0.000
#> 1772122_302_F02     1 0.249
#> 1772122_300_F11     1 0.000
#> 1772122_301_C11     1 0.000
#> 1772122_301_F11     1 0.249
#> 1772122_302_C11     1 0.000
#> 1772122_299_A08     1 0.000
#> 1772122_301_E10     1 0.000
#> 1772122_300_D11     1 0.000
#> 1772122_182_A12     1 0.000
#> 1772122_301_C05     1 0.000
#> 1772122_302_B09     1 0.000
#> 1772122_299_B10     1 0.000
#> 1772122_182_F09     1 0.498
#> 1772122_299_F03     1 0.000
#> 1772122_315_F03     2 0.000
#> 1772122_303_C09     1 1.000
#> 1772122_306_H10     2 0.000
#> 1772122_306_E09     1 0.000
#> 1772122_305_F05     2 0.000
#> 1772122_306_H04     2 0.253
#> 1772122_305_B03     1 0.000
#> 1772122_305_A01     1 0.249
#> 1772122_303_D10     2 0.000
#> 1772122_306_C10     1 0.000
#> 1772122_303_D01     1 0.000
#> 1772122_315_C01     2 0.000
#> 1772122_305_E08     2 0.000
#> 1772122_305_E03     2 0.000
#> 1772122_305_E12     1 0.000
#> 1772122_306_A04     2 0.000
#> 1772122_305_C02     2 0.000
#> 1772122_303_F12     1 0.249
#> 1772122_303_H08     2 0.000
#> 1772122_305_E06     2 0.000
#> 1772122_306_A10     2 0.000
#> 1772122_315_H03     2 0.000
#> 1772122_315_F01     3 1.000
#> 1772122_306_G06     2 0.000
#> 1772122_303_B09     2 0.000
#> 1772122_306_D12     1 0.000
#> 1772122_303_E07     1 0.000
#> 1772122_315_H07     2 0.000
#> 1772122_305_E04     2 0.000
#> 1772122_306_H06     2 0.000
#> 1772122_305_D04     2 0.000
#> 1772122_306_C09     1 0.000
#> 1772122_315_G10     2 0.000
#> 1772122_315_D06     2 0.000
#> 1772122_306_F01     2 0.000
#> 1772122_315_H06     2 0.000
#> 1772122_315_A05     2 0.000
#> 1772122_315_E10     2 0.000
#> 1772122_306_G04     2 0.000
#> 1772122_315_G06     2 0.502
#> 1772122_315_H10     2 0.000
#> 1772122_305_G10     1 0.000
#> 1772122_315_E05     2 0.000
#> 1772122_315_F10     1 0.000
#> 1772122_305_C11     2 1.000
#> 1772122_306_A08     2 0.000
#> 1772122_305_E05     2 0.000
#> 1772122_306_E12     2 0.000
#> 1772122_315_A06     2 0.000
#> 1772122_306_G09     1 0.000
#> 1772122_315_B05     1 0.000
#> 1772122_305_E01     2 0.000
#> 1772122_306_G05     2 0.000
#> 1772122_315_A10     2 0.000
#> 1772122_315_D04     3 1.000
#> 1772122_306_G03     2 0.000
#> 1772122_306_H08     1 0.000
#> 1772122_305_D08     2 0.000
#> 1772122_315_D05     2 0.000
#> 1772122_306_H03     2 1.000
#> 1772122_306_F08     2 0.000
#> 1772122_306_D03     2 0.000
#> 1772122_306_B04     2 0.000
#> 1772122_306_G07     2 0.000
#> 1772122_306_A07     1 0.000
#> 1772122_315_H11     2 0.000
#> 1772122_306_A03     2 0.000
#> 1772122_315_H02     2 0.000
#> 1772122_306_F12     2 0.000
#> 1772122_205_A06     2 0.000
#> 1772122_205_E05     2 0.249
#> 1772122_306_B11     2 0.000
#> 1772122_302_F01     1 0.000
#> 1772122_315_F11     2 0.000
#> 1772122_306_B09     2 0.000
#> 1772122_305_G02     1 0.000
#> 1772122_262_A05     1 1.000
#> 1772122_305_H09     1 0.000
#> 1772122_306_F11     1 1.000
#> 1772122_315_D12     2 0.000
#> 1772122_315_B11     1 0.000
#> 1772122_306_D02     2 0.249
#> 1772122_302_G01     1 0.000
#> 1772122_306_C11     1 0.000
#> 1772122_315_D08     1 0.000
#> 1772122_306_E08     2 0.000
#> 1772122_315_D09     2 0.000
#> 1772122_306_G12     2 0.000
#> 1772122_315_E01     2 0.000
#> 1772122_300_D12     1 0.000
#> 1772122_315_H09     2 0.000
#> 1772122_306_F06     2 0.000
#> 1772122_315_B07     2 0.000
#> 1772122_306_E07     1 0.000
#> 1772122_315_E11     2 0.000
#> 1772122_315_C03     2 0.000
#> 1772122_306_A02     1 0.249
#> 1772122_315_G12     1 0.000
#> 1772122_306_A06     1 0.000
#> 1772122_315_D10     2 1.000
#> 1772122_306_D11     1 1.000
#> 1772122_306_E10     1 0.000
#> 1772122_315_A12     2 0.000
#> 1772122_306_B05     1 0.000
#> 1772122_263_E12     3 0.000
#> 1772122_205_B05     1 1.000
#> 1772122_315_G07     2 0.000
#> 1772122_306_F04     1 0.000
#> 1772122_306_F02     2 0.000
#> 1772122_315_A03     1 0.000
#> 1772122_315_H01     1 0.000
#> 1772122_302_G11     1 0.000
#> 1772122_315_B03     3 1.000
#> 1772122_306_G02     2 0.000
#> 1772122_315_F09     2 0.000
#> 1772122_306_D08     2 0.000
#> 1772122_315_F12     2 1.000
#> 1772122_303_C07     2 0.000
#> 1772122_305_D02     2 0.498
#> 1772122_305_E07     2 0.000
#> 1772122_305_B09     2 0.000
#> 1772122_303_C04     2 0.000
#> 1772122_303_G03     2 0.000
#> 1772122_305_F11     2 0.000
#> 1772122_315_F07     2 0.000
#> 1772122_306_F09     2 0.000
#> 1772122_305_B12     2 0.000
#> 1772122_305_H02     1 1.000
#> 1772122_305_C04     3 0.498
#> 1772122_305_H03     2 1.000
#> 1772122_305_A06     2 1.000
#> 1772122_303_C08     2 0.000
#> 1772122_303_C01     2 0.000
#> 1772122_303_G02     2 0.000
#> 1772122_303_A06     2 0.000
#> 1772122_315_E06     2 0.000
#> 1772122_303_C10     2 0.000
#> 1772122_303_B07     2 0.000
#> 1772122_305_H04     1 0.000
#> 1772122_306_D10     2 0.000
#> 1772122_315_C12     1 0.502
#> 1772122_303_A08     1 0.000
#> 1772122_303_H02     2 0.000
#> 1772122_305_C06     2 0.000
#> 1772122_303_D02     2 0.000
#> 1772122_303_E08     2 0.000
#> 1772122_303_F04     1 0.000
#> 1772122_303_A10     1 0.000
#> 1772122_305_G11     2 0.000
#> 1772122_306_A01     2 0.000
#> 1772122_305_F10     2 0.000
#> 1772122_300_G03     1 0.000
#> 1772122_305_A10     1 0.000
#> 1772122_305_G08     2 1.000
#> 1772122_303_G08     1 0.249
#> 1772122_305_A03     2 0.000
#> 1772122_303_A07     2 0.000
#> 1772122_299_D12     1 0.000
#> 1772122_305_G09     1 0.000
#> 1772122_305_E10     1 0.000
#> 1772122_298_F07     1 0.000
#> 1772122_301_E08     1 0.000
#> 1772122_262_F01     1 1.000
#> 1772122_300_G05     1 0.000
#> 1772122_305_H12     2 0.000
#> 1772122_298_C06     1 0.000
#> 1772122_300_H03     1 0.000
#> 1772122_305_A04     1 1.000
#> 1772122_305_A12     2 0.000
#> 1772122_303_F03     2 0.000
#> 1772122_305_H10     2 0.000
#> 1772122_305_A05     1 0.249
#> 1772122_305_H08     2 0.000
#> 1772122_305_G04     1 0.000
#> 1772122_305_C10     2 0.000
#> 1772122_315_D11     2 0.000
#> 1772122_305_C01     2 0.000
#> 1772122_306_B10     1 0.249
#> 1772122_305_B07     2 0.000
#> 1772122_305_B02     2 0.000
#> 1772122_303_C11     1 0.000
#> 1772122_305_F01     3 0.498
#> 1772122_303_E02     3 0.747
#> 1772122_303_E09     2 0.000
#> 1772122_315_C07     1 0.000
#> 1772122_306_A09     2 0.000
#> 1772122_303_B05     2 0.000
#> 1772122_306_C04     2 0.000
#> 1772122_305_H06     2 0.000
#> 1772122_306_C02     2 0.000
#> 1772122_315_E02     2 0.000
#> 1772122_315_A04     2 0.000
#> 1772122_306_H05     2 0.751
#> 1772122_306_E11     2 0.000
#> 1772122_302_E08     1 0.000
#> 1772122_306_G11     2 1.000
#> 1772122_182_F01     1 0.000
#> 1772122_315_B09     2 1.000
#> 1772122_298_B01     1 0.000
#> 1772122_315_C06     2 0.000
#> 1772122_303_G07     2 0.000
#> 1772122_306_B06     2 0.000
#> 1772122_305_E09     2 0.000
#> 1772122_306_E05     2 0.000
#> 1772122_306_F07     2 0.000
#> 1772122_315_F05     2 0.000
#> 1772122_315_B12     2 0.000
#> 1772122_302_E02     1 0.000
#> 1772122_306_C08     2 0.000
#> 1772122_315_G05     2 0.000
#> 1772122_315_D07     2 0.000
#> 1772122_315_F06     2 0.000
#> 1772122_315_E04     2 0.000
#> 1772122_305_D09     2 0.000
#> 1772122_301_A12     1 0.000
#> 1772122_303_F09     2 0.000
#> 1772122_315_E12     2 0.000
#> 1772122_303_F08     2 0.000
#> 1772122_315_F08     2 0.000
#> 1772122_305_A11     2 0.000
#> 1772122_315_C05     2 0.000
#> 1772122_303_G01     2 0.000
#> 1772122_303_H03     2 0.000
#> 1772122_315_B08     2 0.000
#> 1772122_305_D10     2 0.000
#> 1772122_305_B10     1 0.000
#> 1772122_315_H12     2 0.000
#> 1772122_315_G08     2 0.000
#> 1772122_305_A07     2 0.000
#> 1772122_315_B10     2 0.000
#> 1772122_306_F10     2 0.000
#> 1772122_306_C01     2 0.000
#> 1772122_315_G01     2 0.249
#> 1772122_306_D01     2 0.000
#> 1772122_306_E01     1 0.000
#> 1772122_306_D07     2 0.000
#> 1772122_306_C12     2 0.000
#> 1772122_305_B06     2 0.000
#> 1772122_305_D06     3 1.000
#> 1772122_305_H01     2 0.000
#> 1772122_315_G04     2 0.000
#> 1772122_305_F04     2 0.000
#> 1772122_305_F02     2 0.000
#> 1772122_303_A04     2 0.000
#> 1772122_299_G08     1 0.000
#> 1772122_300_C11     1 0.000
#> 1772122_301_H11     2 0.498
#> 1772122_301_E04     1 0.249
#> 1772122_301_E12     1 0.000
#> 1772122_301_E05     1 0.000
#> 1772122_301_D01     1 0.000
#> 1772122_180_A07     1 0.000
#> 1772122_301_F08     1 0.000
#> 1772122_300_D08     1 0.000
#> 1772122_299_E04     3 1.000
#> 1772122_300_A02     1 0.000
#> 1772122_299_G02     2 0.000
#> 1772122_180_H01     1 1.000
#> 1772122_298_G07     1 1.000
#> 1772122_299_A02     1 1.000
#> 1772122_181_F01     1 0.000
#> 1772122_180_A12     1 1.000
#> 1772122_302_G02     1 0.751
#> 1772122_180_E11     1 1.000
#> 1772122_298_E08     1 0.000
#> 1772122_302_E03     1 0.253
#> 1772122_300_B09     1 0.249
#> 1772122_182_C12     1 0.000
#> 1772122_181_A04     1 0.000
#> 1772122_182_A02     1 0.000
#> 1772122_180_E04     3 0.000
#> 1772122_181_C03     1 0.000
#> 1772122_181_D01     1 0.000
#> 1772122_181_B05     1 0.000
#> 1772122_180_G08     1 0.000
#> 1772122_180_G11     1 0.751
#> 1772122_302_F09     1 0.253
#> 1772122_300_G12     1 0.000
#> 1772122_298_D06     1 1.000
#> 1772122_299_H05     1 0.000
#> 1772122_180_B03     1 0.000
#> 1772122_300_G07     1 0.000
#> 1772122_298_E01     1 0.498
#> 1772122_298_G03     1 1.000
#> 1772122_302_A12     1 0.000
#> 1772122_181_D12     1 1.000
#> 1772122_299_E03     1 0.000
#> 1772122_181_D07     1 0.249
#> 1772122_298_H02     1 0.000
#> 1772122_181_H05     1 0.000
#> 1772122_181_E12     1 0.249
#> 1772122_302_F12     1 0.000
#> 1772122_299_G09     1 0.000
#> 1772122_182_B10     1 0.000
#> 1772122_182_A07     1 0.000
#> 1772122_298_F11     1 1.000
#> 1772122_181_G07     1 0.502
#> 1772122_182_B06     1 0.000
#> 1772122_299_G03     1 0.000
#> 1772122_298_A10     1 0.000
#> 1772122_180_B02     1 0.000
#> 1772122_298_E07     1 0.502
#> 1772122_300_C08     1 0.000
#> 1772122_298_D02     1 0.000
#> 1772122_299_A12     1 0.000
#> 1772122_182_B04     1 0.000
#> 1772122_298_A06     3 0.751
#> 1772122_181_E03     1 0.000
#> 1772122_299_B03     1 0.253
#> 1772122_181_C11     1 0.498
#> 1772122_181_H04     1 1.000
#> 1772122_300_D01     1 0.000
#> 1772122_302_E06     1 0.000
#> 1772122_301_G03     1 0.000
#> 1772122_302_A05     1 0.498
#> 1772122_300_H07     1 0.000
#> 1772122_301_B02     1 0.000
#> 1772122_182_G03     1 0.000
#> 1772122_301_C03     1 0.000
#> 1772122_180_D05     1 0.751
#> 1772122_180_D08     1 0.000
#> 1772122_299_C12     1 0.000
#> 1772122_302_H06     1 0.000
#> 1772122_298_E12     1 1.000
#> 1772122_298_B08     1 0.000
#> 1772122_302_G12     1 0.000
#> 1772122_300_E01     1 0.000
#> 1772122_300_B10     1 0.000
#> 1772122_180_G12     1 1.000
#> 1772122_300_F07     1 0.000
#> 1772122_180_B12     1 0.000
#> 1772122_182_F08     1 0.000
#> 1772122_302_E04     1 0.000
#> 1772122_298_F06     1 0.000
#> 1772122_300_C04     1 0.000
#> 1772122_302_H01     1 0.000
#> 1772122_302_D02     1 0.000
#> 1772122_182_E05     1 0.249
#> 1772122_182_E10     1 0.249
#> 1772122_182_B07     1 0.000
#> 1772122_180_A03     1 0.502
#> 1772122_180_F04     1 0.000
#> 1772122_299_D05     1 0.000
#> 1772122_182_F02     1 0.000
#> 1772122_299_E12     1 1.000
#> 1772122_298_A05     1 0.751
#> 1772122_298_B02     1 1.000
#> 1772122_181_F08     1 0.253
#> 1772122_298_C03     1 0.000
#> 1772122_300_G10     1 0.751
#> 1772122_182_E12     1 0.000
#> 1772122_298_B04     1 1.000
#> 1772122_301_E06     1 0.000
#> 1772122_182_H09     1 0.000
#> 1772122_302_A10     1 0.000
#> 1772122_181_F12     1 0.000
#> 1772122_302_H10     1 0.000
#> 1772122_302_H05     1 0.000
#> 1772122_181_D11     1 0.000
#> 1772122_298_G08     1 0.000
#> 1772122_298_H11     1 0.000
#> 1772122_180_G07     1 0.000
#> 1772122_180_A10     1 0.000
#> 1772122_298_D08     1 0.000
#> 1772122_299_B01     1 0.000
#> 1772122_299_F05     1 0.000
#> 1772122_302_B07     1 0.000
#> 1772122_180_E06     1 0.000
#> 1772122_301_A10     1 0.000
#> 1772122_182_A11     1 0.000
#> 1772122_180_G10     1 0.751
#> 1772122_301_D02     1 0.000
#> 1772122_301_F01     1 0.000
#> 1772122_181_A06     1 0.000
#> 1772122_181_B06     1 1.000
#> 1772122_182_F04     1 0.000
#> 1772122_181_F09     1 1.000
#> 1772122_182_D03     1 0.000
#> 1772122_300_F06     1 1.000
#> 1772122_300_D06     1 0.502
#> 1772122_299_D02     1 0.000
#> 1772122_301_G02     1 0.249
#> 1772122_299_H08     1 0.000
#> 1772122_300_C03     1 0.000
#> 1772122_299_B09     1 0.000
#> 1772122_301_A03     1 0.000
#> 1772122_300_H01     1 0.000
#> 1772122_300_C10     1 0.000
#> 1772122_300_A09     1 0.000
#> 1772122_298_H03     1 1.000
#> 1772122_299_C06     1 0.000
#> 1772122_182_E11     1 0.000
#> 1772122_300_B08     1 0.000
#> 1772122_300_C05     1 0.000
#> 1772122_300_E05     1 0.000
#> 1772122_180_C05     1 0.000
#> 1772122_300_E08     1 0.000
#> 1772122_181_G11     1 0.000
#> 1772122_300_G11     1 0.000
#> 1772122_300_D05     1 0.000
#> 1772122_300_A04     1 0.000
#> 1772122_300_B02     1 0.000
#> 1772122_302_A03     1 0.000
#> 1772122_180_G05     1 0.000
#> 1772122_300_F08     1 0.000
#> 1772122_182_E03     1 0.000
#> 1772122_299_G04     1 0.000
#> 1772122_298_A04     1 1.000
#> 1772122_181_E01     1 0.000
#> 1772122_302_C06     1 0.000
#> 1772122_298_B11     1 0.000
#> 1772122_182_F12     1 0.000
#> 1772122_180_H02     1 0.000
#> 1772122_180_A01     1 0.000
#> 1772122_180_C09     1 0.000
#> 1772122_180_D06     1 0.000
#> 1772122_302_B02     1 0.000
#> 1772122_300_G01     1 0.000
#> 1772122_298_E04     1 0.000
#> 1772122_301_C09     1 0.000
#> 1772122_301_E03     1 0.000
#> 1772122_180_C04     1 0.249
#> 1772122_299_F08     1 0.000
#> 1772122_180_H08     1 0.000
#> 1772122_298_D03     1 0.249
#> 1772122_180_D11     2 0.000
#> 1772122_180_A08     1 1.000
#> 1772122_181_A12     1 0.000
#> 1772122_180_C12     1 1.000
#> 1772122_182_B01     1 1.000
#> 1772122_180_H07     1 0.000
#> 1772122_182_E01     1 0.000
#> 1772122_181_C04     1 0.000
#> 1772122_180_D10     1 1.000
#> 1772122_181_B10     1 0.249
#> 1772122_182_F03     1 0.000
#> 1772122_180_B07     1 0.498
#> 1772122_181_C06     1 1.000
#> 1772122_181_G06     1 0.000
#> 1772122_181_H03     1 0.000
#> 1772122_181_F06     1 0.751
#> 1772122_181_D05     1 1.000
#> 1772122_299_E05     1 0.751
#> 1772122_182_E06     1 0.751
#> 1772122_302_C10     1 1.000
#> 1772122_182_H01     1 0.000
#> 1772122_181_C08     1 0.000
#> 1772122_299_H09     1 0.000
#> 1772122_182_B08     1 0.000
#> 1772122_299_H03     1 0.000
#> 1772122_181_B11     1 0.000
#> 1772122_180_C01     1 0.000
#> 1772122_182_C11     1 0.000
#> 1772122_182_B05     1 0.000
#> 1772122_302_A09     1 0.000
#> 1772122_182_C01     1 0.000
#> 1772122_299_C08     1 0.000
#> 1772122_299_G01     1 0.000
#> 1772122_182_E07     1 0.751
#> 1772122_181_H02     1 0.000
#> 1772122_181_D09     1 0.000
#> 1772122_180_G09     1 1.000
#> 1772122_181_D03     1 0.000
#> 1772122_181_H07     1 0.000
#> 1772122_298_C07     1 1.000
#> 1772122_182_D01     1 0.000
#> 1772122_302_H12     1 0.000
#> 1772122_299_A03     1 0.000
#> 1772122_181_H10     1 0.000
#> 1772122_180_E12     1 0.000
#> 1772122_180_B05     1 0.249
#> 1772122_181_H12     1 0.000
#> 1772122_180_E08     1 0.253
#> 1772122_180_F10     1 0.000
#> 1772122_180_F08     1 0.253
#> 1772122_181_F03     1 0.000
#> 1772122_299_E01     1 0.000
#> 1772122_181_B01     1 0.000
#> 1772122_180_F03     1 0.000
#> 1772122_300_G02     2 0.000
#> 1772122_182_B02     1 0.000
#> 1772122_181_F02     1 0.000
#> 1772122_181_B12     1 0.000
#> 1772122_182_D06     1 1.000
#> 1772122_181_F11     1 0.000
#> 1772122_181_E02     1 0.000
#> 1772122_180_C03     1 0.249
#> 1772122_180_B06     1 0.751
#> 1772122_180_D09     1 1.000
#> 1772122_182_H08     1 0.000
#> 1772122_298_C08     1 0.000
#> 1772122_182_C10     1 0.000
#> 1772122_180_D03     1 0.253
#> 1772122_182_A05     1 0.000
#> 1772122_299_H02     1 0.000
#> 1772122_180_B01     1 0.000
#> 1772122_299_C04     1 0.000
#> 1772122_180_B08     1 0.000
#> 1772122_181_F04     1 0.000
#> 1772122_182_B11     1 0.000
#> 1772122_298_G05     3 1.000
#> 1772122_181_E04     1 0.249
#> 1772122_181_D02     1 0.000
#> 1772122_182_A06     1 0.000
#> 1772122_181_A05     1 0.000
#> 1772122_181_B02     1 0.000
#> 1772122_182_D05     1 0.000
#> 1772122_181_F07     1 0.000
#> 1772122_181_H08     1 0.000
#> 1772122_181_C01     1 0.000
#> 1772122_182_C08     1 0.000
#> 1772122_180_F02     1 0.000
#> 1772122_181_G09     1 0.000
#> 1772122_181_E07     1 1.000
#> 1772122_180_F11     1 1.000
#> 1772122_302_B01     1 0.000
#> 1772122_180_F01     1 0.249
#> 1772122_180_E03     1 0.000
#> 1772122_181_A07     1 0.000
#> 1772122_299_E10     1 0.000
#> 1772122_181_B08     1 0.000
#> 1772122_298_A02     2 0.000
#> 1772122_299_A09     1 0.000
#> 1772122_182_B09     1 0.000
#> 1772122_182_G08     1 0.000
#> 1772122_181_F10     1 0.253
#> 1772122_204_D02     2 1.000
#> 1772122_206_B03     2 1.000
#> 1772122_206_G04     2 1.000
#> 1772122_204_E03     3 0.000
#> 1772122_205_H04     2 1.000
#> 1772122_206_A02     2 1.000
#> 1772122_204_G07     2 1.000
#> 1772122_262_A03     3 1.000
#> 1772122_206_H06     3 0.000
#> 1772122_205_C06     2 1.000
#> 1772122_206_F08     3 0.000
#> 1772122_205_D08     2 1.000
#> 1772122_204_G01     2 1.000
#> 1772122_262_E11     2 1.000
#> 1772122_205_B01     3 0.000
#> 1772122_204_E08     3 0.000
#> 1772122_262_E02     3 0.502
#> 1772122_205_H11     2 1.000
#> 1772122_205_E04     2 1.000
#> 1772122_204_B09     2 1.000
#> 1772122_262_E10     3 1.000
#> 1772122_204_B05     2 1.000
#> 1772122_206_B04     2 1.000
#> 1772122_262_C09     3 0.000
#> 1772122_206_B09     3 0.249
#> 1772122_206_B11     2 1.000
#> 1772122_204_A06     2 1.000
#> 1772122_205_G05     2 1.000
#> 1772122_205_C01     2 0.249
#> 1772122_262_E07     1 0.000
#> 1772122_204_A08     3 1.000
#> 1772122_204_H08     3 0.000
#> 1772122_206_F11     3 1.000
#> 1772122_262_H07     3 0.498
#> 1772122_262_B09     2 1.000
#> 1772122_205_B07     3 1.000
#> 1772122_206_E11     3 0.000
#> 1772122_262_H11     2 1.000
#> 1772122_205_D09     2 1.000
#> 1772122_204_F03     3 1.000
#> 1772122_204_C10     2 1.000
#> 1772122_206_C12     3 0.000
#> 1772122_206_F01     2 1.000
#> 1772122_262_D02     3 0.000
#> 1772122_206_H03     3 1.000
#> 1772122_205_A07     2 1.000
#> 1772122_206_E08     2 1.000
#> 1772122_206_A06     3 1.000
#> 1772122_206_E06     1 1.000
#> 1772122_262_D06     3 0.000
#> 1772122_205_H02     3 0.000
#> 1772122_262_F09     1 0.498
#> 1772122_206_F03     2 1.000
#> 1772122_262_C10     2 1.000
#> 1772122_204_C09     2 1.000
#> 1772122_206_G12     2 1.000
#> 1772122_262_C07     3 1.000
#> 1772122_205_A08     2 1.000
#> 1772122_206_H04     2 1.000
#> 1772122_205_A03     2 0.249
#> 1772122_204_E04     2 1.000
#> 1772122_205_G08     2 1.000
#> 1772122_204_A02     2 1.000
#> 1772122_262_G02     3 0.000
#> 1772122_205_F07     3 0.000
#> 1772122_205_H01     1 1.000
#> 1772122_206_H07     2 1.000
#> 1772122_262_H01     2 0.747
#> 1772122_205_C11     2 0.498
#> 1772122_262_H06     3 0.000
#> 1772122_205_C09     3 0.000
#> 1772122_204_A09     2 1.000
#> 1772122_206_C02     2 1.000
#> 1772122_204_C08     2 1.000
#> 1772122_204_F07     2 1.000
#> 1772122_204_F11     2 0.747
#> 1772122_204_B06     2 1.000
#> 1772122_262_C02     3 1.000
#> 1772122_205_F11     3 0.000
#> 1772122_206_D02     2 1.000
#> 1772122_204_C07     2 1.000
#> 1772122_205_D05     2 1.000
#> 1772122_204_A05     2 1.000
#> 1772122_206_G07     3 0.253
#> 1772122_206_A09     3 0.000
#> 1772122_206_G10     2 1.000
#> 1772122_206_A12     2 1.000
#> 1772122_262_A09     2 0.000
#> 1772122_205_E10     2 1.000
#> 1772122_206_B01     1 0.000
#> 1772122_206_D08     3 0.000
#> 1772122_206_A08     2 1.000
#> 1772122_325_D10     3 0.000
#> 1772122_205_A12     2 1.000
#> 1772122_204_B03     2 1.000
#> 1772122_204_F12     3 0.751
#> 1772122_205_B12     3 0.000
#> 1772122_326_B10     3 0.000
#> 1772122_204_A01     3 0.000
#> 1772122_205_F12     3 1.000
#> 1772122_205_C05     3 0.000
#> 1772122_204_E10     1 1.000
#> 1772122_262_H02     3 0.000
#> 1772122_262_G07     2 1.000
#> 1772122_204_H07     1 1.000
#> 1772122_204_A10     3 0.498
#> 1772122_262_D03     2 0.000
#> 1772122_262_H04     3 0.498
#> 1772122_262_B05     2 1.000
#> 1772122_262_B01     1 1.000
#> 1772122_204_D06     3 0.000
#> 1772122_263_C06     3 0.000
#> 1772122_204_G03     1 1.000
#> 1772122_204_D05     3 0.000
#> 1772122_262_G08     3 0.000
#> 1772122_204_C12     3 1.000
#> 1772122_262_A04     2 0.751
#> 1772122_262_H03     2 0.751
#> 1772122_206_B08     2 0.253
#> 1772122_204_D12     2 1.000
#> 1772122_262_E03     2 0.000
#> 1772122_206_F02     2 1.000
#> 1772122_206_G03     2 1.000
#> 1772122_206_G09     1 0.747
#> 1772122_205_H12     2 1.000
#> 1772122_262_F12     2 1.000
#> 1772122_204_G09     3 0.249
#> 1772122_204_F02     2 1.000
#> 1772122_206_C10     2 1.000
#> 1772122_204_D01     2 1.000
#> 1772122_206_C07     2 1.000
#> 1772122_206_F12     3 0.253
#> 1772122_262_C08     2 0.498
#> 1772122_206_G01     2 1.000
#> 1772122_206_F05     2 1.000
#> 1772122_205_E02     2 0.249
#> 1772122_262_H08     2 1.000
#> 1772122_326_D09     2 1.000
#> 1772122_262_D08     3 0.000
#> 1772122_204_F01     2 1.000
#> 1772122_206_F04     2 0.249
#> 1772122_206_E09     2 1.000
#> 1772122_206_E10     2 1.000
#> 1772122_204_F09     3 0.000
#> 1772122_205_H09     2 1.000
#> 1772122_206_G11     3 0.000
#> 1772122_206_C06     2 1.000
#> 1772122_204_D03     2 1.000
#> 1772122_206_C04     2 1.000
#> 1772122_262_A11     2 1.000
#> 1772122_206_E07     3 1.000
#> 1772122_205_H06     2 0.498
#> 1772122_262_F11     2 0.751
#> 1772122_204_D09     2 1.000
#> 1772122_205_H05     2 1.000
#> 1772122_206_B12     2 1.000
#> 1772122_204_B02     2 1.000
#> 1772122_204_B07     2 1.000
#> 1772122_205_C07     2 1.000
#> 1772122_205_B08     3 0.000
#> 1772122_262_C12     2 0.000
#> 1772122_206_A10     2 0.249
#> 1772122_206_D04     3 0.000
#> 1772122_262_F03     2 1.000
#> 1772122_206_D11     2 1.000
#> 1772122_204_A12     2 0.000
#> 1772122_205_A04     2 1.000
#> 1772122_205_F05     2 1.000
#> 1772122_205_B04     2 1.000
#> 1772122_206_H05     3 0.000
#> 1772122_206_C03     2 1.000
#> 1772122_204_A11     2 1.000
#> 1772122_262_E08     2 1.000
#> 1772122_262_B10     2 1.000
#> 1772122_206_G06     2 1.000
#> 1772122_205_G04     2 1.000
#> 1772122_262_D05     2 1.000
#> 1772122_206_F06     2 1.000
#> 1772122_206_E12     2 1.000
#> 1772122_204_C04     3 1.000
#> 1772122_262_G04     2 0.751
#> 1772122_204_C11     2 0.751
#> 1772122_205_G10     2 0.751
#> 1772122_204_E09     1 0.747
#> 1772122_262_B07     2 0.000
#> 1772122_204_C03     2 1.000
#> 1772122_206_A04     3 1.000
#> 1772122_204_A04     2 1.000
#> 1772122_205_H03     2 1.000
#> 1772122_204_D04     3 1.000
#> 1772122_205_B09     2 1.000
#> 1772122_205_F09     2 0.747
#> 1772122_204_F05     3 0.000
#> 1772122_205_A09     2 1.000
#> 1772122_205_E08     2 1.000
#> 1772122_262_C05     2 1.000
#> 1772122_262_G06     2 1.000
#> 1772122_262_F05     1 1.000
#> 1772122_262_F10     2 1.000
#> 1772122_204_B10     2 1.000
#> 1772122_205_G03     2 1.000
#> 1772122_206_A05     2 1.000
#> 1772122_205_D06     2 1.000
#> 1772122_206_E03     2 0.747
#> 1772122_206_B07     2 1.000
#> 1772122_204_A03     2 1.000
#> 1772122_262_B08     2 1.000
#> 1772122_206_E04     2 1.000
#> 1772122_205_D04     2 1.000
#> 1772122_262_D09     2 1.000
#> 1772122_205_A01     2 0.498
#> 1772122_204_B01     2 0.000
#> 1772122_206_H09     2 1.000
#> 1772122_205_G01     3 0.249
#> 1772122_206_D05     2 1.000
#> 1772122_204_B08     3 0.000
#> 1772122_262_D11     3 0.000
#> 1772122_205_B03     2 1.000
#> 1772122_205_G12     2 1.000
#> 1772122_206_H01     3 1.000
#> 1772122_205_C08     3 0.000
#> 1772122_262_G12     2 1.000
#> 1772122_204_C02     2 1.000
#> 1772122_262_A01     2 0.747
#> 1772122_263_B05     3 0.000
#> 1772122_206_B02     2 1.000
#> 1772122_262_F07     3 0.249
#> 1772122_325_B07     3 0.000
#> 1772122_205_C10     2 1.000
#> 1772122_262_G05     3 0.000
#> 1772122_205_D11     2 1.000
#> 1772122_204_E01     2 1.000
#> 1772122_262_B06     2 1.000
#> 1772122_262_E05     2 0.000
#> 1772122_206_C11     2 1.000
#> 1772122_204_D08     2 1.000
#> 1772122_204_E02     1 0.000
#> 1772122_205_D12     3 1.000
#> 1772122_262_G03     1 0.502
#> 1772122_205_A11     2 1.000
#> 1772122_205_D07     2 1.000
#> 1772122_262_F08     2 0.751
#> 1772122_205_C03     3 0.747
#> 1772122_262_G11     2 1.000
#> 1772122_262_D04     1 0.000
#> 1772122_205_H10     2 1.000
#> 1772122_262_B03     3 1.000
#> 1772122_204_B12     2 1.000
#> 1772122_205_A10     2 0.249
#> 1772122_262_D07     2 0.498
#> 1772122_205_F10     2 1.000
#> 1772122_204_G06     2 1.000
#> 1772122_204_E11     3 0.000
#> 1772122_205_E12     2 1.000
#> 1772122_206_E05     2 1.000
#> 1772122_206_C05     2 1.000
#> 1772122_205_C12     2 1.000
#> 1772122_204_E07     2 1.000
#> 1772122_205_F06     2 1.000
#> 1772122_262_A12     2 1.000
#> 1772122_206_H11     2 1.000
#> 1772122_204_E06     2 1.000
#> 1772122_205_B06     2 1.000
#> 1772122_262_B11     3 0.000
#> 1772122_262_C11     3 1.000
#> 1772122_262_A08     2 1.000
#> 1772122_206_G08     2 1.000
#> 1772122_262_B04     3 0.000
#> 1772122_205_C04     2 1.000
#> 1772122_205_B02     1 1.000
#> 1772122_206_B10     3 0.000
#> 1772122_206_D12     2 1.000
#> 1772122_262_E06     2 1.000
#> 1772122_262_D01     2 1.000
#> 1772122_262_F06     2 1.000
#> 1772122_325_C11     3 0.000
#> 1772122_325_B02     1 1.000
#> 1772122_326_A09     2 1.000
#> 1772122_205_E03     3 0.000
#> 1772122_326_F06     3 0.000
#> 1772122_324_A01     3 0.000
#> 1772122_326_E06     2 1.000
#> 1772122_326_C12     3 0.000
#> 1772122_263_D09     3 0.000
#> 1772122_324_C12     3 1.000
#> 1772122_326_C06     3 0.000
#> 1772122_324_D04     3 0.000
#> 1772122_263_A07     3 0.000
#> 1772122_326_G06     3 1.000
#> 1772122_324_C08     3 1.000
#> 1772122_326_G04     3 0.000
#> 1772122_206_G02     3 0.000
#> 1772122_325_G01     3 0.000
#> 1772122_263_F06     3 1.000
#> 1772122_263_E07     1 1.000
#> 1772122_263_F05     3 0.000
#> 1772122_324_D10     3 0.000
#> 1772122_263_F08     3 0.000
#> 1772122_325_A10     1 1.000
#> 1772122_206_D03     1 1.000
#> 1772122_263_A05     3 0.000
#> 1772122_263_D01     1 1.000
#> 1772122_324_C05     3 1.000
#> 1772122_262_A10     3 0.000
#> 1772122_263_A02     3 0.000
#> 1772122_326_A07     3 0.000
#> 1772122_324_B12     3 1.000
#> 1772122_325_F01     3 0.000
#> 1772122_326_B02     3 1.000
#> 1772122_324_A03     3 0.000
#> 1772122_262_A06     1 0.249
#> 1772122_204_H02     3 0.000
#> 1772122_263_B07     2 1.000
#> 1772122_325_E08     3 0.000
#> 1772122_326_B12     1 1.000
#> 1772122_325_E09     3 0.498
#> 1772122_263_C11     3 0.000
#> 1772122_325_A07     3 0.249
#> 1772122_263_B01     3 0.000
#> 1772122_263_C07     3 0.000
#> 1772122_263_C03     3 0.000
#> 1772122_326_D11     3 0.751
#> 1772122_263_D12     3 0.000
#> 1772122_326_F01     3 0.000
#> 1772122_325_B08     3 0.000
#> 1772122_263_G10     3 0.000
#> 1772122_326_B03     3 0.000
#> 1772122_324_C10     3 1.000
#> 1772122_325_A02     3 0.000
#> 1772122_325_D04     3 0.000
#> 1772122_263_C02     3 1.000
#> 1772122_263_G01     3 1.000
#> 1772122_324_E01     3 0.000
#> 1772122_325_F02     3 0.000
#> 1772122_324_E04     2 1.000
#> 1772122_325_D02     2 1.000
#> 1772122_263_E11     3 1.000
#> 1772122_324_A04     3 1.000
#> 1772122_325_C07     3 0.498
#> 1772122_263_A12     3 0.000
#> 1772122_325_E03     3 0.000
#> 1772122_326_E12     3 1.000
#> 1772122_325_A12     3 0.000
#> 1772122_326_F12     3 0.000
#> 1772122_325_D09     3 0.000
#> 1772122_325_B09     3 0.249
#> 1772122_324_C09     3 0.498
#> 1772122_325_G04     3 0.000
#> 1772122_324_B03     3 0.000
#> 1772122_324_D07     3 0.000
#> 1772122_324_E03     3 0.000
#> 1772122_326_A04     3 0.000
#> 1772122_326_F03     3 0.000
#> 1772122_326_C05     3 1.000
#> 1772122_325_F09     3 0.000
#> 1772122_263_G07     3 0.249
#> 1772122_324_B11     3 0.000
#> 1772122_263_F04     1 1.000
#> 1772122_324_E12     3 1.000
#> 1772122_326_E11     2 1.000
#> 1772122_263_C04     3 0.000
#> 1772122_324_G10     3 0.000
#> 1772122_262_B02     1 1.000
#> 1772122_263_H04     3 0.000
#> 1772122_206_C08     3 0.000
#> 1772122_324_D08     3 0.000
#> 1772122_325_C12     3 0.000
#> 1772122_326_D06     3 0.000
#> 1772122_263_B11     3 0.000
#> 1772122_325_C03     3 1.000
#> 1772122_326_E10     3 0.000
#> 1772122_325_B03     1 1.000
#> 1772122_325_A11     3 0.000
#> 1772122_326_A01     1 1.000
#> 1772122_325_D06     3 0.000
#> 1772122_326_D10     3 0.000
#> 1772122_325_A04     3 0.000
#> 1772122_263_E03     3 0.000
#> 1772122_324_E02     3 1.000
#> 1772122_324_B01     3 0.000
#> 1772122_263_B02     3 1.000
#> 1772122_325_E05     1 1.000
#> 1772122_325_A09     3 0.000
#> 1772122_326_F05     1 1.000
#> 1772122_263_D02     3 0.000
#> 1772122_325_F07     3 0.000
#> 1772122_204_H03     1 1.000
#> 1772122_263_H03     1 1.000
#> 1772122_324_A12     3 0.249
#> 1772122_324_C06     3 1.000
#> 1772122_263_B04     3 0.747
#> 1772122_263_C12     3 0.000
#> 1772122_324_A05     3 1.000
#> 1772122_325_D07     2 1.000
#> 1772122_326_G05     3 1.000
#> 1772122_324_E05     3 0.000
#> 1772122_324_A09     2 1.000
#> 1772122_326_C07     3 0.000
#> 1772122_326_C04     3 0.000
#> 1772122_263_E08     3 0.000
#> 1772122_263_A10     3 1.000
#> 1772122_324_A08     3 0.000
#> 1772122_263_D05     3 0.000
#> 1772122_324_A07     3 0.249
#> 1772122_325_F08     3 0.000
#> 1772122_326_F09     1 1.000
#> 1772122_325_G07     3 0.000
#> 1772122_324_C04     3 0.000
#> 1772122_326_H02     1 1.000
#> 1772122_326_E03     3 0.000
#> 1772122_263_B03     3 0.000
#> 1772122_263_A09     3 0.000
#> 1772122_326_E08     3 0.000
#> 1772122_325_B01     3 0.000
#> 1772122_263_E05     3 0.000
#> 1772122_263_A03     3 0.000
#> 1772122_263_D10     3 0.000
#> 1772122_263_H06     3 0.747
#> 1772122_325_C08     3 0.000
#> 1772122_326_A05     3 0.000
#> 1772122_263_C08     3 1.000
#> 1772122_325_B10     3 0.000
#> 1772122_263_H05     3 0.000
#> 1772122_325_B11     3 0.000
#> 1772122_206_H08     1 0.000
#> 1772122_204_G12     3 0.000
#> 1772122_263_C10     3 0.000
#> 1772122_263_E06     3 1.000
#> 1772122_263_H11     3 0.000
#> 1772122_263_D07     3 0.000
#> 1772122_263_G08     1 1.000
#> 1772122_326_G11     3 0.000
#> 1772122_324_B04     2 1.000
#> 1772122_263_E09     3 0.000
#> 1772122_263_D03     3 0.000
#> 1772122_326_A03     3 0.000
#> 1772122_326_A08     3 0.000
#> 1772122_326_F10     3 0.000
#> 1772122_324_E09     3 1.000
#> 1772122_324_E06     3 1.000
#> 1772122_325_H01     3 0.000
#> 1772122_326_B05     3 0.000
#> 1772122_325_D08     3 0.000
#> 1772122_263_D08     3 0.000
#> 1772122_324_C03     3 0.000
#> 1772122_326_A10     3 0.000
#> 1772122_326_H05     2 1.000
#> 1772122_324_D11     3 0.498
#> 1772122_326_H03     3 0.000
#> 1772122_326_A02     3 0.000
#> 1772122_263_F10     3 0.000
#> 1772122_326_A11     3 0.000
#> 1772122_326_H12     2 1.000
#> 1772122_325_A05     3 0.000
#> 1772122_326_D01     3 0.000
#> 1772122_324_E08     3 0.000
#> 1772122_325_C09     3 0.000
#> 1772122_325_A03     3 0.000
#> 1772122_263_D11     2 1.000
#> 1772122_324_C11     3 1.000
#> 1772122_263_H10     3 0.000
#> 1772122_324_A10     2 1.000
#> 1772122_325_C05     3 1.000
#> 1772122_326_G03     3 0.000
#> 1772122_326_E07     3 0.000
#> 1772122_263_F11     3 0.249
#> 1772122_326_C10     3 0.000
#> 1772122_326_G08     3 0.000
#> 1772122_326_D05     3 0.000
#> 1772122_326_H11     3 0.000
#> 1772122_325_H08     3 0.000
#> 1772122_326_B11     3 0.000
#> 1772122_326_B07     3 1.000
#> 1772122_325_B12     3 0.000
#> 1772122_263_A04     3 0.000
#> 1772122_324_C07     2 1.000
#> 1772122_326_A12     3 0.000
#> 1772122_324_A11     2 1.000
#> 1772122_324_B07     3 1.000
#> 1772122_326_C09     3 0.000
#> 1772122_325_E06     3 0.000
#> 1772122_324_F01     3 0.000
#> 1772122_324_D02     3 0.000
#> 1772122_325_E04     1 1.000
#> 1772122_324_A06     3 1.000
#> 1772122_324_B05     3 1.000
#> 1772122_263_G03     3 0.000
#> 1772122_324_E07     2 1.000
#> 1772122_324_B08     3 0.000
#> 1772122_324_A02     3 1.000
#> 1772122_324_C01     2 1.000
#> 1772122_326_H04     2 1.000
#> 1772122_325_C04     3 0.000
#> 1772122_326_C01     3 0.000
#> 1772122_324_C02     2 1.000
#> 1772122_324_B09     2 1.000
#> 1772122_325_G08     3 0.000
#> 1772122_263_E04     3 0.000
#> 1772122_324_B06     2 1.000
#> 1772122_325_A06     3 0.000
#> 1772122_326_D07     3 0.000
#> 1772122_324_D06     2 1.000
#> 1772122_324_D05     3 1.000
#> 1772122_324_B02     3 1.000
#> 1772122_324_B10     3 1.000
#> 1772122_263_E10     3 0.000
#> 1772122_263_F01     3 0.000
#> 1772122_310_B10     2 0.000
#> 1772122_311_D04     2 0.000
#> 1772122_311_B04     2 0.000
#> 1772122_310_D05     2 0.000
#> 1772122_314_E09     3 0.751
#> 1772122_311_A03     2 0.000
#> 1772122_312_E01     1 0.000
#> 1772122_312_B08     3 0.249
#> 1772122_314_F11     2 0.000
#> 1772122_312_E02     2 0.000
#> 1772122_311_E12     2 0.000
#> 1772122_311_C02     2 0.249
#> 1772122_312_G11     2 0.000
#> 1772122_310_F11     2 0.000
#> 1772122_314_C07     1 0.249
#> 1772122_310_B07     2 0.000
#> 1772122_312_B03     2 0.000
#> 1772122_312_E03     1 0.000
#> 1772122_312_D01     1 1.000
#> 1772122_312_C09     2 0.000
#> 1772122_314_D05     3 0.502
#> 1772122_314_H06     2 0.000
#> 1772122_312_C04     2 0.000
#> 1772122_312_H07     3 1.000
#> 1772122_311_F07     2 0.000
#> 1772122_312_A06     2 0.000
#> 1772122_312_A09     2 0.000
#> 1772122_310_B06     2 0.000
#> 1772122_314_D10     2 0.000
#> 1772122_312_F08     3 1.000
#> 1772122_310_F02     2 0.000
#> 1772122_314_F12     2 0.000
#> 1772122_312_E06     2 0.000
#> 1772122_314_A07     2 1.000
#> 1772122_312_H09     2 0.000
#> 1772122_312_D06     2 0.000
#> 1772122_314_A05     2 0.000
#> 1772122_310_H06     2 0.000
#> 1772122_310_C12     2 0.000
#> 1772122_311_F11     2 0.000
#> 1772122_314_D07     2 0.249
#> 1772122_311_E11     3 0.498
#> 1772122_311_F12     1 1.000
#> 1772122_314_A06     2 0.000
#> 1772122_314_G09     2 0.249
#> 1772122_312_B11     2 0.000
#> 1772122_314_B03     2 0.000
#> 1772122_314_B07     2 0.000
#> 1772122_312_D05     2 0.000
#> 1772122_314_G06     2 0.000
#> 1772122_314_H02     3 0.000
#> 1772122_312_C10     2 0.000
#> 1772122_310_E12     1 0.000
#> 1772122_314_B12     2 0.000
#> 1772122_310_E07     2 0.000
#> 1772122_314_D11     2 0.000
#> 1772122_311_C12     3 0.747
#> 1772122_310_E03     2 0.000
#> 1772122_314_G10     2 0.000
#> 1772122_314_C04     2 0.000
#> 1772122_312_H02     2 0.000
#> 1772122_312_C01     2 0.000
#> 1772122_314_A04     2 0.000
#> 1772122_311_A05     3 0.502
#> 1772122_310_B05     2 0.000
#> 1772122_310_D08     1 0.000
#> 1772122_310_A03     2 0.000
#> 1772122_312_F12     2 0.000
#> 1772122_310_F09     2 0.000
#> 1772122_311_A06     2 0.000
#> 1772122_314_F01     1 0.000
#> 1772122_311_G09     1 0.000
#> 1772122_312_E09     2 0.000
#> 1772122_312_C08     2 0.000
#> 1772122_310_C09     1 0.000
#> 1772122_312_H06     1 0.000
#> 1772122_314_D12     2 0.000
#> 1772122_311_B09     2 0.000
#> 1772122_312_D12     2 0.000
#> 1772122_314_F10     2 1.000
#> 1772122_312_B09     1 1.000
#> 1772122_310_G06     2 0.000
#> 1772122_314_F04     2 0.000
#> 1772122_312_F10     2 0.000
#> 1772122_310_H05     2 0.000
#> 1772122_312_B04     2 0.000
#> 1772122_310_G10     2 0.000
#> 1772122_314_C10     2 0.000
#> 1772122_311_F01     2 0.000
#> 1772122_314_E12     2 0.000
#> 1772122_314_H10     1 1.000
#> 1772122_312_E12     2 0.000
#> 1772122_314_F05     2 0.000
#> 1772122_312_F01     2 0.000
#> 1772122_311_G08     2 0.000
#> 1772122_312_A11     2 0.747
#> 1772122_310_F10     1 0.000
#> 1772122_310_E10     2 0.000
#> 1772122_312_C11     1 0.249
#> 1772122_314_G11     2 0.000
#> 1772122_312_F07     2 1.000
#> 1772122_314_E07     2 0.000
#> 1772122_314_C08     2 0.249
#> 1772122_310_G03     1 0.000
#> 1772122_314_A12     2 0.000
#> 1772122_311_C01     2 0.000
#> 1772122_314_D08     2 0.000
#> 1772122_310_A04     2 0.000
#> 1772122_314_E02     2 0.000
#> 1772122_312_B06     2 0.000
#> 1772122_312_D07     2 0.000
#> 1772122_312_B01     2 0.000
#> 1772122_311_F09     2 0.000
#> 1772122_314_E03     3 0.000
#> 1772122_314_G01     3 0.000
#> 1772122_312_B07     2 0.000
#> 1772122_312_F06     2 0.000
#> 1772122_310_G01     2 0.000
#> 1772122_314_G02     2 0.000
#> 1772122_312_G07     1 0.498
#> 1772122_314_A08     3 0.253
#> 1772122_310_A05     2 0.000
#> 1772122_314_A02     2 0.000
#> 1772122_312_E08     2 1.000
#> 1772122_312_A12     2 0.000
#> 1772122_310_E04     2 0.000
#> 1772122_310_H09     2 0.249
#> 1772122_311_D09     2 0.000
#> 1772122_311_H06     2 0.000
#> 1772122_311_G04     2 0.000
#> 1772122_311_H04     2 0.000
#> 1772122_310_G02     2 0.000
#> 1772122_310_E05     2 0.000
#> 1772122_311_C09     2 0.000
#> 1772122_310_G07     2 0.000
#> 1772122_311_E09     2 0.000
#> 1772122_310_F12     2 0.000
#> 1772122_310_F04     2 0.000
#> 1772122_311_G10     2 0.000
#> 1772122_311_D06     2 0.000
#> 1772122_311_D02     2 0.000
#> 1772122_310_E08     1 1.000
#> 1772122_310_D12     2 0.000
#> 1772122_311_B05     2 0.000
#> 1772122_310_E02     2 0.000
#> 1772122_310_F05     2 0.000
#> 1772122_310_C10     2 0.000
#> 1772122_311_F04     1 0.000
#> 1772122_311_C03     1 0.249
#> 1772122_310_A02     2 0.000
#> 1772122_310_D09     2 0.000
#> 1772122_311_C10     1 0.000
#> 1772122_311_D03     2 0.000
#> 1772122_311_G07     2 0.249
#> 1772122_310_E11     2 0.000
#> 1772122_311_H05     2 0.000
#> 1772122_311_E04     2 0.000
#> 1772122_311_C05     1 0.751
#> 1772122_311_G11     2 0.000
#> 1772122_311_E06     2 0.000
#> 1772122_311_G12     2 0.000
#> 1772122_311_A10     2 0.000
#> 1772122_311_A07     2 0.000
#> 1772122_310_D02     2 0.000
#> 1772122_311_H03     2 0.000
#> 1772122_310_C01     1 0.000
#> 1772122_310_A07     2 0.000
#> 1772122_310_D06     2 0.000
#> 1772122_311_A01     2 0.000
#> 1772122_311_B01     2 1.000
#> 1772122_310_H01     2 0.249
#> 1772122_310_A12     2 0.000
#> 1772122_311_B11     2 0.000
#> 1772122_310_A01     2 0.000
#> 1772122_311_D11     2 0.000
#> 1772122_310_H02     2 0.000
#> 1772122_310_H12     2 0.000
#> 1772122_311_F05     2 0.000
#> 1772122_311_A12     2 0.000
#> 1772122_310_A09     2 0.000
#> 1772122_311_H11     2 0.000
#> 1772122_311_E05     2 0.000
#> 1772122_311_A09     2 0.000
#> 1772122_314_H08     2 0.000
#> 1772122_312_F05     2 0.000
#> 1772122_312_A07     2 0.000
#> 1772122_310_H04     2 0.000
#> 1772122_310_D11     2 0.000
#> 1772122_310_A10     2 0.000
#> 1772122_310_H10     2 0.000
#> 1772122_310_G05     2 0.000
#> 1772122_310_D10     2 0.000
#> 1772122_314_C05     2 0.000
#> 1772122_312_F02     2 0.000
#> 1772122_310_B09     2 0.000
#> 1772122_310_F06     2 0.000
#> 1772122_310_E06     2 0.000
#> 1772122_311_D10     2 0.000
#> 1772122_311_E03     2 0.000
#> 1772122_310_G04     2 0.000
#> 1772122_311_B07     2 0.000
#> 1772122_311_C11     2 0.000
#> 1772122_314_B04     2 0.000
#> 1772122_312_F04     2 0.000
#> 1772122_314_D03     2 0.000
#> 1772122_310_C05     1 0.253
#> 1772122_314_B06     2 0.000
#> 1772122_310_D01     1 0.000
#> 1772122_314_H07     2 0.000
#> 1772122_314_C12     2 0.249
#> 1772122_314_C06     2 0.000
#> 1772122_312_H11     2 0.000
#> 1772122_312_C03     1 0.000
#> 1772122_312_H12     2 0.000
#> 1772122_312_H08     2 0.000
#> 1772122_314_E04     2 0.000
#> 1772122_312_H05     2 0.000
#> 1772122_310_C06     2 0.000
#> 1772122_312_G06     2 0.249
#> 1772122_314_E08     2 0.000
#> 1772122_314_G05     2 0.000
#> 1772122_314_D09     2 0.000
#> 1772122_314_B05     2 0.000
#> 1772122_314_B08     2 0.000
#> 1772122_314_A10     2 0.000
#> 1772122_312_D08     2 0.000
#> 1772122_312_C07     2 0.000
#> 1772122_312_D10     2 0.000
#> 1772122_312_B02     2 0.000
#> 1772122_312_C06     2 0.000
#> 1772122_312_G04     2 0.751
#> 1772122_314_F02     1 1.000
#> 1772122_314_H04     2 0.000
#> 1772122_312_A03     2 0.000
#> 1772122_314_C09     2 0.000
#> 1772122_314_H03     2 1.000
#> 1772122_314_E11     2 0.000
#> 1772122_314_H12     2 0.000
#> 1772122_312_E04     2 0.000
#> 1772122_312_G12     2 0.000
#> 1772122_314_H05     2 0.000
#> 1772122_314_D04     2 0.000
#> 1772122_312_F11     2 0.000
#> 1772122_310_D03     1 0.000
#> 1772122_310_D04     2 0.000
#> 1772122_311_E08     2 0.000
#> 1772122_310_B11     2 0.000
#> 1772122_311_E10     2 0.000
#> 1772122_312_E10     2 0.000
#> 1772122_310_C04     2 0.000
#> 1772122_312_A04     1 0.000
#> 1772122_310_B02     1 0.249
#> 1772122_314_G04     2 0.249
#> 1772122_311_H07     2 0.000
#> 1772122_312_D03     2 0.000
#> 1772122_314_A03     2 0.000
#> 1772122_312_D04     2 0.000
#> 1772122_312_D02     2 0.000
#> 1772122_314_H11     2 0.000
#> 1772122_311_B06     2 0.000
#> 1772122_312_E05     2 0.000
#> 1772122_314_F06     2 0.000
#> 1772122_314_B11     2 0.000
#> 1772122_312_G02     2 0.000
#> 1772122_312_C05     2 0.000
#> 1772122_311_F10     2 0.498
#> 1772122_311_B12     2 0.000
#> 1772122_314_E06     2 0.000
#> 1772122_314_C01     2 0.498
#> 1772122_312_D11     2 0.000
#> 1772122_310_F01     2 0.000
#> 1772122_314_E05     2 0.000
#> 1772122_312_H10     2 0.000
#> 1772122_311_G01     2 0.000
#> 1772122_310_C03     2 0.000
#> 1772122_312_F09     2 0.000
#> 1772122_311_C08     2 0.000
#> 1772122_314_B10     2 0.000
#> 1772122_310_B03     2 0.000
#> 1772122_311_D08     2 0.000
#> 1772122_310_A11     2 0.000
#> 1772122_312_H03     1 0.000
#> 1772122_311_F02     2 0.000
#> 1772122_310_G12     2 0.000
#> 1772122_311_H01     2 0.000
#> 1772122_311_A04     2 0.000
#> 1772122_311_G06     2 0.000
#> 1772122_312_G09     2 1.000
#> 1772122_314_C11     2 0.000
#> 1772122_312_C02     2 0.000
#> 1772122_312_B12     2 0.000
#> 1772122_314_B01     2 0.000
#> 1772122_311_D07     2 0.000
#> 1772122_311_A08     2 0.000
#> 1772122_314_B09     2 0.000
#> 1772122_312_D09     2 0.000
#> 1772122_311_B10     2 0.000
#> 1772122_310_G08     2 0.000
#> 1772122_311_D12     2 0.000
#> 1772122_310_B04     2 0.000
#> 1772122_310_C02     2 0.000
#> 1772122_311_H12     2 0.000
#> 1772122_310_A08     2 0.000
#> 1772122_310_B08     2 0.000
#> 1772122_311_A02     2 0.000
#> 1772122_314_B02     3 0.747
#> 1772122_311_B02     2 0.000
#> 1772122_310_F08     2 0.000
#> 1772122_311_F08     2 0.000
#> 1772122_314_F08     2 0.000
#> 1772122_312_A02     2 0.000
#> 1772122_311_C04     2 0.249
#> 1772122_314_E01     2 0.000
#> 1772122_311_H10     2 0.000
#> 1772122_314_G12     2 0.000
#> 1772122_312_A10     2 0.000
#> 1772122_314_G08     2 0.000
#> 1772122_311_F06     2 0.000
#> 1772122_312_E11     2 0.000
#> 1772122_310_H11     2 0.498
#> 1772122_311_H02     2 0.000

show/hide code output

get_classes(res, k = 4)
#>                 class     p
#> 1772122_301_C02     1 0.000
#> 1772122_180_E05     1 0.000
#> 1772122_300_H02     1 0.000
#> 1772122_180_B09     1 0.000
#> 1772122_180_G04     1 0.000
#> 1772122_182_E09     1 0.000
#> 1772122_302_C04     1 0.000
#> 1772122_302_D11     1 0.000
#> 1772122_180_C11     1 0.000
#> 1772122_298_A07     1 0.000
#> 1772122_299_A11     1 0.000
#> 1772122_298_D09     1 0.000
#> 1772122_180_A06     1 0.000
#> 1772122_302_G06     1 0.000
#> 1772122_182_D07     1 0.000
#> 1772122_182_D02     1 0.000
#> 1772122_300_D04     1 0.000
#> 1772122_300_E06     1 0.000
#> 1772122_300_F10     1 0.000
#> 1772122_301_G12     1 0.000
#> 1772122_301_F09     1 0.000
#> 1772122_301_C12     1 0.000
#> 1772122_301_F07     1 0.000
#> 1772122_301_F05     1 0.000
#> 1772122_301_D08     1 0.000
#> 1772122_301_G10     1 0.000
#> 1772122_301_C04     1 0.000
#> 1772122_301_G07     1 0.000
#> 1772122_301_B08     1 0.000
#> 1772122_301_G04     1 0.000
#> 1772122_298_G11     1 0.000
#> 1772122_301_H03     1 0.000
#> 1772122_302_G07     1 0.249
#> 1772122_301_D10     1 0.000
#> 1772122_300_F01     1 0.000
#> 1772122_299_H11     1 0.000
#> 1772122_299_B05     1 0.000
#> 1772122_301_C07     1 0.000
#> 1772122_298_C12     1 0.000
#> 1772122_300_A05     1 0.000
#> 1772122_300_H06     1 0.000
#> 1772122_301_E07     1 0.000
#> 1772122_301_A02     1 0.000
#> 1772122_299_F02     1 0.000
#> 1772122_300_D02     1 0.000
#> 1772122_301_H05     1 0.249
#> 1772122_181_C12     1 0.000
#> 1772122_180_H06     1 0.000
#> 1772122_302_D07     1 0.000
#> 1772122_302_A08     1 0.000
#> 1772122_180_H12     1 0.000
#> 1772122_180_H10     1 0.000
#> 1772122_182_G02     1 0.000
#> 1772122_181_E09     1 0.000
#> 1772122_299_F06     1 0.000
#> 1772122_302_H11     1 0.000
#> 1772122_180_G03     1 0.000
#> 1772122_301_H12     1 0.000
#> 1772122_300_D03     1 0.000
#> 1772122_299_C07     1 0.000
#> 1772122_182_E08     1 0.000
#> 1772122_302_G08     1 0.000
#> 1772122_301_A04     1 0.000
#> 1772122_302_D04     1 0.000
#> 1772122_300_E11     1 0.000
#> 1772122_300_C01     1 0.000
#> 1772122_181_A03     1 0.000
#> 1772122_298_C11     1 0.000
#> 1772122_298_E09     1 0.000
#> 1772122_298_H07     1 0.249
#> 1772122_300_B12     1 0.000
#> 1772122_300_H08     1 0.000
#> 1772122_298_F03     1 0.000
#> 1772122_182_A09     1 0.000
#> 1772122_182_C09     1 0.000
#> 1772122_298_D10     1 0.000
#> 1772122_298_D05     1 0.000
#> 1772122_299_C01     1 0.000
#> 1772122_180_A02     1 0.000
#> 1772122_300_F05     1 0.000
#> 1772122_182_A10     1 0.000
#> 1772122_299_F10     1 0.000
#> 1772122_181_E05     1 0.000
#> 1772122_300_A12     1 0.000
#> 1772122_300_G04     1 0.000
#> 1772122_182_H12     1 0.000
#> 1772122_302_G10     1 0.000
#> 1772122_182_C06     1 0.000
#> 1772122_298_E06     1 0.000
#> 1772122_300_A01     1 0.000
#> 1772122_300_E03     1 0.000
#> 1772122_302_C05     1 0.000
#> 1772122_299_G06     1 0.000
#> 1772122_299_F09     1 0.000
#> 1772122_302_C12     1 0.000
#> 1772122_299_E07     1 0.000
#> 1772122_180_D02     1 0.000
#> 1772122_300_D09     1 0.000
#> 1772122_298_F09     1 0.253
#> 1772122_302_A11     1 0.000
#> 1772122_180_F06     1 0.000
#> 1772122_299_E09     1 0.000
#> 1772122_180_A05     1 0.000
#> 1772122_182_C05     1 0.000
#> 1772122_181_C05     1 0.000
#> 1772122_300_A06     1 0.000
#> 1772122_181_A02     1 0.000
#> 1772122_181_E11     1 0.000
#> 1772122_298_C05     1 0.000
#> 1772122_181_C07     1 0.000
#> 1772122_182_C02     1 0.000
#> 1772122_300_E10     1 0.000
#> 1772122_299_D06     1 0.000
#> 1772122_180_F09     1 0.000
#> 1772122_299_B07     1 0.000
#> 1772122_300_F04     1 0.000
#> 1772122_180_D12     1 0.000
#> 1772122_180_H11     1 0.000
#> 1772122_300_A10     1 0.000
#> 1772122_299_G05     1 0.000
#> 1772122_299_E06     1 0.000
#> 1772122_205_D01     2 0.498
#> 1772122_262_E04     3 0.000
#> 1772122_206_F10     3 1.000
#> 1772122_325_B06     3 0.000
#> 1772122_205_A05     3 0.000
#> 1772122_263_H07     3 0.000
#> 1772122_262_F04     3 0.000
#> 1772122_305_D11     2 0.751
#> 1772122_315_A07     1 0.000
#> 1772122_303_B02     2 0.000
#> 1772122_315_F04     2 0.000
#> 1772122_205_E06     2 0.000
#> 1772122_204_C06     3 0.751
#> 1772122_263_F12     3 0.000
#> 1772122_306_H07     2 1.000
#> 1772122_206_D10     1 0.000
#> 1772122_325_G03     1 1.000
#> 1772122_324_D12     3 1.000
#> 1772122_205_C02     2 0.000
#> 1772122_315_F02     1 0.000
#> 1772122_206_A11     3 0.000
#> 1772122_262_D12     2 0.000
#> 1772122_182_H11     1 0.000
#> 1772122_325_D01     3 0.000
#> 1772122_205_E01     2 0.000
#> 1772122_326_E02     3 0.000
#> 1772122_263_G09     1 0.000
#> 1772122_326_G02     3 0.000
#> 1772122_326_C11     3 0.000
#> 1772122_324_D01     3 0.000
#> 1772122_326_D08     3 1.000
#> 1772122_326_G12     1 1.000
#> 1772122_263_A11     3 0.000
#> 1772122_315_G09     2 0.000
#> 1772122_263_C01     3 0.249
#> 1772122_306_B03     2 0.000
#> 1772122_204_D11     2 0.000
#> 1772122_206_A03     2 0.000
#> 1772122_263_H09     3 0.000
#> 1772122_325_E01     3 0.000
#> 1772122_263_B06     3 1.000
#> 1772122_263_D06     3 0.000
#> 1772122_325_A08     1 1.000
#> 1772122_326_F04     3 0.000
#> 1772122_263_G11     1 1.000
#> 1772122_205_G06     2 0.000
#> 1772122_299_A07     1 0.000
#> 1772122_305_C05     2 0.000
#> 1772122_305_G06     2 0.000
#> 1772122_303_A03     1 0.000
#> 1772122_303_A05     1 0.000
#> 1772122_306_H11     2 0.000
#> 1772122_325_H09     3 0.000
#> 1772122_263_D04     3 0.000
#> 1772122_298_H05     1 0.000
#> 1772122_303_B12     1 0.000
#> 1772122_315_A11     2 0.751
#> 1772122_303_D05     1 0.000
#> 1772122_263_B12     3 0.000
#> 1772122_306_G01     2 0.498
#> 1772122_326_H08     3 1.000
#> 1772122_206_H10     1 0.000
#> 1772122_326_H07     3 0.000
#> 1772122_326_H10     3 0.000
#> 1772122_263_A01     3 0.000
#> 1772122_204_F08     2 0.000
#> 1772122_326_F11     3 0.000
#> 1772122_326_G10     3 0.000
#> 1772122_206_D01     2 0.000
#> 1772122_263_H02     1 1.000
#> 1772122_306_E02     1 0.000
#> 1772122_306_F05     2 0.000
#> 1772122_306_B12     2 0.000
#> 1772122_306_B07     2 0.000
#> 1772122_306_A12     2 0.000
#> 1772122_204_C01     2 0.000
#> 1772122_315_E03     1 0.000
#> 1772122_305_G07     1 0.000
#> 1772122_315_E08     2 0.000
#> 1772122_262_A07     2 0.000
#> 1772122_306_H02     1 0.000
#> 1772122_206_B06     2 0.000
#> 1772122_315_H08     2 0.000
#> 1772122_303_D08     1 0.000
#> 1772122_303_H07     1 0.000
#> 1772122_306_D05     1 0.253
#> 1772122_305_H05     1 0.000
#> 1772122_302_B03     1 0.000
#> 1772122_300_B03     1 0.000
#> 1772122_299_E02     1 0.000
#> 1772122_303_B01     1 0.751
#> 1772122_298_B10     1 0.000
#> 1772122_298_D07     1 0.000
#> 1772122_298_G09     1 0.000
#> 1772122_300_E07     1 0.000
#> 1772122_298_H12     1 0.000
#> 1772122_298_D11     1 0.000
#> 1772122_299_G12     1 0.000
#> 1772122_302_F05     1 0.000
#> 1772122_300_E09     1 0.000
#> 1772122_301_G09     3 0.751
#> 1772122_300_F02     1 0.000
#> 1772122_301_G11     1 0.000
#> 1772122_302_D05     1 0.000
#> 1772122_302_E11     1 0.000
#> 1772122_299_A05     1 0.000
#> 1772122_299_H06     1 0.000
#> 1772122_301_A01     1 0.000
#> 1772122_299_D04     1 0.000
#> 1772122_180_E07     1 0.000
#> 1772122_300_E02     1 0.000
#> 1772122_301_A09     1 0.000
#> 1772122_301_B05     1 0.000
#> 1772122_302_G09     1 0.000
#> 1772122_299_A06     1 0.000
#> 1772122_301_B12     1 0.000
#> 1772122_324_H10     1 0.000
#> 1772122_301_F03     1 0.000
#> 1772122_325_F03     3 0.000
#> 1772122_181_H01     1 0.000
#> 1772122_325_F05     1 0.000
#> 1772122_301_E02     1 0.000
#> 1772122_302_F11     1 0.000
#> 1772122_300_C06     3 1.000
#> 1772122_302_G04     1 0.000
#> 1772122_299_C05     1 0.000
#> 1772122_302_H08     1 0.000
#> 1772122_300_G08     1 0.000
#> 1772122_298_B07     2 0.000
#> 1772122_299_B02     1 0.000
#> 1772122_301_A05     1 0.000
#> 1772122_302_B11     1 0.000
#> 1772122_299_H04     1 0.000
#> 1772122_299_G07     1 0.000
#> 1772122_300_C09     1 0.000
#> 1772122_300_A03     1 0.000
#> 1772122_302_A02     1 0.000
#> 1772122_302_H07     1 0.000
#> 1772122_300_C07     1 0.000
#> 1772122_298_C02     1 0.000
#> 1772122_300_E12     1 0.000
#> 1772122_299_H12     1 0.000
#> 1772122_300_B04     1 0.000
#> 1772122_300_H05     1 0.000
#> 1772122_299_D09     1 0.000
#> 1772122_299_B04     1 0.000
#> 1772122_298_A09     1 0.000
#> 1772122_298_E02     1 0.000
#> 1772122_302_D06     1 0.000
#> 1772122_180_F12     1 0.000
#> 1772122_298_F02     1 0.000
#> 1772122_301_B11     1 0.000
#> 1772122_301_H01     1 0.000
#> 1772122_298_H08     2 0.751
#> 1772122_301_H06     1 0.000
#> 1772122_301_F02     1 0.000
#> 1772122_305_D01     1 0.000
#> 1772122_181_D10     1 0.000
#> 1772122_182_E04     1 0.000
#> 1772122_182_B12     1 0.000
#> 1772122_301_E01     1 0.000
#> 1772122_306_A11     2 0.000
#> 1772122_315_B01     1 0.000
#> 1772122_300_B05     1 0.000
#> 1772122_298_A01     1 0.000
#> 1772122_182_A01     1 0.000
#> 1772122_315_C10     2 0.000
#> 1772122_300_C12     1 0.000
#> 1772122_299_D11     1 0.000
#> 1772122_302_B05     1 0.000
#> 1772122_180_C08     1 0.000
#> 1772122_302_C08     1 0.000
#> 1772122_300_D10     1 0.000
#> 1772122_299_C10     1 0.000
#> 1772122_302_E12     1 0.000
#> 1772122_298_H04     1 0.000
#> 1772122_182_D09     1 0.000
#> 1772122_300_D07     1 0.000
#> 1772122_298_F12     1 0.000
#> 1772122_299_A01     1 0.000
#> 1772122_299_F12     1 0.000
#> 1772122_298_B05     1 0.000
#> 1772122_301_C01     1 0.000
#> 1772122_298_A08     1 0.000
#> 1772122_180_F05     1 0.000
#> 1772122_299_H10     1 0.000
#> 1772122_299_D01     1 0.000
#> 1772122_302_A01     1 0.000
#> 1772122_298_H10     1 0.000
#> 1772122_298_F05     1 0.000
#> 1772122_301_C06     1 0.000
#> 1772122_298_C04     1 0.000
#> 1772122_181_G05     1 0.000
#> 1772122_298_D04     1 0.000
#> 1772122_180_B10     1 0.000
#> 1772122_180_H04     1 0.000
#> 1772122_301_B03     1 0.000
#> 1772122_298_A11     1 0.000
#> 1772122_182_D04     1 0.000
#> 1772122_300_H10     1 0.000
#> 1772122_301_B06     1 0.000
#> 1772122_301_D06     1 0.000
#> 1772122_298_A03     1 0.000
#> 1772122_301_A11     1 0.000
#> 1772122_301_F06     1 0.000
#> 1772122_298_F04     1 0.000
#> 1772122_300_H12     1 0.000
#> 1772122_301_B07     1 0.000
#> 1772122_299_F04     1 0.000
#> 1772122_300_E04     1 0.000
#> 1772122_299_F11     1 0.000
#> 1772122_300_H09     1 0.000
#> 1772122_302_C02     1 0.000
#> 1772122_301_D05     1 0.000
#> 1772122_301_H04     1 0.000
#> 1772122_300_G06     1 0.000
#> 1772122_299_H07     1 0.000
#> 1772122_298_H06     1 0.000
#> 1772122_301_G06     1 0.000
#> 1772122_301_C10     1 0.000
#> 1772122_300_B11     1 0.000
#> 1772122_301_C08     1 0.000
#> 1772122_301_D07     1 0.000
#> 1772122_301_D04     1 0.000
#> 1772122_301_G05     1 0.000
#> 1772122_301_H09     1 0.000
#> 1772122_302_F02     1 0.000
#> 1772122_300_F11     1 0.000
#> 1772122_301_C11     1 0.000
#> 1772122_301_F11     1 0.000
#> 1772122_302_C11     1 0.000
#> 1772122_299_A08     1 0.000
#> 1772122_301_E10     1 0.000
#> 1772122_300_D11     1 0.000
#> 1772122_182_A12     1 0.000
#> 1772122_301_C05     1 0.000
#> 1772122_302_B09     1 0.000
#> 1772122_299_B10     1 0.000
#> 1772122_182_F09     1 0.000
#> 1772122_299_F03     1 0.000
#> 1772122_315_F03     2 0.000
#> 1772122_303_C09     1 0.249
#> 1772122_306_H10     2 0.000
#> 1772122_306_E09     1 0.000
#> 1772122_305_F05     2 0.000
#> 1772122_306_H04     2 0.000
#> 1772122_305_B03     1 0.000
#> 1772122_305_A01     1 0.253
#> 1772122_303_D10     2 0.000
#> 1772122_306_C10     1 0.000
#> 1772122_303_D01     1 0.000
#> 1772122_315_C01     2 0.000
#> 1772122_305_E08     2 0.000
#> 1772122_305_E03     2 0.000
#> 1772122_305_E12     1 0.000
#> 1772122_306_A04     2 0.000
#> 1772122_305_C02     2 0.000
#> 1772122_303_F12     1 0.000
#> 1772122_303_H08     2 0.000
#> 1772122_305_E06     2 0.000
#> 1772122_306_A10     2 0.000
#> 1772122_315_H03     2 0.000
#> 1772122_315_F01     2 1.000
#> 1772122_306_G06     2 0.000
#> 1772122_303_B09     2 0.000
#> 1772122_306_D12     1 0.249
#> 1772122_303_E07     1 0.000
#> 1772122_315_H07     2 0.000
#> 1772122_305_E04     2 0.000
#> 1772122_306_H06     2 0.000
#> 1772122_305_D04     2 0.000
#> 1772122_306_C09     1 0.000
#> 1772122_315_G10     2 0.000
#> 1772122_315_D06     2 0.000
#> 1772122_306_F01     2 0.000
#> 1772122_315_H06     2 0.000
#> 1772122_315_A05     2 0.000
#> 1772122_315_E10     2 0.000
#> 1772122_306_G04     2 0.000
#> 1772122_315_G06     2 0.751
#> 1772122_315_H10     2 0.000
#> 1772122_305_G10     1 0.249
#> 1772122_315_E05     2 0.000
#> 1772122_315_F10     1 0.000
#> 1772122_305_C11     2 0.249
#> 1772122_306_A08     2 0.000
#> 1772122_305_E05     2 0.000
#> 1772122_306_E12     2 0.000
#> 1772122_315_A06     2 0.000
#> 1772122_306_G09     1 0.000
#> 1772122_315_B05     1 0.253
#> 1772122_305_E01     2 0.000
#> 1772122_306_G05     2 0.000
#> 1772122_315_A10     2 0.000
#> 1772122_315_D04     2 1.000
#> 1772122_306_G03     2 0.000
#> 1772122_306_H08     1 0.000
#> 1772122_305_D08     2 0.000
#> 1772122_315_D05     2 0.000
#> 1772122_306_H03     1 1.000
#> 1772122_306_F08     2 0.000
#> 1772122_306_D03     2 0.000
#> 1772122_306_B04     2 0.000
#> 1772122_306_G07     2 0.000
#> 1772122_306_A07     1 0.000
#> 1772122_315_H11     2 0.000
#> 1772122_306_A03     2 0.000
#> 1772122_315_H02     2 0.000
#> 1772122_306_F12     2 0.000
#> 1772122_205_A06     2 0.000
#> 1772122_205_E05     2 0.000
#> 1772122_306_B11     2 0.000
#> 1772122_302_F01     1 0.000
#> 1772122_315_F11     2 0.000
#> 1772122_306_B09     2 0.000
#> 1772122_305_G02     1 1.000
#> 1772122_262_A05     1 1.000
#> 1772122_305_H09     1 0.000
#> 1772122_306_F11     1 1.000
#> 1772122_315_D12     2 0.000
#> 1772122_315_B11     1 0.000
#> 1772122_306_D02     2 0.000
#> 1772122_302_G01     1 0.000
#> 1772122_306_C11     1 0.000
#> 1772122_315_D08     1 0.000
#> 1772122_306_E08     2 0.000
#> 1772122_315_D09     2 0.000
#> 1772122_306_G12     2 0.000
#> 1772122_315_E01     2 0.000
#> 1772122_300_D12     1 0.000
#> 1772122_315_H09     2 0.000
#> 1772122_306_F06     2 0.000
#> 1772122_315_B07     2 0.000
#> 1772122_306_E07     1 0.000
#> 1772122_315_E11     2 0.000
#> 1772122_315_C03     2 0.000
#> 1772122_306_A02     1 0.253
#> 1772122_315_G12     1 0.000
#> 1772122_306_A06     1 0.000
#> 1772122_315_D10     2 0.249
#> 1772122_306_D11     1 0.253
#> 1772122_306_E10     1 0.000
#> 1772122_315_A12     2 0.000
#> 1772122_306_B05     1 0.000
#> 1772122_263_E12     3 0.000
#> 1772122_205_B05     1 1.000
#> 1772122_315_G07     2 0.000
#> 1772122_306_F04     1 0.000
#> 1772122_306_F02     2 0.000
#> 1772122_315_A03     1 0.751
#> 1772122_315_H01     1 0.000
#> 1772122_302_G11     1 0.000
#> 1772122_315_B03     3 1.000
#> 1772122_306_G02     2 0.000
#> 1772122_315_F09     2 0.000
#> 1772122_306_D08     2 0.000
#> 1772122_315_F12     2 1.000
#> 1772122_303_C07     2 0.000
#> 1772122_305_D02     2 0.498
#> 1772122_305_E07     2 0.000
#> 1772122_305_B09     2 0.000
#> 1772122_303_C04     2 0.000
#> 1772122_303_G03     2 0.000
#> 1772122_305_F11     2 0.000
#> 1772122_315_F07     2 0.000
#> 1772122_306_F09     2 0.000
#> 1772122_305_B12     2 0.000
#> 1772122_305_H02     1 0.502
#> 1772122_305_C04     2 0.249
#> 1772122_305_H03     2 1.000
#> 1772122_305_A06     2 1.000
#> 1772122_303_C08     2 0.000
#> 1772122_303_C01     2 0.000
#> 1772122_303_G02     2 0.000
#> 1772122_303_A06     2 0.000
#> 1772122_315_E06     2 0.000
#> 1772122_303_C10     2 0.000
#> 1772122_303_B07     2 0.000
#> 1772122_305_H04     1 0.000
#> 1772122_306_D10     2 0.000
#> 1772122_315_C12     1 0.000
#> 1772122_303_A08     1 0.000
#> 1772122_303_H02     2 0.000
#> 1772122_305_C06     2 0.000
#> 1772122_303_D02     2 0.000
#> 1772122_303_E08     2 0.000
#> 1772122_303_F04     1 0.000
#> 1772122_303_A10     1 0.000
#> 1772122_305_G11     2 0.000
#> 1772122_306_A01     2 0.000
#> 1772122_305_F10     2 0.000
#> 1772122_300_G03     1 0.000
#> 1772122_305_A10     1 0.000
#> 1772122_305_G08     2 1.000
#> 1772122_303_G08     1 0.000
#> 1772122_305_A03     2 0.000
#> 1772122_303_A07     2 0.000
#> 1772122_299_D12     1 0.000
#> 1772122_305_G09     1 0.000
#> 1772122_305_E10     1 0.000
#> 1772122_298_F07     1 0.000
#> 1772122_301_E08     1 0.000
#> 1772122_262_F01     1 1.000
#> 1772122_300_G05     1 0.000
#> 1772122_305_H12     2 0.000
#> 1772122_298_C06     1 0.000
#> 1772122_300_H03     1 0.000
#> 1772122_305_A04     1 0.000
#> 1772122_305_A12     2 0.000
#> 1772122_303_F03     2 0.249
#> 1772122_305_H10     2 0.000
#> 1772122_305_A05     1 0.253
#> 1772122_305_H08     2 0.000
#> 1772122_305_G04     1 0.000
#> 1772122_305_C10     2 0.000
#> 1772122_315_D11     2 0.000
#> 1772122_305_C01     2 0.000
#> 1772122_306_B10     1 0.000
#> 1772122_305_B07     2 0.000
#> 1772122_305_B02     2 0.000
#> 1772122_303_C11     1 0.000
#> 1772122_305_F01     2 0.751
#> 1772122_303_E02     2 0.000
#> 1772122_303_E09     2 0.249
#> 1772122_315_C07     1 0.000
#> 1772122_306_A09     2 0.000
#> 1772122_303_B05     2 0.000
#> 1772122_306_C04     2 0.000
#> 1772122_305_H06     2 0.000
#> 1772122_306_C02     2 0.000
#> 1772122_315_E02     2 0.000
#> 1772122_315_A04     2 0.000
#> 1772122_306_H05     2 0.000
#> 1772122_306_E11     2 0.000
#> 1772122_302_E08     1 0.000
#> 1772122_306_G11     2 1.000
#> 1772122_182_F01     1 0.000
#> 1772122_315_B09     2 0.747
#> 1772122_298_B01     1 0.000
#> 1772122_315_C06     2 0.000
#> 1772122_303_G07     2 0.000
#> 1772122_306_B06     2 0.000
#> 1772122_305_E09     2 0.000
#> 1772122_306_E05     2 0.000
#> 1772122_306_F07     2 0.000
#> 1772122_315_F05     2 0.000
#> 1772122_315_B12     2 0.000
#> 1772122_302_E02     1 0.000
#> 1772122_306_C08     2 0.000
#> 1772122_315_G05     2 0.000
#> 1772122_315_D07     2 0.000
#> 1772122_315_F06     2 0.000
#> 1772122_315_E04     2 0.000
#> 1772122_305_D09     2 0.000
#> 1772122_301_A12     1 0.000
#> 1772122_303_F09     2 0.000
#> 1772122_315_E12     2 0.000
#> 1772122_303_F08     2 0.000
#> 1772122_315_F08     2 0.000
#> 1772122_305_A11     2 0.000
#> 1772122_315_C05     2 0.000
#> 1772122_303_G01     2 0.000
#> 1772122_303_H03     2 0.000
#> 1772122_315_B08     2 0.000
#> 1772122_305_D10     2 0.000
#> 1772122_305_B10     1 0.000
#> 1772122_315_H12     2 0.000
#> 1772122_315_G08     2 0.000
#> 1772122_305_A07     2 0.000
#> 1772122_315_B10     2 0.000
#> 1772122_306_F10     2 0.000
#> 1772122_306_C01     2 0.000
#> 1772122_315_G01     2 0.000
#> 1772122_306_D01     2 0.000
#> 1772122_306_E01     1 0.000
#> 1772122_306_D07     2 0.000
#> 1772122_306_C12     2 0.000
#> 1772122_305_B06     2 0.000
#> 1772122_305_D06     2 0.751
#> 1772122_305_H01     2 0.000
#> 1772122_315_G04     2 0.000
#> 1772122_305_F04     2 0.000
#> 1772122_305_F02     2 0.000
#> 1772122_303_A04     2 0.000
#> 1772122_299_G08     1 0.000
#> 1772122_300_C11     1 0.000
#> 1772122_301_H11     3 1.000
#> 1772122_301_E04     1 0.000
#> 1772122_301_E12     1 0.000
#> 1772122_301_E05     1 0.000
#> 1772122_301_D01     1 0.000
#> 1772122_180_A07     1 0.000
#> 1772122_301_F08     1 0.000
#> 1772122_300_D08     1 0.000
#> 1772122_299_E04     3 1.000
#> 1772122_300_A02     1 0.000
#> 1772122_299_G02     2 0.000
#> 1772122_180_H01     1 1.000
#> 1772122_298_G07     1 1.000
#> 1772122_299_A02     1 0.502
#> 1772122_181_F01     1 0.000
#> 1772122_180_A12     1 0.000
#> 1772122_302_G02     1 0.000
#> 1772122_180_E11     3 0.751
#> 1772122_298_E08     1 0.000
#> 1772122_302_E03     1 0.249
#> 1772122_300_B09     1 0.000
#> 1772122_182_C12     1 0.000
#> 1772122_181_A04     1 0.000
#> 1772122_182_A02     1 0.000
#> 1772122_180_E04     3 0.000
#> 1772122_181_C03     1 0.000
#> 1772122_181_D01     1 0.000
#> 1772122_181_B05     1 0.000
#> 1772122_180_G08     1 0.000
#> 1772122_180_G11     1 0.249
#> 1772122_302_F09     1 0.747
#> 1772122_300_G12     1 0.000
#> 1772122_298_D06     1 0.000
#> 1772122_299_H05     1 0.000
#> 1772122_180_B03     1 0.000
#> 1772122_300_G07     1 0.000
#> 1772122_298_E01     1 0.000
#> 1772122_298_G03     1 0.253
#> 1772122_302_A12     1 0.000
#> 1772122_181_D12     1 0.000
#> 1772122_299_E03     1 0.000
#> 1772122_181_D07     1 0.751
#> 1772122_298_H02     1 0.000
#> 1772122_181_H05     1 0.000
#> 1772122_181_E12     1 0.000
#> 1772122_302_F12     1 0.000
#> 1772122_299_G09     1 0.000
#> 1772122_182_B10     1 0.000
#> 1772122_182_A07     1 0.000
#> 1772122_298_F11     1 0.000
#> 1772122_181_G07     1 0.000
#> 1772122_182_B06     1 0.000
#> 1772122_299_G03     1 0.000
#> 1772122_298_A10     1 0.000
#> 1772122_180_B02     1 0.000
#> 1772122_298_E07     1 0.000
#> 1772122_300_C08     1 0.000
#> 1772122_298_D02     1 0.000
#> 1772122_299_A12     1 0.000
#> 1772122_182_B04     1 0.000
#> 1772122_298_A06     2 1.000
#> 1772122_181_E03     1 0.000
#> 1772122_299_B03     1 0.000
#> 1772122_181_C11     1 0.000
#> 1772122_181_H04     1 0.000
#> 1772122_300_D01     1 0.000
#> 1772122_302_E06     1 0.000
#> 1772122_301_G03     1 0.000
#> 1772122_302_A05     1 0.000
#> 1772122_300_H07     1 0.000
#> 1772122_301_B02     1 0.000
#> 1772122_182_G03     1 0.000
#> 1772122_301_C03     1 0.000
#> 1772122_180_D05     1 0.000
#> 1772122_180_D08     1 0.000
#> 1772122_299_C12     1 0.000
#> 1772122_302_H06     1 0.249
#> 1772122_298_E12     1 0.000
#> 1772122_298_B08     1 0.000
#> 1772122_302_G12     1 0.000
#> 1772122_300_E01     1 0.000
#> 1772122_300_B10     1 0.000
#> 1772122_180_G12     1 0.249
#> 1772122_300_F07     1 0.000
#> 1772122_180_B12     1 0.000
#> 1772122_182_F08     1 0.000
#> 1772122_302_E04     1 0.000
#> 1772122_298_F06     1 0.000
#> 1772122_300_C04     1 0.000
#> 1772122_302_H01     1 0.000
#> 1772122_302_D02     1 0.000
#> 1772122_182_E05     1 0.000
#> 1772122_182_E10     1 0.000
#> 1772122_182_B07     1 0.000
#> 1772122_180_A03     1 0.249
#> 1772122_180_F04     1 0.000
#> 1772122_299_D05     1 0.000
#> 1772122_182_F02     1 0.000
#> 1772122_299_E12     1 0.000
#> 1772122_298_A05     1 0.000
#> 1772122_298_B02     1 0.000
#> 1772122_181_F08     1 0.000
#> 1772122_298_C03     1 0.000
#> 1772122_300_G10     1 0.000
#> 1772122_182_E12     1 0.000
#> 1772122_298_B04     1 1.000
#> 1772122_301_E06     1 0.000
#> 1772122_182_H09     1 0.000
#> 1772122_302_A10     1 0.000
#> 1772122_181_F12     1 0.000
#> 1772122_302_H10     1 0.000
#> 1772122_302_H05     1 0.000
#> 1772122_181_D11     1 0.000
#> 1772122_298_G08     1 0.000
#> 1772122_298_H11     1 0.000
#> 1772122_180_G07     1 0.000
#> 1772122_180_A10     1 0.000
#> 1772122_298_D08     1 0.000
#> 1772122_299_B01     1 0.000
#> 1772122_299_F05     1 0.249
#> 1772122_302_B07     1 0.000
#> 1772122_180_E06     1 0.000
#> 1772122_301_A10     1 0.000
#> 1772122_182_A11     1 0.000
#> 1772122_180_G10     1 0.000
#> 1772122_301_D02     1 0.000
#> 1772122_301_F01     1 0.000
#> 1772122_181_A06     1 0.000
#> 1772122_181_B06     1 0.751
#> 1772122_182_F04     1 0.000
#> 1772122_181_F09     3 0.000
#> 1772122_182_D03     1 0.000
#> 1772122_300_F06     1 0.253
#> 1772122_300_D06     1 0.000
#> 1772122_299_D02     1 0.000
#> 1772122_301_G02     1 0.000
#> 1772122_299_H08     1 0.000
#> 1772122_300_C03     1 0.000
#> 1772122_299_B09     1 0.000
#> 1772122_301_A03     1 0.000
#> 1772122_300_H01     1 0.000
#> 1772122_300_C10     1 0.000
#> 1772122_300_A09     1 0.000
#> 1772122_298_H03     1 0.000
#> 1772122_299_C06     1 0.000
#> 1772122_182_E11     1 0.000
#> 1772122_300_B08     1 0.000
#> 1772122_300_C05     1 0.000
#> 1772122_300_E05     1 0.000
#> 1772122_180_C05     1 0.000
#> 1772122_300_E08     1 0.000
#> 1772122_181_G11     1 0.000
#> 1772122_300_G11     1 0.000
#> 1772122_300_D05     1 0.000
#> 1772122_300_A04     1 0.000
#> 1772122_300_B02     1 0.000
#> 1772122_302_A03     1 0.000
#> 1772122_180_G05     1 0.000
#> 1772122_300_F08     1 0.000
#> 1772122_182_E03     1 0.000
#> 1772122_299_G04     1 0.000
#> 1772122_298_A04     1 1.000
#> 1772122_181_E01     1 0.000
#> 1772122_302_C06     1 0.000
#> 1772122_298_B11     1 0.000
#> 1772122_182_F12     1 0.000
#> 1772122_180_H02     1 0.000
#> 1772122_180_A01     1 0.000
#> 1772122_180_C09     1 0.000
#> 1772122_180_D06     1 0.498
#> 1772122_302_B02     1 0.000
#> 1772122_300_G01     1 0.000
#> 1772122_298_E04     1 0.000
#> 1772122_301_C09     1 0.000
#> 1772122_301_E03     1 0.000
#> 1772122_180_C04     1 0.000
#> 1772122_299_F08     1 0.000
#> 1772122_180_H08     1 0.000
#> 1772122_298_D03     1 0.000
#> 1772122_180_D11     2 0.000
#> 1772122_180_A08     1 1.000
#> 1772122_181_A12     1 0.000
#> 1772122_180_C12     1 0.249
#> 1772122_182_B01     1 0.000
#> 1772122_180_H07     1 0.000
#> 1772122_182_E01     1 0.000
#> 1772122_181_C04     1 0.000
#> 1772122_180_D10     1 0.502
#> 1772122_181_B10     1 0.000
#> 1772122_182_F03     1 0.000
#> 1772122_180_B07     1 1.000
#> 1772122_181_C06     1 0.751
#> 1772122_181_G06     1 0.000
#> 1772122_181_H03     1 0.000
#> 1772122_181_F06     1 0.498
#> 1772122_181_D05     1 0.502
#> 1772122_299_E05     1 0.000
#> 1772122_182_E06     1 0.249
#> 1772122_302_C10     1 0.000
#> 1772122_182_H01     1 0.000
#> 1772122_181_C08     1 0.000
#> 1772122_299_H09     1 0.000
#> 1772122_182_B08     1 0.000
#> 1772122_299_H03     1 0.000
#> 1772122_181_B11     1 0.000
#> 1772122_180_C01     1 0.502
#> 1772122_182_C11     1 0.000
#> 1772122_182_B05     1 0.000
#> 1772122_302_A09     1 0.000
#> 1772122_182_C01     1 0.000
#> 1772122_299_C08     1 0.000
#> 1772122_299_G01     1 0.000
#> 1772122_182_E07     1 0.000
#> 1772122_181_H02     1 0.000
#> 1772122_181_D09     1 0.000
#> 1772122_180_G09     1 0.000
#> 1772122_181_D03     1 0.000
#> 1772122_181_H07     1 0.000
#> 1772122_298_C07     1 1.000
#> 1772122_182_D01     1 0.000
#> 1772122_302_H12     1 0.000
#> 1772122_299_A03     1 0.000
#> 1772122_181_H10     1 0.000
#> 1772122_180_E12     1 0.000
#> 1772122_180_B05     1 0.000
#> 1772122_181_H12     1 0.000
#> 1772122_180_E08     1 0.000
#> 1772122_180_F10     1 0.000
#> 1772122_180_F08     1 0.000
#> 1772122_181_F03     1 0.000
#> 1772122_299_E01     1 0.000
#> 1772122_181_B01     1 0.000
#> 1772122_180_F03     1 0.000
#> 1772122_300_G02     2 0.000
#> 1772122_182_B02     1 0.000
#> 1772122_181_F02     1 0.000
#> 1772122_181_B12     1 0.000
#> 1772122_182_D06     1 0.249
#> 1772122_181_F11     1 0.000
#> 1772122_181_E02     1 0.000
#> 1772122_180_C03     1 0.000
#> 1772122_180_B06     1 0.000
#> 1772122_180_D09     1 0.000
#> 1772122_182_H08     1 0.000
#> 1772122_298_C08     1 0.000
#> 1772122_182_C10     1 0.000
#> 1772122_180_D03     1 0.000
#> 1772122_182_A05     1 0.000
#> 1772122_299_H02     1 0.000
#> 1772122_180_B01     1 1.000
#> 1772122_299_C04     1 0.000
#> 1772122_180_B08     1 0.000
#> 1772122_181_F04     1 0.000
#> 1772122_182_B11     1 0.000
#> 1772122_298_G05     1 0.502
#> 1772122_181_E04     1 0.000
#> 1772122_181_D02     1 0.000
#> 1772122_182_A06     1 0.000
#> 1772122_181_A05     1 0.000
#> 1772122_181_B02     1 0.000
#> 1772122_182_D05     1 0.000
#> 1772122_181_F07     1 0.000
#> 1772122_181_H08     1 0.000
#> 1772122_181_C01     1 0.000
#> 1772122_182_C08     1 0.000
#> 1772122_180_F02     1 0.000
#> 1772122_181_G09     1 0.000
#> 1772122_181_E07     1 1.000
#> 1772122_180_F11     1 0.000
#> 1772122_302_B01     1 0.000
#> 1772122_180_F01     1 0.000
#> 1772122_180_E03     1 0.000
#> 1772122_181_A07     1 0.000
#> 1772122_299_E10     1 0.000
#> 1772122_181_B08     1 0.000
#> 1772122_298_A02     2 1.000
#> 1772122_299_A09     1 0.000
#> 1772122_182_B09     1 0.000
#> 1772122_182_G08     1 0.000
#> 1772122_181_F10     1 0.000
#> 1772122_204_D02     2 0.000
#> 1772122_206_B03     2 0.000
#> 1772122_206_G04     2 0.000
#> 1772122_204_E03     3 0.000
#> 1772122_205_H04     2 0.000
#> 1772122_206_A02     2 0.000
#> 1772122_204_G07     2 0.000
#> 1772122_262_A03     2 0.751
#> 1772122_206_H06     3 0.000
#> 1772122_205_C06     2 0.000
#> 1772122_206_F08     3 0.502
#> 1772122_205_D08     2 1.000
#> 1772122_204_G01     2 0.000
#> 1772122_262_E11     2 0.000
#> 1772122_205_B01     3 0.000
#> 1772122_204_E08     3 1.000
#> 1772122_262_E02     3 1.000
#> 1772122_205_H11     2 0.000
#> 1772122_205_E04     2 0.498
#> 1772122_204_B09     2 0.000
#> 1772122_262_E10     2 0.000
#> 1772122_204_B05     2 0.000
#> 1772122_206_B04     2 0.000
#> 1772122_262_C09     3 0.000
#> 1772122_206_B09     3 1.000
#> 1772122_206_B11     2 0.000
#> 1772122_204_A06     2 0.000
#> 1772122_205_G05     2 0.249
#> 1772122_205_C01     2 0.000
#> 1772122_262_E07     1 0.502
#> 1772122_204_A08     2 1.000
#> 1772122_204_H08     3 0.000
#> 1772122_206_F11     2 0.000
#> 1772122_262_H07     3 1.000
#> 1772122_262_B09     2 0.000
#> 1772122_205_B07     2 0.502
#> 1772122_206_E11     3 0.000
#> 1772122_262_H11     2 0.000
#> 1772122_205_D09     2 0.000
#> 1772122_204_F03     2 0.502
#> 1772122_204_C10     2 0.498
#> 1772122_206_C12     3 0.000
#> 1772122_206_F01     2 0.000
#> 1772122_262_D02     3 0.000
#> 1772122_206_H03     2 0.502
#> 1772122_205_A07     2 0.000
#> 1772122_206_E08     2 0.000
#> 1772122_206_A06     2 1.000
#> 1772122_206_E06     1 1.000
#> 1772122_262_D06     2 0.498
#> 1772122_205_H02     3 0.249
#> 1772122_262_F09     1 0.000
#> 1772122_206_F03     2 0.000
#> 1772122_262_C10     2 0.000
#> 1772122_204_C09     2 0.000
#> 1772122_206_G12     2 0.000
#> 1772122_262_C07     2 1.000
#> 1772122_205_A08     2 0.249
#> 1772122_206_H04     2 0.000
#> 1772122_205_A03     2 0.000
#> 1772122_204_E04     2 0.000
#> 1772122_205_G08     2 0.000
#> 1772122_204_A02     2 0.000
#> 1772122_262_G02     3 1.000
#> 1772122_205_F07     3 0.000
#> 1772122_205_H01     1 0.751
#> 1772122_206_H07     2 0.000
#> 1772122_262_H01     2 0.000
#> 1772122_205_C11     2 0.000
#> 1772122_262_H06     3 0.000
#> 1772122_205_C09     3 0.000
#> 1772122_204_A09     2 1.000
#> 1772122_206_C02     2 0.498
#> 1772122_204_C08     2 0.000
#> 1772122_204_F07     2 0.000
#> 1772122_204_F11     2 0.000
#> 1772122_204_B06     2 0.000
#> 1772122_262_C02     2 1.000
#> 1772122_205_F11     3 0.000
#> 1772122_206_D02     2 0.000
#> 1772122_204_C07     2 0.498
#> 1772122_205_D05     2 0.000
#> 1772122_204_A05     2 0.000
#> 1772122_206_G07     3 0.249
#> 1772122_206_A09     3 0.000
#> 1772122_206_G10     2 0.000
#> 1772122_206_A12     2 0.000
#> 1772122_262_A09     2 0.000
#> 1772122_205_E10     2 0.000
#> 1772122_206_B01     1 0.000
#> 1772122_206_D08     3 0.000
#> 1772122_206_A08     2 0.000
#> 1772122_325_D10     3 0.000
#> 1772122_205_A12     2 0.000
#> 1772122_204_B03     2 0.000
#> 1772122_204_F12     2 1.000
#> 1772122_205_B12     3 0.000
#> 1772122_326_B10     3 0.000
#> 1772122_204_A01     2 0.253
#> 1772122_205_F12     2 0.751
#> 1772122_205_C05     3 0.000
#> 1772122_204_E10     1 1.000
#> 1772122_262_H02     3 0.000
#> 1772122_262_G07     2 0.000
#> 1772122_204_H07     1 1.000
#> 1772122_204_A10     2 1.000
#> 1772122_262_D03     2 0.000
#> 1772122_262_H04     3 0.000
#> 1772122_262_B05     2 0.000
#> 1772122_262_B01     1 1.000
#> 1772122_204_D06     3 0.000
#> 1772122_263_C06     3 0.000
#> 1772122_204_G03     1 1.000
#> 1772122_204_D05     3 1.000
#> 1772122_262_G08     3 0.000
#> 1772122_204_C12     2 1.000
#> 1772122_262_A04     2 0.000
#> 1772122_262_H03     2 0.000
#> 1772122_206_B08     2 0.000
#> 1772122_204_D12     2 0.000
#> 1772122_262_E03     2 0.000
#> 1772122_206_F02     2 0.502
#> 1772122_206_G03     2 0.000
#> 1772122_206_G09     1 1.000
#> 1772122_205_H12     2 0.000
#> 1772122_262_F12     2 0.000
#> 1772122_204_G09     3 1.000
#> 1772122_204_F02     2 0.000
#> 1772122_206_C10     2 0.000
#> 1772122_204_D01     2 0.000
#> 1772122_206_C07     2 0.000
#> 1772122_206_F12     3 0.747
#> 1772122_262_C08     2 0.000
#> 1772122_206_G01     2 0.000
#> 1772122_206_F05     2 0.000
#> 1772122_205_E02     2 0.000
#> 1772122_262_H08     2 0.000
#> 1772122_326_D09     2 0.000
#> 1772122_262_D08     3 0.000
#> 1772122_204_F01     2 0.000
#> 1772122_206_F04     2 0.000
#> 1772122_206_E09     2 0.000
#> 1772122_206_E10     2 0.000
#> 1772122_204_F09     3 0.000
#> 1772122_205_H09     2 0.000
#> 1772122_206_G11     3 0.249
#> 1772122_206_C06     2 0.000
#> 1772122_204_D03     2 0.000
#> 1772122_206_C04     2 0.000
#> 1772122_262_A11     2 0.000
#> 1772122_206_E07     3 0.000
#> 1772122_205_H06     2 0.000
#> 1772122_262_F11     2 0.000
#> 1772122_204_D09     2 0.000
#> 1772122_205_H05     2 0.000
#> 1772122_206_B12     2 0.000
#> 1772122_204_B02     2 0.000
#> 1772122_204_B07     2 0.000
#> 1772122_205_C07     2 0.000
#> 1772122_205_B08     3 0.249
#> 1772122_262_C12     2 0.000
#> 1772122_206_A10     2 0.498
#> 1772122_206_D04     3 1.000
#> 1772122_262_F03     2 0.000
#> 1772122_206_D11     2 0.000
#> 1772122_204_A12     2 0.000
#> 1772122_205_A04     2 0.000
#> 1772122_205_F05     2 0.000
#> 1772122_205_B04     2 0.000
#> 1772122_206_H05     3 0.000
#> 1772122_206_C03     2 0.000
#> 1772122_204_A11     2 0.000
#> 1772122_262_E08     2 0.000
#> 1772122_262_B10     2 0.000
#> 1772122_206_G06     2 0.000
#> 1772122_205_G04     2 0.000
#> 1772122_262_D05     2 0.000
#> 1772122_206_F06     2 0.000
#> 1772122_206_E12     2 0.000
#> 1772122_204_C04     3 0.249
#> 1772122_262_G04     2 0.000
#> 1772122_204_C11     2 0.000
#> 1772122_205_G10     2 0.000
#> 1772122_204_E09     3 0.502
#> 1772122_262_B07     2 0.000
#> 1772122_204_C03     2 0.000
#> 1772122_206_A04     2 1.000
#> 1772122_204_A04     2 0.000
#> 1772122_205_H03     2 0.000
#> 1772122_204_D04     2 1.000
#> 1772122_205_B09     2 0.000
#> 1772122_205_F09     2 0.000
#> 1772122_204_F05     3 0.000
#> 1772122_205_A09     2 0.000
#> 1772122_205_E08     2 0.000
#> 1772122_262_C05     2 0.000
#> 1772122_262_G06     2 0.000
#> 1772122_262_F05     3 0.253
#> 1772122_262_F10     2 0.000
#> 1772122_204_B10     2 0.000
#> 1772122_205_G03     2 0.000
#> 1772122_206_A05     2 0.000
#> 1772122_205_D06     2 0.000
#> 1772122_206_E03     2 0.000
#> 1772122_206_B07     2 0.000
#> 1772122_204_A03     2 0.000
#> 1772122_262_B08     2 0.000
#> 1772122_206_E04     2 0.000
#> 1772122_205_D04     2 0.000
#> 1772122_262_D09     2 0.000
#> 1772122_205_A01     2 0.000
#> 1772122_204_B01     2 0.000
#> 1772122_206_H09     2 0.000
#> 1772122_205_G01     2 0.249
#> 1772122_206_D05     2 0.000
#> 1772122_204_B08     3 0.000
#> 1772122_262_D11     3 0.249
#> 1772122_205_B03     2 0.000
#> 1772122_205_G12     2 0.000
#> 1772122_206_H01     2 0.751
#> 1772122_205_C08     3 0.000
#> 1772122_262_G12     2 0.000
#> 1772122_204_C02     2 0.000
#> 1772122_262_A01     2 0.000
#> 1772122_263_B05     3 1.000
#> 1772122_206_B02     2 0.000
#> 1772122_262_F07     3 1.000
#> 1772122_325_B07     3 0.000
#> 1772122_205_C10     2 0.000
#> 1772122_262_G05     3 0.498
#> 1772122_205_D11     2 0.000
#> 1772122_204_E01     2 0.000
#> 1772122_262_B06     2 0.000
#> 1772122_262_E05     2 0.000
#> 1772122_206_C11     2 0.000
#> 1772122_204_D08     2 0.249
#> 1772122_204_E02     1 1.000
#> 1772122_205_D12     2 0.751
#> 1772122_262_G03     1 1.000
#> 1772122_205_A11     2 0.000
#> 1772122_205_D07     2 0.000
#> 1772122_262_F08     2 0.000
#> 1772122_205_C03     2 0.253
#> 1772122_262_G11     2 0.000
#> 1772122_262_D04     1 0.751
#> 1772122_205_H10     2 0.000
#> 1772122_262_B03     2 1.000
#> 1772122_204_B12     2 0.000
#> 1772122_205_A10     2 0.000
#> 1772122_262_D07     2 0.000
#> 1772122_205_F10     2 0.000
#> 1772122_204_G06     2 0.000
#> 1772122_204_E11     3 0.249
#> 1772122_205_E12     2 0.000
#> 1772122_206_E05     2 0.000
#> 1772122_206_C05     2 0.000
#> 1772122_205_C12     2 0.000
#> 1772122_204_E07     2 0.000
#> 1772122_205_F06     2 0.000
#> 1772122_262_A12     2 0.000
#> 1772122_206_H11     2 0.000
#> 1772122_204_E06     2 0.000
#> 1772122_205_B06     2 0.000
#> 1772122_262_B11     3 0.502
#> 1772122_262_C11     3 1.000
#> 1772122_262_A08     2 0.000
#> 1772122_206_G08     2 0.000
#> 1772122_262_B04     3 0.000
#> 1772122_205_C04     2 1.000
#> 1772122_205_B02     1 1.000
#> 1772122_206_B10     3 0.000
#> 1772122_206_D12     2 0.000
#> 1772122_262_E06     2 0.000
#> 1772122_262_D01     2 0.000
#> 1772122_262_F06     2 0.000
#> 1772122_325_C11     3 0.000
#> 1772122_325_B02     1 1.000
#> 1772122_326_A09     2 1.000
#> 1772122_205_E03     3 0.751
#> 1772122_326_F06     3 0.000
#> 1772122_324_A01     3 0.000
#> 1772122_326_E06     2 0.000
#> 1772122_326_C12     3 1.000
#> 1772122_263_D09     3 0.000
#> 1772122_324_C12     2 1.000
#> 1772122_326_C06     3 0.000
#> 1772122_324_D04     3 0.000
#> 1772122_263_A07     3 0.000
#> 1772122_326_G06     2 1.000
#> 1772122_324_C08     2 0.000
#> 1772122_326_G04     3 0.000
#> 1772122_206_G02     3 1.000
#> 1772122_325_G01     3 0.000
#> 1772122_263_F06     3 1.000
#> 1772122_263_E07     3 1.000
#> 1772122_263_F05     3 0.000
#> 1772122_324_D10     3 0.000
#> 1772122_263_F08     3 0.000
#> 1772122_325_A10     1 1.000
#> 1772122_206_D03     1 1.000
#> 1772122_263_A05     3 0.000
#> 1772122_263_D01     1 1.000
#> 1772122_324_C05     2 1.000
#> 1772122_262_A10     3 0.000
#> 1772122_263_A02     3 0.000
#> 1772122_326_A07     3 0.000
#> 1772122_324_B12     2 0.498
#> 1772122_325_F01     3 0.000
#> 1772122_326_B02     3 1.000
#> 1772122_324_A03     3 0.000
#> 1772122_262_A06     1 0.000
#> 1772122_204_H02     3 0.000
#> 1772122_263_B07     2 0.249
#> 1772122_325_E08     3 0.000
#> 1772122_326_B12     1 1.000
#> 1772122_325_E09     3 1.000
#> 1772122_263_C11     3 0.000
#> 1772122_325_A07     3 1.000
#> 1772122_263_B01     3 0.000
#> 1772122_263_C07     3 0.000
#> 1772122_263_C03     3 0.000
#> 1772122_326_D11     3 1.000
#> 1772122_263_D12     3 0.000
#> 1772122_326_F01     3 0.000
#> 1772122_325_B08     3 0.000
#> 1772122_263_G10     3 0.751
#> 1772122_326_B03     3 0.000
#> 1772122_324_C10     2 1.000
#> 1772122_325_A02     3 0.000
#> 1772122_325_D04     3 0.000
#> 1772122_263_C02     3 1.000
#> 1772122_263_G01     2 1.000
#> 1772122_324_E01     3 0.000
#> 1772122_325_F02     3 0.000
#> 1772122_324_E04     2 0.000
#> 1772122_325_D02     2 0.000
#> 1772122_263_E11     3 0.000
#> 1772122_324_A04     3 1.000
#> 1772122_325_C07     3 1.000
#> 1772122_263_A12     3 0.000
#> 1772122_325_E03     3 0.000
#> 1772122_326_E12     3 0.000
#> 1772122_325_A12     3 0.000
#> 1772122_326_F12     3 0.502
#> 1772122_325_D09     3 0.000
#> 1772122_325_B09     3 0.502
#> 1772122_324_C09     3 0.747
#> 1772122_325_G04     3 0.000
#> 1772122_324_B03     3 1.000
#> 1772122_324_D07     3 0.502
#> 1772122_324_E03     3 0.000
#> 1772122_326_A04     3 0.000
#> 1772122_326_F03     3 0.000
#> 1772122_326_C05     2 1.000
#> 1772122_325_F09     3 0.000
#> 1772122_263_G07     3 0.502
#> 1772122_324_B11     3 0.498
#> 1772122_263_F04     3 1.000
#> 1772122_324_E12     3 1.000
#> 1772122_326_E11     2 0.751
#> 1772122_263_C04     3 0.000
#> 1772122_324_G10     3 0.000
#> 1772122_262_B02     3 1.000
#> 1772122_263_H04     3 0.000
#> 1772122_206_C08     3 1.000
#> 1772122_324_D08     3 0.000
#> 1772122_325_C12     3 0.000
#> 1772122_326_D06     3 0.000
#> 1772122_263_B11     3 0.000
#> 1772122_325_C03     3 0.000
#> 1772122_326_E10     3 0.000
#> 1772122_325_B03     1 1.000
#> 1772122_325_A11     3 0.000
#> 1772122_326_A01     1 1.000
#> 1772122_325_D06     3 0.000
#> 1772122_326_D10     3 0.000
#> 1772122_325_A04     3 0.000
#> 1772122_263_E03     3 0.000
#> 1772122_324_E02     2 0.000
#> 1772122_324_B01     3 0.000
#> 1772122_263_B02     3 0.000
#> 1772122_325_E05     1 1.000
#> 1772122_325_A09     3 0.000
#> 1772122_326_F05     1 1.000
#> 1772122_263_D02     3 0.000
#> 1772122_325_F07     3 0.000
#> 1772122_204_H03     1 0.747
#> 1772122_263_H03     1 1.000
#> 1772122_324_A12     3 0.751
#> 1772122_324_C06     2 0.498
#> 1772122_263_B04     3 1.000
#> 1772122_263_C12     3 0.000
#> 1772122_324_A05     2 1.000
#> 1772122_325_D07     2 0.000
#> 1772122_326_G05     3 0.000
#> 1772122_324_E05     3 0.000
#> 1772122_324_A09     2 0.000
#> 1772122_326_C07     3 0.498
#> 1772122_326_C04     3 0.000
#> 1772122_263_E08     3 0.502
#> 1772122_263_A10     2 1.000
#> 1772122_324_A08     3 0.000
#> 1772122_263_D05     3 0.000
#> 1772122_324_A07     3 1.000
#> 1772122_325_F08     3 0.000
#> 1772122_326_F09     1 1.000
#> 1772122_325_G07     3 0.000
#> 1772122_324_C04     3 0.000
#> 1772122_326_H02     1 1.000
#> 1772122_326_E03     3 0.000
#> 1772122_263_B03     3 0.000
#> 1772122_263_A09     3 0.000
#> 1772122_326_E08     3 0.000
#> 1772122_325_B01     3 0.000
#> 1772122_263_E05     3 0.000
#> 1772122_263_A03     3 0.000
#> 1772122_263_D10     3 0.000
#> 1772122_263_H06     3 0.000
#> 1772122_325_C08     3 0.000
#> 1772122_326_A05     3 0.000
#> 1772122_263_C08     3 1.000
#> 1772122_325_B10     3 0.000
#> 1772122_263_H05     3 0.000
#> 1772122_325_B11     3 0.000
#> 1772122_206_H08     1 0.249
#> 1772122_204_G12     3 0.000
#> 1772122_263_C10     3 0.000
#> 1772122_263_E06     3 1.000
#> 1772122_263_H11     3 0.000
#> 1772122_263_D07     3 0.000
#> 1772122_263_G08     1 1.000
#> 1772122_326_G11     3 0.000
#> 1772122_324_B04     2 0.000
#> 1772122_263_E09     3 0.000
#> 1772122_263_D03     3 0.000
#> 1772122_326_A03     3 0.000
#> 1772122_326_A08     3 0.000
#> 1772122_326_F10     3 0.000
#> 1772122_324_E09     2 0.498
#> 1772122_324_E06     2 0.498
#> 1772122_325_H01     3 0.249
#> 1772122_326_B05     3 0.000
#> 1772122_325_D08     3 0.000
#> 1772122_263_D08     3 0.000
#> 1772122_324_C03     3 0.249
#> 1772122_326_A10     3 0.000
#> 1772122_326_H05     2 0.000
#> 1772122_324_D11     3 0.000
#> 1772122_326_H03     3 0.000
#> 1772122_326_A02     3 0.000
#> 1772122_263_F10     3 0.000
#> 1772122_326_A11     3 0.000
#> 1772122_326_H12     2 0.249
#> 1772122_325_A05     3 0.000
#> 1772122_326_D01     3 0.000
#> 1772122_324_E08     3 0.000
#> 1772122_325_C09     3 0.000
#> 1772122_325_A03     3 0.000
#> 1772122_263_D11     2 0.000
#> 1772122_324_C11     3 1.000
#> 1772122_263_H10     3 0.000
#> 1772122_324_A10     2 0.000
#> 1772122_325_C05     3 1.000
#> 1772122_326_G03     3 0.000
#> 1772122_326_E07     3 0.000
#> 1772122_263_F11     3 0.000
#> 1772122_326_C10     3 0.000
#> 1772122_326_G08     3 0.000
#> 1772122_326_D05     3 0.000
#> 1772122_326_H11     3 0.000
#> 1772122_325_H08     3 0.000
#> 1772122_326_B11     3 0.000
#> 1772122_326_B07     3 1.000
#> 1772122_325_B12     3 0.249
#> 1772122_263_A04     3 0.249
#> 1772122_324_C07     2 0.000
#> 1772122_326_A12     3 0.000
#> 1772122_324_A11     2 0.000
#> 1772122_324_B07     3 1.000
#> 1772122_326_C09     3 0.000
#> 1772122_325_E06     3 0.000
#> 1772122_324_F01     3 1.000
#> 1772122_324_D02     3 1.000
#> 1772122_325_E04     1 1.000
#> 1772122_324_A06     3 1.000
#> 1772122_324_B05     2 1.000
#> 1772122_263_G03     3 0.000
#> 1772122_324_E07     2 0.000
#> 1772122_324_B08     3 0.000
#> 1772122_324_A02     2 0.747
#> 1772122_324_C01     2 0.000
#> 1772122_326_H04     2 0.000
#> 1772122_325_C04     3 0.000
#> 1772122_326_C01     3 0.000
#> 1772122_324_C02     2 0.000
#> 1772122_324_B09     2 0.498
#> 1772122_325_G08     3 0.000
#> 1772122_263_E04     3 0.502
#> 1772122_324_B06     2 0.000
#> 1772122_325_A06     3 0.000
#> 1772122_326_D07     3 0.000
#> 1772122_324_D06     2 0.000
#> 1772122_324_D05     2 0.747
#> 1772122_324_B02     2 1.000
#> 1772122_324_B10     2 1.000
#> 1772122_263_E10     3 0.000
#> 1772122_263_F01     3 0.000
#> 1772122_310_B10     4 0.000
#> 1772122_311_D04     4 0.000
#> 1772122_311_B04     4 0.000
#> 1772122_310_D05     4 0.000
#> 1772122_314_E09     4 0.000
#> 1772122_311_A03     4 0.000
#> 1772122_312_E01     1 0.000
#> 1772122_312_B08     4 0.000
#> 1772122_314_F11     4 0.000
#> 1772122_312_E02     4 0.000
#> 1772122_311_E12     4 0.000
#> 1772122_311_C02     4 0.000
#> 1772122_312_G11     4 0.000
#> 1772122_310_F11     4 0.000
#> 1772122_314_C07     4 0.000
#> 1772122_310_B07     4 0.000
#> 1772122_312_B03     4 0.000
#> 1772122_312_E03     1 1.000
#> 1772122_312_D01     3 1.000
#> 1772122_312_C09     4 0.000
#> 1772122_314_D05     3 0.249
#> 1772122_314_H06     4 0.751
#> 1772122_312_C04     4 0.249
#> 1772122_312_H07     3 0.502
#> 1772122_311_F07     4 0.000
#> 1772122_312_A06     4 0.000
#> 1772122_312_A09     4 0.000
#> 1772122_310_B06     4 0.000
#> 1772122_314_D10     4 0.000
#> 1772122_312_F08     3 0.751
#> 1772122_310_F02     4 0.000
#> 1772122_314_F12     4 0.000
#> 1772122_312_E06     4 0.000
#> 1772122_314_A07     4 0.000
#> 1772122_312_H09     4 0.000
#> 1772122_312_D06     4 0.000
#> 1772122_314_A05     4 0.000
#> 1772122_310_H06     4 0.000
#> 1772122_310_C12     4 0.000
#> 1772122_311_F11     4 0.000
#> 1772122_314_D07     4 0.000
#> 1772122_311_E11     4 0.000
#> 1772122_311_F12     1 0.000
#> 1772122_314_A06     4 0.000
#> 1772122_314_G09     4 0.000
#> 1772122_312_B11     4 0.000
#> 1772122_314_B03     4 0.000
#> 1772122_314_B07     4 0.000
#> 1772122_312_D05     4 0.000
#> 1772122_314_G06     4 0.000
#> 1772122_314_H02     4 0.000
#> 1772122_312_C10     4 0.000
#> 1772122_310_E12     1 0.000
#> 1772122_314_B12     4 0.000
#> 1772122_310_E07     4 0.000
#> 1772122_314_D11     4 0.000
#> 1772122_311_C12     4 0.000
#> 1772122_310_E03     4 0.000
#> 1772122_314_G10     4 0.000
#> 1772122_314_C04     4 0.000
#> 1772122_312_H02     4 0.000
#> 1772122_312_C01     4 0.000
#> 1772122_314_A04     4 0.000
#> 1772122_311_A05     4 0.000
#> 1772122_310_B05     4 0.000
#> 1772122_310_D08     1 0.000
#> 1772122_310_A03     4 0.000
#> 1772122_312_F12     4 0.000
#> 1772122_310_F09     4 0.000
#> 1772122_311_A06     4 0.000
#> 1772122_314_F01     1 0.000
#> 1772122_311_G09     1 0.000
#> 1772122_312_E09     4 0.000
#> 1772122_312_C08     4 0.000
#> 1772122_310_C09     1 0.000
#> 1772122_312_H06     4 0.000
#> 1772122_314_D12     4 0.000
#> 1772122_311_B09     4 0.000
#> 1772122_312_D12     4 0.000
#> 1772122_314_F10     4 0.000
#> 1772122_312_B09     4 0.000
#> 1772122_310_G06     4 0.000
#> 1772122_314_F04     4 0.000
#> 1772122_312_F10     4 0.000
#> 1772122_310_H05     4 0.000
#> 1772122_312_B04     4 0.000
#> 1772122_310_G10     4 0.000
#> 1772122_314_C10     4 0.000
#> 1772122_311_F01     4 0.000
#> 1772122_314_E12     4 0.000
#> 1772122_314_H10     1 0.000
#> 1772122_312_E12     4 0.000
#> 1772122_314_F05     4 0.000
#> 1772122_312_F01     4 0.000
#> 1772122_311_G08     4 0.000
#> 1772122_312_A11     4 0.000
#> 1772122_310_F10     1 0.000
#> 1772122_310_E10     4 0.000
#> 1772122_312_C11     1 0.000
#> 1772122_314_G11     4 0.000
#> 1772122_312_F07     4 0.000
#> 1772122_314_E07     4 0.000
#> 1772122_314_C08     4 0.000
#> 1772122_310_G03     1 0.000
#> 1772122_314_A12     4 0.000
#> 1772122_311_C01     4 0.000
#> 1772122_314_D08     4 0.249
#> 1772122_310_A04     4 0.000
#> 1772122_314_E02     4 0.000
#> 1772122_312_B06     4 0.000
#> 1772122_312_D07     4 0.000
#> 1772122_312_B01     4 0.000
#> 1772122_311_F09     4 0.000
#> 1772122_314_E03     3 0.000
#> 1772122_314_G01     3 0.000
#> 1772122_312_B07     4 0.000
#> 1772122_312_F06     4 0.000
#> 1772122_310_G01     4 0.000
#> 1772122_314_G02     4 0.000
#> 1772122_312_G07     1 0.000
#> 1772122_314_A08     4 0.000
#> 1772122_310_A05     4 0.000
#> 1772122_314_A02     4 0.000
#> 1772122_312_E08     4 0.000
#> 1772122_312_A12     4 0.000
#> 1772122_310_E04     4 0.000
#> 1772122_310_H09     4 0.000
#> 1772122_311_D09     4 0.000
#> 1772122_311_H06     4 0.000
#> 1772122_311_G04     4 0.000
#> 1772122_311_H04     4 0.000
#> 1772122_310_G02     4 0.000
#> 1772122_310_E05     4 0.000
#> 1772122_311_C09     4 0.000
#> 1772122_310_G07     4 0.000
#> 1772122_311_E09     4 0.000
#> 1772122_310_F12     4 0.000
#> 1772122_310_F04     4 0.000
#> 1772122_311_G10     4 0.000
#> 1772122_311_D06     4 0.000
#> 1772122_311_D02     4 0.000
#> 1772122_310_E08     4 0.000
#> 1772122_310_D12     4 0.000
#> 1772122_311_B05     4 0.000
#> 1772122_310_E02     4 0.000
#> 1772122_310_F05     4 0.000
#> 1772122_310_C10     4 0.000
#> 1772122_311_F04     1 0.000
#> 1772122_311_C03     4 0.000
#> 1772122_310_A02     4 0.000
#> 1772122_310_D09     4 0.000
#> 1772122_311_C10     1 0.502
#> 1772122_311_D03     4 0.000
#> 1772122_311_G07     4 0.000
#> 1772122_310_E11     4 0.000
#> 1772122_311_H05     4 0.000
#> 1772122_311_E04     4 0.000
#> 1772122_311_C05     4 0.000
#> 1772122_311_G11     4 0.000
#> 1772122_311_E06     4 0.000
#> 1772122_311_G12     4 0.000
#> 1772122_311_A10     4 0.000
#> 1772122_311_A07     4 0.000
#> 1772122_310_D02     4 0.000
#> 1772122_311_H03     4 0.000
#> 1772122_310_C01     1 0.000
#> 1772122_310_A07     4 0.000
#> 1772122_310_D06     4 0.000
#> 1772122_311_A01     4 0.000
#> 1772122_311_B01     4 0.000
#> 1772122_310_H01     4 0.000
#> 1772122_310_A12     4 0.000
#> 1772122_311_B11     4 0.000
#> 1772122_310_A01     4 0.000
#> 1772122_311_D11     4 0.000
#> 1772122_310_H02     4 0.000
#> 1772122_310_H12     4 0.000
#> 1772122_311_F05     4 0.000
#> 1772122_311_A12     4 0.000
#> 1772122_310_A09     4 0.000
#> 1772122_311_H11     4 0.000
#> 1772122_311_E05     4 0.000
#> 1772122_311_A09     4 0.000
#> 1772122_314_H08     4 0.000
#> 1772122_312_F05     4 0.000
#> 1772122_312_A07     4 0.000
#> 1772122_310_H04     4 0.000
#> 1772122_310_D11     4 0.000
#> 1772122_310_A10     4 0.000
#> 1772122_310_H10     4 0.000
#> 1772122_310_G05     4 0.000
#> 1772122_310_D10     4 0.000
#> 1772122_314_C05     4 0.000
#> 1772122_312_F02     4 0.000
#> 1772122_310_B09     4 0.000
#> 1772122_310_F06     4 0.000
#> 1772122_310_E06     4 0.000
#> 1772122_311_D10     4 0.000
#> 1772122_311_E03     4 0.000
#> 1772122_310_G04     4 0.000
#> 1772122_311_B07     4 0.000
#> 1772122_311_C11     4 0.000
#> 1772122_314_B04     4 0.000
#> 1772122_312_F04     4 0.000
#> 1772122_314_D03     4 0.000
#> 1772122_310_C05     4 0.000
#> 1772122_314_B06     4 0.000
#> 1772122_310_D01     1 0.000
#> 1772122_314_H07     4 0.000
#> 1772122_314_C12     4 0.000
#> 1772122_314_C06     4 0.000
#> 1772122_312_H11     4 0.000
#> 1772122_312_C03     1 0.000
#> 1772122_312_H12     4 0.000
#> 1772122_312_H08     4 0.000
#> 1772122_314_E04     4 0.000
#> 1772122_312_H05     4 0.000
#> 1772122_310_C06     4 0.000
#> 1772122_312_G06     4 0.000
#> 1772122_314_E08     4 0.000
#> 1772122_314_G05     4 0.000
#> 1772122_314_D09     4 0.000
#> 1772122_314_B05     4 0.000
#> 1772122_314_B08     4 0.000
#> 1772122_314_A10     4 0.000
#> 1772122_312_D08     4 0.000
#> 1772122_312_C07     4 0.000
#> 1772122_312_D10     4 0.000
#> 1772122_312_B02     4 0.000
#> 1772122_312_C06     4 0.000
#> 1772122_312_G04     4 0.000
#> 1772122_314_F02     1 0.502
#> 1772122_314_H04     4 0.000
#> 1772122_312_A03     4 0.000
#> 1772122_314_C09     4 0.000
#> 1772122_314_H03     4 0.000
#> 1772122_314_E11     4 0.000
#> 1772122_314_H12     4 0.000
#> 1772122_312_E04     4 0.000
#> 1772122_312_G12     4 0.000
#> 1772122_314_H05     4 0.000
#> 1772122_314_D04     4 0.000
#> 1772122_312_F11     4 0.000
#> 1772122_310_D03     1 0.000
#> 1772122_310_D04     4 0.000
#> 1772122_311_E08     4 0.000
#> 1772122_310_B11     4 0.000
#> 1772122_311_E10     4 0.000
#> 1772122_312_E10     4 0.000
#> 1772122_310_C04     4 0.000
#> 1772122_312_A04     1 0.000
#> 1772122_310_B02     4 0.751
#> 1772122_314_G04     4 0.000
#> 1772122_311_H07     4 0.000
#> 1772122_312_D03     4 0.000
#> 1772122_314_A03     4 0.000
#> 1772122_312_D04     4 0.000
#> 1772122_312_D02     4 0.000
#> 1772122_314_H11     4 0.000
#> 1772122_311_B06     4 0.000
#> 1772122_312_E05     4 0.000
#> 1772122_314_F06     4 0.000
#> 1772122_314_B11     4 0.000
#> 1772122_312_G02     4 0.000
#> 1772122_312_C05     4 0.000
#> 1772122_311_F10     4 0.000
#> 1772122_311_B12     4 0.000
#> 1772122_314_E06     4 0.000
#> 1772122_314_C01     4 0.000
#> 1772122_312_D11     4 0.000
#> 1772122_310_F01     4 0.000
#> 1772122_314_E05     4 0.000
#> 1772122_312_H10     4 0.000
#> 1772122_311_G01     4 0.000
#> 1772122_310_C03     4 0.000
#> 1772122_312_F09     4 0.000
#> 1772122_311_C08     4 0.000
#> 1772122_314_B10     4 0.000
#> 1772122_310_B03     4 0.000
#> 1772122_311_D08     4 0.000
#> 1772122_310_A11     4 0.000
#> 1772122_312_H03     1 0.000
#> 1772122_311_F02     4 0.000
#> 1772122_310_G12     4 0.000
#> 1772122_311_H01     4 0.000
#> 1772122_311_A04     4 0.000
#> 1772122_311_G06     4 0.000
#> 1772122_312_G09     4 0.000
#> 1772122_314_C11     4 0.000
#> 1772122_312_C02     4 0.000
#> 1772122_312_B12     4 0.000
#> 1772122_314_B01     4 0.000
#> 1772122_311_D07     4 0.000
#> 1772122_311_A08     4 0.000
#> 1772122_314_B09     4 0.000
#> 1772122_312_D09     4 0.000
#> 1772122_311_B10     4 0.000
#> 1772122_310_G08     4 0.000
#> 1772122_311_D12     4 0.000
#> 1772122_310_B04     4 0.000
#> 1772122_310_C02     4 0.000
#> 1772122_311_H12     4 0.000
#> 1772122_310_A08     4 0.000
#> 1772122_310_B08     4 0.000
#> 1772122_311_A02     4 0.000
#> 1772122_314_B02     4 0.000
#> 1772122_311_B02     4 0.000
#> 1772122_310_F08     4 0.000
#> 1772122_311_F08     4 0.000
#> 1772122_314_F08     4 0.000
#> 1772122_312_A02     4 0.000
#> 1772122_311_C04     4 0.000
#> 1772122_314_E01     4 0.000
#> 1772122_311_H10     4 0.000
#> 1772122_314_G12     4 0.000
#> 1772122_312_A10     4 0.000
#> 1772122_314_G08     4 0.000
#> 1772122_311_F06     4 0.000
#> 1772122_312_E11     4 0.000
#> 1772122_310_H11     4 0.000
#> 1772122_311_H02     4 0.000

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans     1222          1.86e-204          5.97e-224 2
#> ATC:skmeans     1193           0.00e+00           0.00e+00 3
#> ATC:skmeans     1458           0.00e+00           0.00e+00 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node01

Parent node: Node0. Child nodes: Node011 , Node012 , Node013 , Node021 , Node022 , Node023 , Node024 , Node031-leaf , Node032-leaf , Node033 .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["01"]

A summary of res and all the functions that can be applied to it:

res
#> A 'DownSamplingConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 11181 rows and 500 columns, randomly sampled from 705 columns.
#>   Top rows (1048) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'DownSamplingConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-01-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-01-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.991           0.971       0.987          0.490 0.508   0.508
#> 3 3 0.989           0.965       0.985          0.358 0.689   0.461
#> 4 4 0.768           0.754       0.828          0.113 0.861   0.620

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

get_classes(res, k = 2)
#>                 class     p
#> 1772122_301_C02     2 0.000
#> 1772122_180_E05     2 0.000
#> 1772122_300_H02     2 0.000
#> 1772122_180_B09     2 0.249
#> 1772122_180_G04     2 0.000
#> 1772122_182_E09     2 0.000
#> 1772122_302_C04     2 0.000
#> 1772122_302_D11     2 0.000
#> 1772122_180_C11     2 0.000
#> 1772122_298_A07     2 0.000
#> 1772122_299_A11     2 0.000
#> 1772122_298_D09     2 0.000
#> 1772122_180_A06     2 0.000
#> 1772122_302_G06     2 0.000
#> 1772122_182_D07     2 0.000
#> 1772122_182_D02     2 0.000
#> 1772122_300_D04     2 0.502
#> 1772122_300_E06     2 0.000
#> 1772122_300_F10     2 0.000
#> 1772122_301_G12     2 0.000
#> 1772122_301_F09     2 0.000
#> 1772122_301_C12     2 0.000
#> 1772122_301_F07     2 0.000
#> 1772122_301_F05     2 0.000
#> 1772122_301_D08     2 0.000
#> 1772122_301_G10     2 0.249
#> 1772122_301_C04     2 0.000
#> 1772122_301_G07     2 0.000
#> 1772122_301_B08     2 0.000
#> 1772122_301_G04     2 0.249
#> 1772122_298_G11     1 0.498
#> 1772122_301_H03     2 0.000
#> 1772122_302_G07     2 0.000
#> 1772122_301_D10     2 0.000
#> 1772122_300_F01     2 0.253
#> 1772122_299_H11     2 0.000
#> 1772122_299_B05     2 0.000
#> 1772122_301_C07     2 0.000
#> 1772122_298_C12     2 0.000
#> 1772122_300_A05     2 0.000
#> 1772122_300_H06     2 0.000
#> 1772122_301_E07     2 0.000
#> 1772122_301_A02     2 0.000
#> 1772122_299_F02     2 0.000
#> 1772122_300_D02     2 0.000
#> 1772122_301_H05     2 0.000
#> 1772122_181_C12     1 0.751
#> 1772122_180_H06     1 1.000
#> 1772122_302_D07     2 0.000
#> 1772122_302_A08     2 0.249
#> 1772122_180_H12     2 0.000
#> 1772122_180_H10     1 0.747
#> 1772122_182_G02     1 1.000
#> 1772122_181_E09     1 1.000
#> 1772122_299_F06     1 1.000
#> 1772122_302_H11     1 0.502
#> 1772122_180_G03     2 0.249
#> 1772122_301_H12     2 0.000
#> 1772122_300_D03     2 0.000
#> 1772122_299_C07     2 0.000
#> 1772122_182_E08     2 0.000
#> 1772122_302_G08     2 0.000
#> 1772122_301_A04     1 1.000
#> 1772122_302_D04     2 0.000
#> 1772122_300_E11     2 0.000
#> 1772122_300_C01     2 0.498
#> 1772122_181_A03     1 0.000
#> 1772122_298_C11     2 0.000
#> 1772122_298_E09     1 0.498
#> 1772122_298_H07     2 0.000
#> 1772122_300_B12     2 0.000
#> 1772122_300_H08     1 0.751
#> 1772122_298_F03     2 0.000
#> 1772122_182_A09     2 0.000
#> 1772122_182_C09     1 0.751
#> 1772122_298_D10     1 0.498
#> 1772122_298_D05     2 0.000
#> 1772122_299_C01     2 0.000
#> 1772122_180_A02     2 0.000
#> 1772122_300_F05     1 0.502
#> 1772122_182_A10     1 0.249
#> 1772122_299_F10     1 0.747
#> 1772122_181_E05     1 0.751
#> 1772122_300_A12     2 0.000
#> 1772122_300_G04     1 1.000
#> 1772122_182_H12     1 0.000
#> 1772122_302_G10     1 0.000
#> 1772122_182_C06     1 0.751
#> 1772122_298_E06     2 0.249
#> 1772122_300_A01     2 0.000
#> 1772122_300_E03     1 0.000
#> 1772122_302_C05     1 0.000
#> 1772122_299_G06     2 0.000
#> 1772122_299_F09     1 0.249
#> 1772122_302_C12     1 1.000
#> 1772122_299_E07     2 0.000
#> 1772122_180_D02     2 0.000
#> 1772122_300_D09     1 0.000
#> 1772122_298_F09     2 0.000
#> 1772122_302_A11     2 0.000
#> 1772122_180_F06     1 0.249
#> 1772122_299_E09     1 0.253
#> 1772122_180_A05     1 0.253
#> 1772122_182_C05     1 0.249
#> 1772122_181_C05     2 0.000
#> 1772122_300_A06     1 0.249
#> 1772122_181_A02     1 0.249
#> 1772122_181_E11     1 0.751
#> 1772122_298_C05     2 0.000
#> 1772122_181_C07     1 0.249
#> 1772122_182_C02     2 0.253
#> 1772122_300_E10     2 0.000
#> 1772122_299_D06     2 0.000
#> 1772122_180_F09     1 0.000
#> 1772122_299_B07     2 0.000
#> 1772122_300_F04     2 0.000
#> 1772122_180_D12     2 0.249
#> 1772122_180_H11     2 0.000
#> 1772122_300_A10     2 0.249
#> 1772122_299_G05     2 0.502
#> 1772122_299_E06     2 0.000
#> 1772122_315_A07     2 0.000
#> 1772122_206_D10     2 0.000
#> 1772122_325_G03     1 0.000
#> 1772122_315_F02     2 0.000
#> 1772122_182_H11     1 0.000
#> 1772122_263_G09     1 0.747
#> 1772122_326_G12     1 0.000
#> 1772122_325_A08     1 0.751
#> 1772122_263_G11     1 0.751
#> 1772122_299_A07     2 0.000
#> 1772122_303_A03     2 0.000
#> 1772122_303_A05     1 0.502
#> 1772122_298_H05     1 1.000
#> 1772122_303_B12     2 0.000
#> 1772122_303_D05     2 0.000
#> 1772122_326_H08     1 0.000
#> 1772122_206_H10     2 0.000
#> 1772122_263_H02     2 0.249
#> 1772122_306_E02     2 0.000
#> 1772122_315_E03     2 0.249
#> 1772122_305_G07     2 0.000
#> 1772122_306_H02     2 0.000
#> 1772122_303_D08     2 0.000
#> 1772122_303_H07     2 0.000
#> 1772122_306_D05     2 0.000
#> 1772122_305_H05     2 0.000
#> 1772122_302_B03     1 0.000
#> 1772122_300_B03     1 0.000
#> 1772122_299_E02     1 0.498
#> 1772122_303_B01     1 0.000
#> 1772122_298_B10     1 0.502
#> 1772122_298_D07     2 0.000
#> 1772122_298_G09     2 0.000
#> 1772122_300_E07     2 0.000
#> 1772122_298_H12     1 0.000
#> 1772122_298_D11     2 0.000
#> 1772122_299_G12     1 1.000
#> 1772122_302_F05     1 0.000
#> 1772122_300_E09     2 0.502
#> 1772122_301_G09     2 0.000
#> 1772122_300_F02     2 0.000
#> 1772122_301_G11     2 0.000
#> 1772122_302_D05     1 1.000
#> 1772122_302_E11     2 0.000
#> 1772122_299_A05     1 0.747
#> 1772122_299_H06     2 0.751
#> 1772122_301_A01     2 0.000
#> 1772122_299_D04     2 0.000
#> 1772122_180_E07     2 0.000
#> 1772122_300_E02     2 0.000
#> 1772122_301_A09     2 0.000
#> 1772122_301_B05     2 0.000
#> 1772122_302_G09     1 0.747
#> 1772122_299_A06     1 0.000
#> 1772122_301_B12     2 0.000
#> 1772122_324_H10     1 0.000
#> 1772122_301_F03     2 0.000
#> 1772122_181_H01     1 0.000
#> 1772122_325_F05     1 0.000
#> 1772122_301_E02     2 0.000
#> 1772122_302_F11     1 0.000
#> 1772122_300_C06     2 0.000
#> 1772122_302_G04     2 0.000
#> 1772122_299_C05     1 0.000
#> 1772122_302_H08     1 0.000
#> 1772122_300_G08     1 1.000
#> 1772122_299_B02     1 0.000
#> 1772122_301_A05     2 0.000
#> 1772122_302_B11     1 1.000
#> 1772122_299_H04     1 0.249
#> 1772122_299_G07     2 0.000
#> 1772122_300_C09     1 1.000
#> 1772122_300_A03     1 0.751
#> 1772122_302_A02     2 0.000
#> 1772122_302_H07     1 0.249
#> 1772122_300_C07     1 1.000
#> 1772122_298_C02     2 0.000
#> 1772122_300_E12     1 0.249
#> 1772122_299_H12     2 0.000
#> 1772122_300_B04     1 0.747
#> 1772122_300_H05     2 0.253
#> 1772122_299_D09     1 0.249
#> 1772122_299_B04     2 0.253
#> 1772122_298_A09     2 0.000
#> 1772122_298_E02     2 0.000
#> 1772122_302_D06     2 0.000
#> 1772122_180_F12     1 0.000
#> 1772122_298_F02     2 0.502
#> 1772122_301_B11     2 0.000
#> 1772122_301_H01     2 0.000
#> 1772122_301_H06     2 0.000
#> 1772122_301_F02     2 0.000
#> 1772122_305_D01     2 0.747
#> 1772122_181_D10     1 0.249
#> 1772122_182_E04     1 0.249
#> 1772122_182_B12     1 0.000
#> 1772122_301_E01     2 0.000
#> 1772122_315_B01     2 0.000
#> 1772122_300_B05     1 0.000
#> 1772122_298_A01     1 0.000
#> 1772122_182_A01     1 0.751
#> 1772122_300_C12     1 0.000
#> 1772122_299_D11     2 0.000
#> 1772122_302_B05     1 0.751
#> 1772122_180_C08     1 0.747
#> 1772122_302_C08     1 1.000
#> 1772122_300_D10     1 0.249
#> 1772122_299_C10     1 1.000
#> 1772122_302_E12     1 0.751
#> 1772122_298_H04     2 0.000
#> 1772122_182_D09     1 1.000
#> 1772122_300_D07     2 0.000
#> 1772122_298_F12     1 0.249
#> 1772122_299_A01     2 0.249
#> 1772122_299_F12     2 0.000
#> 1772122_298_B05     2 0.000
#> 1772122_301_C01     2 0.000
#> 1772122_298_A08     1 1.000
#> 1772122_180_F05     2 0.000
#> 1772122_299_H10     1 1.000
#> 1772122_299_D01     1 0.249
#> 1772122_302_A01     1 0.751
#> 1772122_298_H10     1 1.000
#> 1772122_298_F05     2 0.000
#> 1772122_301_C06     2 0.000
#> 1772122_298_C04     2 0.000
#> 1772122_181_G05     1 0.249
#> 1772122_298_D04     1 1.000
#> 1772122_180_B10     1 1.000
#> 1772122_180_H04     2 0.000
#> 1772122_301_B03     2 0.000
#> 1772122_298_A11     2 0.000
#> 1772122_182_D04     2 0.000
#> 1772122_300_H10     2 0.000
#> 1772122_301_B06     2 0.000
#> 1772122_301_D06     2 0.000
#> 1772122_298_A03     2 0.000
#> 1772122_301_A11     2 0.000
#> 1772122_301_F06     2 0.000
#> 1772122_298_F04     1 1.000
#> 1772122_300_H12     2 0.000
#> 1772122_301_B07     2 0.000
#> 1772122_299_F04     2 0.000
#> 1772122_300_E04     2 0.000
#> 1772122_299_F11     2 0.000
#> 1772122_300_H09     1 0.751
#> 1772122_302_C02     2 0.249
#> 1772122_301_D05     2 0.000
#> 1772122_301_H04     2 0.000
#> 1772122_300_G06     2 0.000
#> 1772122_299_H07     2 0.000
#> 1772122_298_H06     2 0.000
#> 1772122_301_G06     2 0.000
#> 1772122_301_C10     2 0.000
#> 1772122_300_B11     2 0.000
#> 1772122_301_C08     2 0.000
#> 1772122_301_D07     2 0.000
#> 1772122_301_D04     2 0.000
#> 1772122_301_G05     2 0.000
#> 1772122_301_H09     2 0.000
#> 1772122_302_F02     2 0.000
#> 1772122_300_F11     2 0.000
#> 1772122_301_C11     2 0.000
#> 1772122_301_F11     2 0.000
#> 1772122_302_C11     1 0.751
#> 1772122_299_A08     2 0.000
#> 1772122_301_E10     2 0.000
#> 1772122_300_D11     2 0.000
#> 1772122_182_A12     1 0.000
#> 1772122_301_C05     2 0.000
#> 1772122_302_B09     2 0.000
#> 1772122_299_B10     1 0.498
#> 1772122_182_F09     2 0.000
#> 1772122_299_F03     1 0.498
#> 1772122_303_C09     2 0.000
#> 1772122_306_E09     1 0.000
#> 1772122_305_B03     1 0.000
#> 1772122_305_A01     1 0.502
#> 1772122_306_C10     1 0.253
#> 1772122_303_D01     1 0.498
#> 1772122_305_E12     1 0.000
#> 1772122_303_F12     1 0.000
#> 1772122_306_D12     1 0.249
#> 1772122_303_E07     1 0.249
#> 1772122_306_C09     1 1.000
#> 1772122_305_G10     1 0.249
#> 1772122_315_F10     1 0.751
#> 1772122_306_G09     1 0.000
#> 1772122_315_B05     1 0.000
#> 1772122_306_H08     1 1.000
#> 1772122_306_A07     1 0.000
#> 1772122_302_F01     1 0.751
#> 1772122_305_G02     1 0.000
#> 1772122_262_A05     1 0.000
#> 1772122_305_H09     2 0.000
#> 1772122_306_F11     2 0.000
#> 1772122_315_B11     1 0.751
#> 1772122_302_G01     1 0.000
#> 1772122_306_C11     2 0.000
#> 1772122_315_D08     1 0.000
#> 1772122_300_D12     1 0.000
#> 1772122_306_E07     2 0.502
#> 1772122_306_A02     1 0.502
#> 1772122_315_G12     1 0.000
#> 1772122_306_A06     1 0.000
#> 1772122_306_D11     1 0.000
#> 1772122_306_E10     1 0.751
#> 1772122_306_B05     1 0.000
#> 1772122_205_B05     1 0.000
#> 1772122_306_F04     1 0.502
#> 1772122_315_A03     2 0.751
#> 1772122_315_H01     1 0.000
#> 1772122_302_G11     1 0.000
#> 1772122_305_H02     2 0.249
#> 1772122_305_H04     1 0.502
#> 1772122_315_C12     1 0.502
#> 1772122_303_A08     1 0.751
#> 1772122_303_F04     1 0.751
#> 1772122_303_A10     1 0.502
#> 1772122_300_G03     1 0.000
#> 1772122_305_A10     1 0.502
#> 1772122_303_G08     1 0.249
#> 1772122_299_D12     1 0.249
#> 1772122_305_G09     1 0.000
#> 1772122_305_E10     1 0.253
#> 1772122_298_F07     1 0.498
#> 1772122_301_E08     2 0.249
#> 1772122_262_F01     1 0.000
#> 1772122_300_G05     1 0.249
#> 1772122_298_C06     1 0.502
#> 1772122_300_H03     1 1.000
#> 1772122_305_A04     1 0.000
#> 1772122_305_A05     1 0.249
#> 1772122_305_G04     1 0.000
#> 1772122_306_B10     1 0.751
#> 1772122_303_C11     1 1.000
#> 1772122_315_C07     2 0.000
#> 1772122_302_E08     1 0.000
#> 1772122_182_F01     1 0.000
#> 1772122_298_B01     1 0.000
#> 1772122_302_E02     1 0.498
#> 1772122_301_A12     2 0.000
#> 1772122_305_B10     1 0.000
#> 1772122_306_E01     1 0.000
#> 1772122_299_G08     1 0.000
#> 1772122_300_C11     2 0.000
#> 1772122_301_E04     2 0.000
#> 1772122_301_E12     2 0.249
#> 1772122_301_E05     2 0.249
#> 1772122_301_D01     2 0.747
#> 1772122_180_A07     2 0.000
#> 1772122_301_F08     1 0.249
#> 1772122_300_D08     1 0.000
#> 1772122_300_A02     2 0.000
#> 1772122_180_H01     1 0.000
#> 1772122_298_G07     2 0.751
#> 1772122_299_A02     2 0.000
#> 1772122_181_F01     1 0.000
#> 1772122_180_A12     1 0.000
#> 1772122_302_G02     1 0.000
#> 1772122_180_E11     2 0.747
#> 1772122_298_E08     1 0.751
#> 1772122_302_E03     1 0.000
#> 1772122_300_B09     1 0.000
#> 1772122_182_C12     1 0.000
#> 1772122_181_A04     1 0.249
#> 1772122_182_A02     1 0.000
#> 1772122_181_C03     1 0.000
#> 1772122_181_D01     1 0.000
#> 1772122_181_B05     1 0.000
#> 1772122_180_G08     1 0.000
#> 1772122_180_G11     1 1.000
#> 1772122_302_F09     2 0.000
#> 1772122_300_G12     1 0.000
#> 1772122_298_D06     1 0.000
#> 1772122_299_H05     1 0.498
#> 1772122_180_B03     1 1.000
#> 1772122_300_G07     2 0.502
#> 1772122_298_E01     1 0.000
#> 1772122_298_G03     1 0.000
#> 1772122_302_A12     1 0.000
#> 1772122_181_D12     1 0.000
#> 1772122_299_E03     1 0.000
#> 1772122_181_D07     1 0.000
#> 1772122_298_H02     1 1.000
#> 1772122_181_H05     1 0.000
#> 1772122_181_E12     1 0.000
#> 1772122_302_F12     1 0.000
#> 1772122_299_G09     1 1.000
#> 1772122_182_B10     1 0.249
#> 1772122_182_A07     1 0.000
#> 1772122_298_F11     1 0.000
#> 1772122_181_G07     1 0.000
#> 1772122_182_B06     1 0.000
#> 1772122_299_G03     1 0.502
#> 1772122_298_A10     1 0.000
#> 1772122_180_B02     1 0.000
#> 1772122_298_E07     2 0.000
#> 1772122_300_C08     1 0.000
#> 1772122_298_D02     1 0.249
#> 1772122_299_A12     1 0.000
#> 1772122_182_B04     1 0.498
#> 1772122_181_E03     1 0.000
#> 1772122_299_B03     1 0.000
#> 1772122_181_C11     1 0.751
#> 1772122_181_H04     2 0.000
#> 1772122_300_D01     1 0.000
#> 1772122_302_E06     1 0.000
#> 1772122_301_G03     1 0.249
#> 1772122_302_A05     1 0.249
#> 1772122_300_H07     2 0.000
#> 1772122_301_B02     2 0.253
#> 1772122_182_G03     1 0.000
#> 1772122_301_C03     1 0.000
#> 1772122_180_D05     1 0.498
#> 1772122_180_D08     1 0.000
#> 1772122_299_C12     1 0.000
#> 1772122_302_H06     1 0.000
#> 1772122_298_E12     1 0.000
#> 1772122_298_B08     1 0.502
#> 1772122_302_G12     1 0.000
#> 1772122_300_E01     1 0.000
#> 1772122_300_B10     1 0.498
#> 1772122_180_G12     1 1.000
#> 1772122_300_F07     1 0.000
#> 1772122_180_B12     1 0.249
#> 1772122_182_F08     1 0.000
#> 1772122_302_E04     1 0.249
#> 1772122_298_F06     1 0.000
#> 1772122_300_C04     1 1.000
#> 1772122_302_H01     1 0.000
#> 1772122_302_D02     2 0.000
#> 1772122_182_E05     1 0.000
#> 1772122_182_E10     1 0.000
#> 1772122_182_B07     1 0.000
#> 1772122_180_A03     1 0.253
#> 1772122_180_F04     1 0.249
#> 1772122_299_D05     1 0.000
#> 1772122_182_F02     1 0.000
#> 1772122_299_E12     1 0.000
#> 1772122_298_A05     1 0.000
#> 1772122_298_B02     2 0.000
#> 1772122_181_F08     1 0.000
#> 1772122_298_C03     1 0.249
#> 1772122_300_G10     1 0.000
#> 1772122_182_E12     1 0.000
#> 1772122_298_B04     1 0.000
#> 1772122_301_E06     2 0.000
#> 1772122_182_H09     1 0.000
#> 1772122_302_A10     1 0.000
#> 1772122_181_F12     1 0.000
#> 1772122_302_H10     1 0.751
#> 1772122_302_H05     1 0.000
#> 1772122_181_D11     2 0.000
#> 1772122_298_G08     1 0.747
#> 1772122_298_H11     2 0.000
#> 1772122_180_G07     1 0.000
#> 1772122_180_A10     1 0.498
#> 1772122_298_D08     1 0.498
#> 1772122_299_B01     1 0.000
#> 1772122_299_F05     1 0.000
#> 1772122_302_B07     1 0.498
#> 1772122_180_E06     1 0.000
#> 1772122_301_A10     2 0.000
#> 1772122_182_A11     1 0.000
#> 1772122_180_G10     1 0.000
#> 1772122_301_D02     2 0.000
#> 1772122_301_F01     2 0.253
#> 1772122_181_A06     1 0.502
#> 1772122_181_B06     2 0.498
#> 1772122_182_F04     1 0.751
#> 1772122_181_F09     2 0.000
#> 1772122_182_D03     1 0.000
#> 1772122_300_F06     1 0.000
#> 1772122_300_D06     1 0.498
#> 1772122_299_D02     1 0.000
#> 1772122_301_G02     2 0.000
#> 1772122_299_H08     1 0.747
#> 1772122_300_C03     1 0.000
#> 1772122_299_B09     2 1.000
#> 1772122_301_A03     2 0.747
#> 1772122_300_H01     1 0.000
#> 1772122_300_C10     1 0.249
#> 1772122_300_A09     1 0.000
#> 1772122_298_H03     1 0.000
#> 1772122_299_C06     1 0.000
#> 1772122_182_E11     1 0.000
#> 1772122_300_B08     1 0.253
#> 1772122_300_C05     2 0.502
#> 1772122_300_E05     1 0.000
#> 1772122_180_C05     1 0.000
#> 1772122_300_E08     1 0.751
#> 1772122_181_G11     1 0.000
#> 1772122_300_G11     1 0.000
#> 1772122_300_D05     1 0.000
#> 1772122_300_A04     1 0.249
#> 1772122_300_B02     1 0.249
#> 1772122_302_A03     1 0.000
#> 1772122_180_G05     2 0.253
#> 1772122_300_F08     1 0.253
#> 1772122_182_E03     1 0.000
#> 1772122_299_G04     1 0.000
#> 1772122_298_A04     1 0.249
#> 1772122_181_E01     1 0.249
#> 1772122_302_C06     1 0.000
#> 1772122_298_B11     1 0.249
#> 1772122_182_F12     1 0.000
#> 1772122_180_H02     1 0.000
#> 1772122_180_A01     1 0.000
#> 1772122_180_C09     1 0.000
#> 1772122_180_D06     2 0.249
#> 1772122_302_B02     1 0.249
#> 1772122_300_G01     1 0.498
#> 1772122_298_E04     2 0.751
#> 1772122_301_C09     2 1.000
#> 1772122_301_E03     2 0.000
#> 1772122_180_C04     1 1.000
#> 1772122_299_F08     1 0.000
#> 1772122_180_H08     1 0.000
#> 1772122_298_D03     1 0.000
#> 1772122_180_A08     1 0.000
#> 1772122_181_A12     1 0.000
#> 1772122_180_C12     2 1.000
#> 1772122_182_B01     1 0.000
#> 1772122_180_H07     2 0.751
#> 1772122_182_E01     1 0.000
#> 1772122_181_C04     1 0.000
#> 1772122_180_D10     2 1.000
#> 1772122_181_B10     1 0.000
#> 1772122_182_F03     1 0.000
#> 1772122_180_B07     2 0.000
#> 1772122_181_C06     1 0.000
#> 1772122_181_G06     1 0.000
#> 1772122_181_H03     1 0.000
#> 1772122_181_F06     2 0.502
#> 1772122_181_D05     1 0.000
#> 1772122_299_E05     1 0.000
#> 1772122_182_E06     2 0.751
#> 1772122_302_C10     1 0.000
#> 1772122_182_H01     1 0.000
#> 1772122_181_C08     2 0.498
#> 1772122_299_H09     1 0.000
#> 1772122_182_B08     1 0.000
#> 1772122_299_H03     1 1.000
#> 1772122_181_B11     1 0.000
#> 1772122_180_C01     2 1.000
#> 1772122_182_C11     1 0.000
#> 1772122_182_B05     1 0.000
#> 1772122_302_A09     1 0.000
#> 1772122_182_C01     1 0.000
#> 1772122_299_C08     1 0.000
#> 1772122_299_G01     1 0.000
#> 1772122_182_E07     1 0.249
#> 1772122_181_H02     2 0.751
#> 1772122_181_D09     2 0.249
#> 1772122_180_G09     2 0.000
#> 1772122_181_D03     1 0.000
#> 1772122_181_H07     2 0.000
#> 1772122_298_C07     2 0.498
#> 1772122_182_D01     1 0.000
#> 1772122_302_H12     1 0.253
#> 1772122_299_A03     1 0.000
#> 1772122_181_H10     1 0.000
#> 1772122_180_E12     2 1.000
#> 1772122_180_B05     1 0.249
#> 1772122_181_H12     1 0.751
#> 1772122_180_E08     1 0.000
#> 1772122_180_F10     1 0.502
#> 1772122_180_F08     1 0.253
#> 1772122_181_F03     1 0.502
#> 1772122_299_E01     1 0.498
#> 1772122_181_B01     1 0.000
#> 1772122_180_F03     1 0.000
#> 1772122_182_B02     1 0.000
#> 1772122_181_F02     1 0.498
#> 1772122_181_B12     1 0.249
#> 1772122_182_D06     1 0.000
#> 1772122_181_F11     1 0.000
#> 1772122_181_E02     2 0.000
#> 1772122_180_C03     1 0.000
#> 1772122_180_B06     1 0.000
#> 1772122_180_D09     1 0.000
#> 1772122_182_H08     1 0.000
#> 1772122_298_C08     1 0.751
#> 1772122_182_C10     1 0.249
#> 1772122_180_D03     1 0.000
#> 1772122_182_A05     1 0.000
#> 1772122_299_H02     1 0.249
#> 1772122_180_B01     2 0.000
#> 1772122_299_C04     1 0.000
#> 1772122_180_B08     1 0.502
#> 1772122_181_F04     1 0.000
#> 1772122_182_B11     1 0.000
#> 1772122_181_E04     2 0.751
#> 1772122_181_D02     1 0.253
#> 1772122_182_A06     1 0.000
#> 1772122_181_A05     1 0.000
#> 1772122_181_B02     1 0.000
#> 1772122_182_D05     1 0.000
#> 1772122_181_F07     1 0.000
#> 1772122_181_H08     1 0.000
#> 1772122_181_C01     2 0.498
#> 1772122_182_C08     1 0.000
#> 1772122_180_F02     1 0.000
#> 1772122_181_G09     1 0.000
#> 1772122_181_E07     1 0.000
#> 1772122_180_F11     2 0.249
#> 1772122_302_B01     1 0.498
#> 1772122_180_F01     1 0.000
#> 1772122_180_E03     2 0.751
#> 1772122_181_A07     2 0.253
#> 1772122_299_E10     2 0.000
#> 1772122_181_B08     1 0.000
#> 1772122_299_A09     1 0.000
#> 1772122_182_B09     2 0.000
#> 1772122_182_G08     1 0.000
#> 1772122_181_F10     1 0.000
#> 1772122_262_E07     1 0.000
#> 1772122_206_E06     1 0.000
#> 1772122_262_F09     1 0.000
#> 1772122_205_H01     1 0.000
#> 1772122_206_B01     1 0.000
#> 1772122_204_E10     1 0.000
#> 1772122_204_H07     1 0.000
#> 1772122_262_B01     1 0.000
#> 1772122_204_G03     1 0.000
#> 1772122_206_G09     1 0.000
#> 1772122_204_E09     1 0.747
#> 1772122_262_F05     1 0.000
#> 1772122_204_E02     1 0.000
#> 1772122_262_G03     1 0.000
#> 1772122_262_D04     1 0.000
#> 1772122_205_B02     1 0.000
#> 1772122_325_B02     1 0.751
#> 1772122_263_E07     1 0.502
#> 1772122_325_A10     1 0.000
#> 1772122_206_D03     1 0.000
#> 1772122_263_D01     1 0.000
#> 1772122_262_A06     1 0.000
#> 1772122_326_B12     1 0.000
#> 1772122_263_F04     1 0.000
#> 1772122_262_B02     1 0.751
#> 1772122_325_B03     1 0.000
#> 1772122_326_A01     1 0.000
#> 1772122_325_E05     1 0.000
#> 1772122_326_F05     1 0.000
#> 1772122_204_H03     1 0.502
#> 1772122_263_H03     1 0.000
#> 1772122_326_F09     1 0.000
#> 1772122_326_H02     1 0.000
#> 1772122_206_H08     1 0.000
#> 1772122_263_G08     1 0.502
#> 1772122_325_E04     1 0.000
#> 1772122_312_E01     1 0.253
#> 1772122_314_C07     1 0.000
#> 1772122_312_E03     1 0.000
#> 1772122_312_D01     1 0.253
#> 1772122_311_F12     1 0.000
#> 1772122_310_E12     1 0.000
#> 1772122_310_D08     1 0.502
#> 1772122_314_F01     1 0.000
#> 1772122_311_G09     1 0.000
#> 1772122_310_C09     1 0.253
#> 1772122_312_H06     1 0.000
#> 1772122_312_B09     2 0.249
#> 1772122_314_H10     1 0.000
#> 1772122_310_F10     1 0.000
#> 1772122_312_C11     1 0.000
#> 1772122_310_G03     1 0.502
#> 1772122_312_G07     1 0.000
#> 1772122_310_E08     1 0.502
#> 1772122_311_F04     1 0.249
#> 1772122_311_C03     2 0.498
#> 1772122_311_C10     1 0.000
#> 1772122_311_C05     2 0.498
#> 1772122_310_C01     1 0.253
#> 1772122_310_C05     1 0.000
#> 1772122_310_D01     1 0.000
#> 1772122_312_C03     1 0.000
#> 1772122_314_F02     1 0.502
#> 1772122_310_D03     1 0.249
#> 1772122_312_A04     1 0.000
#> 1772122_310_B02     1 0.253
#> 1772122_312_H03     1 0.000

show/hide code output

get_classes(res, k = 3)
#>                 class     p
#> 1772122_301_C02     2 0.000
#> 1772122_180_E05     2 0.000
#> 1772122_300_H02     2 0.000
#> 1772122_180_B09     2 0.000
#> 1772122_180_G04     2 0.000
#> 1772122_182_E09     2 0.000
#> 1772122_302_C04     2 0.000
#> 1772122_302_D11     2 0.000
#> 1772122_180_C11     2 0.000
#> 1772122_298_A07     2 0.000
#> 1772122_299_A11     2 0.000
#> 1772122_298_D09     2 0.000
#> 1772122_180_A06     2 0.000
#> 1772122_302_G06     2 0.000
#> 1772122_182_D07     2 0.000
#> 1772122_182_D02     2 0.000
#> 1772122_300_D04     1 0.498
#> 1772122_300_E06     1 0.249
#> 1772122_300_F10     2 0.000
#> 1772122_301_G12     2 0.000
#> 1772122_301_F09     2 0.000
#> 1772122_301_C12     2 0.000
#> 1772122_301_F07     2 0.000
#> 1772122_301_F05     2 0.000
#> 1772122_301_D08     2 0.000
#> 1772122_301_G10     2 0.000
#> 1772122_301_C04     2 0.000
#> 1772122_301_G07     2 0.000
#> 1772122_301_B08     2 0.000
#> 1772122_301_G04     2 0.000
#> 1772122_298_G11     1 0.000
#> 1772122_301_H03     2 0.000
#> 1772122_302_G07     2 0.000
#> 1772122_301_D10     2 0.000
#> 1772122_300_F01     2 0.000
#> 1772122_299_H11     2 0.000
#> 1772122_299_B05     2 0.000
#> 1772122_301_C07     2 0.000
#> 1772122_298_C12     2 0.000
#> 1772122_300_A05     2 0.000
#> 1772122_300_H06     2 0.000
#> 1772122_301_E07     2 0.000
#> 1772122_301_A02     2 0.000
#> 1772122_299_F02     2 0.000
#> 1772122_300_D02     2 0.249
#> 1772122_301_H05     2 0.000
#> 1772122_181_C12     1 0.000
#> 1772122_180_H06     1 0.000
#> 1772122_302_D07     2 0.000
#> 1772122_302_A08     2 0.000
#> 1772122_180_H12     2 0.249
#> 1772122_180_H10     1 0.498
#> 1772122_182_G02     1 0.000
#> 1772122_181_E09     1 0.000
#> 1772122_299_F06     1 0.000
#> 1772122_302_H11     1 0.000
#> 1772122_180_G03     2 0.000
#> 1772122_301_H12     2 0.000
#> 1772122_300_D03     1 0.249
#> 1772122_299_C07     1 0.000
#> 1772122_182_E08     1 0.000
#> 1772122_302_G08     1 0.498
#> 1772122_301_A04     1 0.000
#> 1772122_302_D04     2 0.000
#> 1772122_300_E11     1 0.000
#> 1772122_300_C01     2 0.000
#> 1772122_181_A03     1 0.000
#> 1772122_298_C11     2 0.000
#> 1772122_298_E09     1 0.000
#> 1772122_298_H07     2 0.502
#> 1772122_300_B12     2 0.000
#> 1772122_300_H08     1 0.000
#> 1772122_298_F03     2 0.000
#> 1772122_182_A09     2 0.000
#> 1772122_182_C09     1 0.000
#> 1772122_298_D10     1 0.000
#> 1772122_298_D05     2 0.000
#> 1772122_299_C01     1 0.502
#> 1772122_180_A02     2 0.000
#> 1772122_300_F05     1 0.000
#> 1772122_182_A10     1 0.000
#> 1772122_299_F10     1 0.000
#> 1772122_181_E05     1 0.000
#> 1772122_300_A12     2 0.000
#> 1772122_300_G04     1 0.000
#> 1772122_182_H12     1 0.000
#> 1772122_302_G10     1 0.000
#> 1772122_182_C06     1 0.000
#> 1772122_298_E06     2 0.000
#> 1772122_300_A01     2 0.000
#> 1772122_300_E03     1 0.000
#> 1772122_302_C05     1 0.000
#> 1772122_299_G06     2 0.000
#> 1772122_299_F09     1 0.000
#> 1772122_302_C12     1 0.000
#> 1772122_299_E07     2 0.000
#> 1772122_180_D02     2 0.000
#> 1772122_300_D09     1 0.000
#> 1772122_298_F09     3 0.751
#> 1772122_302_A11     2 0.000
#> 1772122_180_F06     1 0.000
#> 1772122_299_E09     1 0.000
#> 1772122_180_A05     1 0.000
#> 1772122_182_C05     1 0.000
#> 1772122_181_C05     2 0.249
#> 1772122_300_A06     1 0.000
#> 1772122_181_A02     1 0.000
#> 1772122_181_E11     1 0.000
#> 1772122_298_C05     2 1.000
#> 1772122_181_C07     1 0.000
#> 1772122_182_C02     2 0.253
#> 1772122_300_E10     3 0.751
#> 1772122_299_D06     1 0.000
#> 1772122_180_F09     1 0.000
#> 1772122_299_B07     2 1.000
#> 1772122_300_F04     2 0.000
#> 1772122_180_D12     1 0.000
#> 1772122_180_H11     2 0.000
#> 1772122_300_A10     2 0.000
#> 1772122_299_G05     2 0.000
#> 1772122_299_E06     2 0.000
#> 1772122_315_A07     3 0.000
#> 1772122_206_D10     2 1.000
#> 1772122_325_G03     3 0.498
#> 1772122_315_F02     2 0.000
#> 1772122_182_H11     1 0.000
#> 1772122_263_G09     1 1.000
#> 1772122_326_G12     1 1.000
#> 1772122_325_A08     3 0.000
#> 1772122_263_G11     3 0.000
#> 1772122_299_A07     3 1.000
#> 1772122_303_A03     2 0.000
#> 1772122_303_A05     1 0.000
#> 1772122_298_H05     1 0.000
#> 1772122_303_B12     2 0.502
#> 1772122_303_D05     1 0.000
#> 1772122_326_H08     3 0.000
#> 1772122_206_H10     2 0.000
#> 1772122_263_H02     2 1.000
#> 1772122_306_E02     2 0.000
#> 1772122_315_E03     2 1.000
#> 1772122_305_G07     2 0.502
#> 1772122_306_H02     2 0.000
#> 1772122_303_D08     2 0.000
#> 1772122_303_H07     2 0.000
#> 1772122_306_D05     2 0.000
#> 1772122_305_H05     2 0.000
#> 1772122_302_B03     1 0.000
#> 1772122_300_B03     1 0.498
#> 1772122_299_E02     1 0.000
#> 1772122_303_B01     3 0.000
#> 1772122_298_B10     1 0.000
#> 1772122_298_D07     3 0.249
#> 1772122_298_G09     2 0.000
#> 1772122_300_E07     1 0.000
#> 1772122_298_H12     1 0.000
#> 1772122_298_D11     3 0.000
#> 1772122_299_G12     1 0.000
#> 1772122_302_F05     1 0.000
#> 1772122_300_E09     2 0.000
#> 1772122_301_G09     2 0.000
#> 1772122_300_F02     2 0.000
#> 1772122_301_G11     2 0.000
#> 1772122_302_D05     1 0.000
#> 1772122_302_E11     2 0.751
#> 1772122_299_A05     3 0.000
#> 1772122_299_H06     3 0.000
#> 1772122_301_A01     2 0.000
#> 1772122_299_D04     2 0.000
#> 1772122_180_E07     2 0.502
#> 1772122_300_E02     2 0.000
#> 1772122_301_A09     2 0.000
#> 1772122_301_B05     2 0.000
#> 1772122_302_G09     1 1.000
#> 1772122_299_A06     3 0.000
#> 1772122_301_B12     2 0.000
#> 1772122_324_H10     1 0.000
#> 1772122_301_F03     2 0.000
#> 1772122_181_H01     1 0.000
#> 1772122_325_F05     1 0.498
#> 1772122_301_E02     2 0.000
#> 1772122_302_F11     1 1.000
#> 1772122_300_C06     2 1.000
#> 1772122_302_G04     1 0.000
#> 1772122_299_C05     3 0.249
#> 1772122_302_H08     1 0.000
#> 1772122_300_G08     1 1.000
#> 1772122_299_B02     1 0.000
#> 1772122_301_A05     2 0.000
#> 1772122_302_B11     1 0.000
#> 1772122_299_H04     3 0.000
#> 1772122_299_G07     3 0.000
#> 1772122_300_C09     3 0.000
#> 1772122_300_A03     1 0.000
#> 1772122_302_A02     2 0.000
#> 1772122_302_H07     3 0.000
#> 1772122_300_C07     1 0.751
#> 1772122_298_C02     3 0.000
#> 1772122_300_E12     3 0.000
#> 1772122_299_H12     3 0.000
#> 1772122_300_B04     1 0.000
#> 1772122_300_H05     3 0.000
#> 1772122_299_D09     1 0.000
#> 1772122_299_B04     3 0.502
#> 1772122_298_A09     2 0.000
#> 1772122_298_E02     2 0.751
#> 1772122_302_D06     2 0.000
#> 1772122_180_F12     1 0.000
#> 1772122_298_F02     3 0.000
#> 1772122_301_B11     2 0.000
#> 1772122_301_H01     2 0.000
#> 1772122_301_H06     2 0.000
#> 1772122_301_F02     2 0.000
#> 1772122_305_D01     2 0.249
#> 1772122_181_D10     1 0.000
#> 1772122_182_E04     1 0.000
#> 1772122_182_B12     1 0.000
#> 1772122_301_E01     2 0.000
#> 1772122_315_B01     3 0.000
#> 1772122_300_B05     1 0.000
#> 1772122_298_A01     1 0.000
#> 1772122_182_A01     1 0.000
#> 1772122_300_C12     1 0.000
#> 1772122_299_D11     2 0.000
#> 1772122_302_B05     1 0.000
#> 1772122_180_C08     1 0.747
#> 1772122_302_C08     1 0.253
#> 1772122_300_D10     1 0.000
#> 1772122_299_C10     3 0.747
#> 1772122_302_E12     1 0.000
#> 1772122_298_H04     2 0.000
#> 1772122_182_D09     1 0.000
#> 1772122_300_D07     3 0.000
#> 1772122_298_F12     1 0.502
#> 1772122_299_A01     1 0.751
#> 1772122_299_F12     1 0.000
#> 1772122_298_B05     1 0.253
#> 1772122_301_C01     2 0.000
#> 1772122_298_A08     1 0.000
#> 1772122_180_F05     2 1.000
#> 1772122_299_H10     1 0.000
#> 1772122_299_D01     1 0.000
#> 1772122_302_A01     1 0.000
#> 1772122_298_H10     1 0.000
#> 1772122_298_F05     2 1.000
#> 1772122_301_C06     2 0.000
#> 1772122_298_C04     1 0.498
#> 1772122_181_G05     1 0.000
#> 1772122_298_D04     1 0.000
#> 1772122_180_B10     1 0.000
#> 1772122_180_H04     2 0.000
#> 1772122_301_B03     2 0.000
#> 1772122_298_A11     2 0.000
#> 1772122_182_D04     2 0.000
#> 1772122_300_H10     2 1.000
#> 1772122_301_B06     2 0.000
#> 1772122_301_D06     2 0.000
#> 1772122_298_A03     2 0.000
#> 1772122_301_A11     2 0.000
#> 1772122_301_F06     2 0.000
#> 1772122_298_F04     1 0.000
#> 1772122_300_H12     2 0.000
#> 1772122_301_B07     2 0.000
#> 1772122_299_F04     2 0.000
#> 1772122_300_E04     2 0.000
#> 1772122_299_F11     2 0.000
#> 1772122_300_H09     1 0.000
#> 1772122_302_C02     2 0.000
#> 1772122_301_D05     2 0.000
#> 1772122_301_H04     2 0.000
#> 1772122_300_G06     2 0.498
#> 1772122_299_H07     2 0.000
#> 1772122_298_H06     2 0.000
#> 1772122_301_G06     2 0.000
#> 1772122_301_C10     2 0.000
#> 1772122_300_B11     2 0.000
#> 1772122_301_C08     2 0.000
#> 1772122_301_D07     2 0.000
#> 1772122_301_D04     2 0.000
#> 1772122_301_G05     2 0.000
#> 1772122_301_H09     2 0.000
#> 1772122_302_F02     2 0.000
#> 1772122_300_F11     2 0.000
#> 1772122_301_C11     2 0.000
#> 1772122_301_F11     2 0.000
#> 1772122_302_C11     1 0.000
#> 1772122_299_A08     2 0.000
#> 1772122_301_E10     2 0.000
#> 1772122_300_D11     2 0.000
#> 1772122_182_A12     1 0.000
#> 1772122_301_C05     2 0.000
#> 1772122_302_B09     2 0.000
#> 1772122_299_B10     1 0.000
#> 1772122_182_F09     2 1.000
#> 1772122_299_F03     1 0.000
#> 1772122_303_C09     2 0.249
#> 1772122_306_E09     3 1.000
#> 1772122_305_B03     1 1.000
#> 1772122_305_A01     3 0.000
#> 1772122_306_C10     3 0.000
#> 1772122_303_D01     3 0.000
#> 1772122_305_E12     3 0.000
#> 1772122_303_F12     3 0.000
#> 1772122_306_D12     3 0.000
#> 1772122_303_E07     3 0.000
#> 1772122_306_C09     3 0.000
#> 1772122_305_G10     3 0.000
#> 1772122_315_F10     3 0.000
#> 1772122_306_G09     3 0.000
#> 1772122_315_B05     3 0.000
#> 1772122_306_H08     3 0.000
#> 1772122_306_A07     1 1.000
#> 1772122_302_F01     1 0.000
#> 1772122_305_G02     3 0.000
#> 1772122_262_A05     3 1.000
#> 1772122_305_H09     3 1.000
#> 1772122_306_F11     3 0.751
#> 1772122_315_B11     3 0.000
#> 1772122_302_G01     1 0.000
#> 1772122_306_C11     3 1.000
#> 1772122_315_D08     3 0.000
#> 1772122_300_D12     1 0.000
#> 1772122_306_E07     3 0.000
#> 1772122_306_A02     3 0.000
#> 1772122_315_G12     3 0.000
#> 1772122_306_A06     1 0.751
#> 1772122_306_D11     3 0.502
#> 1772122_306_E10     3 0.000
#> 1772122_306_B05     3 1.000
#> 1772122_205_B05     3 0.000
#> 1772122_306_F04     3 0.000
#> 1772122_315_A03     3 0.000
#> 1772122_315_H01     1 1.000
#> 1772122_302_G11     1 0.000
#> 1772122_305_H02     3 0.000
#> 1772122_305_H04     3 0.000
#> 1772122_315_C12     3 0.000
#> 1772122_303_A08     3 0.000
#> 1772122_303_F04     3 0.000
#> 1772122_303_A10     3 0.000
#> 1772122_300_G03     1 0.000
#> 1772122_305_A10     3 0.000
#> 1772122_303_G08     3 0.000
#> 1772122_299_D12     3 0.000
#> 1772122_305_G09     1 1.000
#> 1772122_305_E10     3 0.000
#> 1772122_298_F07     1 1.000
#> 1772122_301_E08     2 0.000
#> 1772122_262_F01     3 0.000
#> 1772122_300_G05     1 0.000
#> 1772122_298_C06     3 0.000
#> 1772122_300_H03     1 1.000
#> 1772122_305_A04     3 0.000
#> 1772122_305_A05     3 0.000
#> 1772122_305_G04     3 1.000
#> 1772122_306_B10     3 0.000
#> 1772122_303_C11     3 0.000
#> 1772122_315_C07     2 0.000
#> 1772122_302_E08     1 0.000
#> 1772122_182_F01     1 0.000
#> 1772122_298_B01     1 0.751
#> 1772122_302_E02     1 0.000
#> 1772122_301_A12     2 0.000
#> 1772122_305_B10     3 0.000
#> 1772122_306_E01     3 0.000
#> 1772122_299_G08     1 1.000
#> 1772122_300_C11     2 1.000
#> 1772122_301_E04     2 0.000
#> 1772122_301_E12     2 0.000
#> 1772122_301_E05     2 0.000
#> 1772122_301_D01     2 0.000
#> 1772122_180_A07     3 1.000
#> 1772122_301_F08     1 0.000
#> 1772122_300_D08     1 0.000
#> 1772122_300_A02     2 1.000
#> 1772122_180_H01     3 0.000
#> 1772122_298_G07     3 0.000
#> 1772122_299_A02     3 0.000
#> 1772122_181_F01     1 1.000
#> 1772122_180_A12     1 1.000
#> 1772122_302_G02     1 0.502
#> 1772122_180_E11     2 1.000
#> 1772122_298_E08     3 0.000
#> 1772122_302_E03     3 0.000
#> 1772122_300_B09     3 0.747
#> 1772122_182_C12     1 0.253
#> 1772122_181_A04     1 0.000
#> 1772122_182_A02     1 0.000
#> 1772122_181_C03     3 0.000
#> 1772122_181_D01     3 0.747
#> 1772122_181_B05     1 1.000
#> 1772122_180_G08     3 0.000
#> 1772122_180_G11     3 0.000
#> 1772122_302_F09     2 1.000
#> 1772122_300_G12     3 0.751
#> 1772122_298_D06     3 0.000
#> 1772122_299_H05     3 1.000
#> 1772122_180_B03     3 0.000
#> 1772122_300_G07     3 0.000
#> 1772122_298_E01     3 0.502
#> 1772122_298_G03     3 0.000
#> 1772122_302_A12     1 0.000
#> 1772122_181_D12     3 1.000
#> 1772122_299_E03     1 0.249
#> 1772122_181_D07     3 0.000
#> 1772122_298_H02     3 0.000
#> 1772122_181_H05     3 0.000
#> 1772122_181_E12     1 1.000
#> 1772122_302_F12     1 0.000
#> 1772122_299_G09     1 0.000
#> 1772122_182_B10     1 1.000
#> 1772122_182_A07     1 0.000
#> 1772122_298_F11     3 0.000
#> 1772122_181_G07     3 0.000
#> 1772122_182_B06     3 1.000
#> 1772122_299_G03     3 0.000
#> 1772122_298_A10     3 1.000
#> 1772122_180_B02     1 0.747
#> 1772122_298_E07     3 0.751
#> 1772122_300_C08     3 1.000
#> 1772122_298_D02     3 0.000
#> 1772122_299_A12     1 1.000
#> 1772122_182_B04     3 0.000
#> 1772122_181_E03     1 0.751
#> 1772122_299_B03     1 1.000
#> 1772122_181_C11     3 0.000
#> 1772122_181_H04     3 1.000
#> 1772122_300_D01     1 0.000
#> 1772122_302_E06     1 1.000
#> 1772122_301_G03     1 0.000
#> 1772122_302_A05     1 1.000
#> 1772122_300_H07     2 0.000
#> 1772122_301_B02     2 0.000
#> 1772122_182_G03     1 0.000
#> 1772122_301_C03     1 0.000
#> 1772122_180_D05     3 0.000
#> 1772122_180_D08     1 0.000
#> 1772122_299_C12     3 0.751
#> 1772122_302_H06     3 0.000
#> 1772122_298_E12     3 1.000
#> 1772122_298_B08     3 0.000
#> 1772122_302_G12     1 0.751
#> 1772122_300_E01     1 1.000
#> 1772122_300_B10     3 0.000
#> 1772122_180_G12     3 0.000
#> 1772122_300_F07     1 0.000
#> 1772122_180_B12     3 1.000
#> 1772122_182_F08     1 0.000
#> 1772122_302_E04     1 0.000
#> 1772122_298_F06     3 1.000
#> 1772122_300_C04     3 0.000
#> 1772122_302_H01     3 0.498
#> 1772122_302_D02     3 0.000
#> 1772122_182_E05     1 1.000
#> 1772122_182_E10     1 1.000
#> 1772122_182_B07     1 1.000
#> 1772122_180_A03     3 0.000
#> 1772122_180_F04     3 1.000
#> 1772122_299_D05     1 1.000
#> 1772122_182_F02     1 1.000
#> 1772122_299_E12     3 0.000
#> 1772122_298_A05     3 0.000
#> 1772122_298_B02     2 1.000
#> 1772122_181_F08     3 1.000
#> 1772122_298_C03     3 0.498
#> 1772122_300_G10     3 0.000
#> 1772122_182_E12     1 1.000
#> 1772122_298_B04     3 0.000
#> 1772122_301_E06     2 0.000
#> 1772122_182_H09     1 0.498
#> 1772122_302_A10     1 0.502
#> 1772122_181_F12     1 1.000
#> 1772122_302_H10     3 0.000
#> 1772122_302_H05     3 1.000
#> 1772122_181_D11     2 0.000
#> 1772122_298_G08     3 0.249
#> 1772122_298_H11     2 0.751
#> 1772122_180_G07     1 1.000
#> 1772122_180_A10     3 0.751
#> 1772122_298_D08     3 0.000
#> 1772122_299_B01     3 0.000
#> 1772122_299_F05     3 0.000
#> 1772122_302_B07     1 0.502
#> 1772122_180_E06     3 0.000
#> 1772122_301_A10     2 0.000
#> 1772122_182_A11     1 1.000
#> 1772122_180_G10     3 0.000
#> 1772122_301_D02     2 0.000
#> 1772122_301_F01     2 0.000
#> 1772122_181_A06     3 1.000
#> 1772122_181_B06     3 0.000
#> 1772122_182_F04     1 1.000
#> 1772122_181_F09     2 1.000
#> 1772122_182_D03     3 0.000
#> 1772122_300_F06     3 0.000
#> 1772122_300_D06     3 0.000
#> 1772122_299_D02     3 0.000
#> 1772122_301_G02     2 0.000
#> 1772122_299_H08     3 0.000
#> 1772122_300_C03     1 0.249
#> 1772122_299_B09     3 0.000
#> 1772122_301_A03     2 0.751
#> 1772122_300_H01     1 0.000
#> 1772122_300_C10     3 0.000
#> 1772122_300_A09     1 0.751
#> 1772122_298_H03     3 0.000
#> 1772122_299_C06     3 0.000
#> 1772122_182_E11     1 0.000
#> 1772122_300_B08     1 0.000
#> 1772122_300_C05     3 0.000
#> 1772122_300_E05     3 1.000
#> 1772122_180_C05     1 0.000
#> 1772122_300_E08     3 0.000
#> 1772122_181_G11     1 0.502
#> 1772122_300_G11     1 0.000
#> 1772122_300_D05     1 1.000
#> 1772122_300_A04     3 0.000
#> 1772122_300_B02     3 0.000
#> 1772122_302_A03     1 0.249
#> 1772122_180_G05     2 1.000
#> 1772122_300_F08     3 0.000
#> 1772122_182_E03     3 1.000
#> 1772122_299_G04     1 0.000
#> 1772122_298_A04     3 0.000
#> 1772122_181_E01     1 0.751
#> 1772122_302_C06     1 0.000
#> 1772122_298_B11     3 0.000
#> 1772122_182_F12     1 0.000
#> 1772122_180_H02     3 0.502
#> 1772122_180_A01     1 0.249
#> 1772122_180_C09     1 0.000
#> 1772122_180_D06     3 0.751
#> 1772122_302_B02     3 0.000
#> 1772122_300_G01     1 1.000
#> 1772122_298_E04     3 0.000
#> 1772122_301_C09     1 0.000
#> 1772122_301_E03     2 1.000
#> 1772122_180_C04     3 0.000
#> 1772122_299_F08     1 0.000
#> 1772122_180_H08     1 0.498
#> 1772122_298_D03     3 0.249
#> 1772122_180_A08     3 0.000
#> 1772122_181_A12     3 1.000
#> 1772122_180_C12     3 0.000
#> 1772122_182_B01     3 0.000
#> 1772122_180_H07     3 0.000
#> 1772122_182_E01     1 1.000
#> 1772122_181_C04     3 1.000
#> 1772122_180_D10     3 0.000
#> 1772122_181_B10     3 0.502
#> 1772122_182_F03     3 1.000
#> 1772122_180_B07     3 0.000
#> 1772122_181_C06     3 0.000
#> 1772122_181_G06     3 0.000
#> 1772122_181_H03     1 0.000
#> 1772122_181_F06     3 0.000
#> 1772122_181_D05     3 0.000
#> 1772122_299_E05     3 0.000
#> 1772122_182_E06     3 0.000
#> 1772122_302_C10     1 1.000
#> 1772122_182_H01     3 0.747
#> 1772122_181_C08     1 0.498
#> 1772122_299_H09     3 0.000
#> 1772122_182_B08     1 0.000
#> 1772122_299_H03     3 0.000
#> 1772122_181_B11     3 1.000
#> 1772122_180_C01     3 0.000
#> 1772122_182_C11     1 1.000
#> 1772122_182_B05     1 0.000
#> 1772122_302_A09     1 1.000
#> 1772122_182_C01     1 0.000
#> 1772122_299_C08     3 0.000
#> 1772122_299_G01     1 1.000
#> 1772122_182_E07     3 0.000
#> 1772122_181_H02     3 0.000
#> 1772122_181_D09     3 0.000
#> 1772122_180_G09     2 1.000
#> 1772122_181_D03     1 0.000
#> 1772122_181_H07     3 1.000
#> 1772122_298_C07     2 1.000
#> 1772122_182_D01     3 1.000
#> 1772122_302_H12     3 0.000
#> 1772122_299_A03     1 0.751
#> 1772122_181_H10     1 0.000
#> 1772122_180_E12     3 0.000
#> 1772122_180_B05     3 1.000
#> 1772122_181_H12     3 1.000
#> 1772122_180_E08     1 1.000
#> 1772122_180_F10     3 0.000
#> 1772122_180_F08     3 0.000
#> 1772122_181_F03     3 0.000
#> 1772122_299_E01     3 0.000
#> 1772122_181_B01     3 1.000
#> 1772122_180_F03     1 0.000
#> 1772122_182_B02     1 1.000
#> 1772122_181_F02     3 0.000
#> 1772122_181_B12     1 1.000
#> 1772122_182_D06     3 0.000
#> 1772122_181_F11     3 1.000
#> 1772122_181_E02     2 0.000
#> 1772122_180_C03     1 1.000
#> 1772122_180_B06     3 1.000
#> 1772122_180_D09     3 0.000
#> 1772122_182_H08     1 0.000
#> 1772122_298_C08     3 0.000
#> 1772122_182_C10     1 0.000
#> 1772122_180_D03     3 1.000
#> 1772122_182_A05     1 0.000
#> 1772122_299_H02     3 0.000
#> 1772122_180_B01     3 0.000
#> 1772122_299_C04     1 1.000
#> 1772122_180_B08     3 0.000
#> 1772122_181_F04     1 0.000
#> 1772122_182_B11     1 0.000
#> 1772122_181_E04     3 0.000
#> 1772122_181_D02     3 0.000
#> 1772122_182_A06     1 1.000
#> 1772122_181_A05     1 1.000
#> 1772122_181_B02     1 1.000
#> 1772122_182_D05     1 0.000
#> 1772122_181_F07     3 0.000
#> 1772122_181_H08     1 1.000
#> 1772122_181_C01     1 0.249
#> 1772122_182_C08     1 0.751
#> 1772122_180_F02     1 1.000
#> 1772122_181_G09     1 0.000
#> 1772122_181_E07     3 0.000
#> 1772122_180_F11     3 1.000
#> 1772122_302_B01     1 0.249
#> 1772122_180_F01     3 0.000
#> 1772122_180_E03     3 0.000
#> 1772122_181_A07     3 0.000
#> 1772122_299_E10     2 0.249
#> 1772122_181_B08     1 0.502
#> 1772122_299_A09     3 0.000
#> 1772122_182_B09     2 0.000
#> 1772122_182_G08     1 0.249
#> 1772122_181_F10     3 0.000
#> 1772122_262_E07     3 0.000
#> 1772122_206_E06     3 0.000
#> 1772122_262_F09     3 0.000
#> 1772122_205_H01     3 0.000
#> 1772122_206_B01     3 0.000
#> 1772122_204_E10     3 0.000
#> 1772122_204_H07     3 0.000
#> 1772122_262_B01     3 0.000
#> 1772122_204_G03     3 0.000
#> 1772122_206_G09     3 0.000
#> 1772122_204_E09     3 0.000
#> 1772122_262_F05     3 0.000
#> 1772122_204_E02     3 0.000
#> 1772122_262_G03     3 0.000
#> 1772122_262_D04     3 0.000
#> 1772122_205_B02     3 0.000
#> 1772122_325_B02     3 0.000
#> 1772122_263_E07     3 0.000
#> 1772122_325_A10     3 0.000
#> 1772122_206_D03     3 0.000
#> 1772122_263_D01     3 0.000
#> 1772122_262_A06     3 0.000
#> 1772122_326_B12     3 0.000
#> 1772122_263_F04     3 0.000
#> 1772122_262_B02     3 0.000
#> 1772122_325_B03     3 0.000
#> 1772122_326_A01     3 0.000
#> 1772122_325_E05     3 0.000
#> 1772122_326_F05     3 0.000
#> 1772122_204_H03     3 0.000
#> 1772122_263_H03     3 0.000
#> 1772122_326_F09     3 0.000
#> 1772122_326_H02     3 0.000
#> 1772122_206_H08     3 0.000
#> 1772122_263_G08     3 0.000
#> 1772122_325_E04     3 0.000
#> 1772122_312_E01     3 0.000
#> 1772122_314_C07     3 0.000
#> 1772122_312_E03     3 0.000
#> 1772122_312_D01     3 0.000
#> 1772122_311_F12     3 0.000
#> 1772122_310_E12     3 0.000
#> 1772122_310_D08     3 0.000
#> 1772122_314_F01     3 0.000
#> 1772122_311_G09     1 0.249
#> 1772122_310_C09     3 0.000
#> 1772122_312_H06     3 0.000
#> 1772122_312_B09     3 0.751
#> 1772122_314_H10     3 0.000
#> 1772122_310_F10     3 0.000
#> 1772122_312_C11     3 0.000
#> 1772122_310_G03     3 0.000
#> 1772122_312_G07     3 0.000
#> 1772122_310_E08     3 0.000
#> 1772122_311_F04     3 0.000
#> 1772122_311_C03     3 0.000
#> 1772122_311_C10     3 0.000
#> 1772122_311_C05     3 0.000
#> 1772122_310_C01     3 0.000
#> 1772122_310_C05     3 0.000
#> 1772122_310_D01     3 1.000
#> 1772122_312_C03     3 0.000
#> 1772122_314_F02     3 0.000
#> 1772122_310_D03     3 0.000
#> 1772122_312_A04     3 1.000
#> 1772122_310_B02     3 0.000
#> 1772122_312_H03     3 0.000

show/hide code output

get_classes(res, k = 4)
#>                 class     p
#> 1772122_301_C02     2 0.000
#> 1772122_180_E05     2 0.249
#> 1772122_300_H02     2 0.000
#> 1772122_180_B09     2 0.000
#> 1772122_180_G04     2 0.000
#> 1772122_182_E09     2 0.000
#> 1772122_302_C04     4 0.000
#> 1772122_302_D11     4 1.000
#> 1772122_180_C11     2 0.000
#> 1772122_298_A07     2 0.000
#> 1772122_299_A11     2 0.000
#> 1772122_298_D09     2 0.000
#> 1772122_180_A06     2 0.000
#> 1772122_302_G06     4 0.000
#> 1772122_182_D07     4 0.000
#> 1772122_182_D02     2 0.000
#> 1772122_300_D04     4 0.000
#> 1772122_300_E06     4 0.000
#> 1772122_300_F10     2 0.751
#> 1772122_301_G12     2 0.000
#> 1772122_301_F09     2 0.000
#> 1772122_301_C12     2 0.000
#> 1772122_301_F07     2 0.000
#> 1772122_301_F05     2 0.000
#> 1772122_301_D08     4 0.249
#> 1772122_301_G10     2 0.000
#> 1772122_301_C04     2 0.000
#> 1772122_301_G07     2 0.000
#> 1772122_301_B08     2 0.000
#> 1772122_301_G04     2 0.000
#> 1772122_298_G11     4 0.000
#> 1772122_301_H03     2 0.000
#> 1772122_302_G07     2 0.000
#> 1772122_301_D10     2 0.502
#> 1772122_300_F01     4 0.000
#> 1772122_299_H11     2 0.249
#> 1772122_299_B05     2 0.000
#> 1772122_301_C07     2 0.000
#> 1772122_298_C12     2 0.000
#> 1772122_300_A05     2 0.000
#> 1772122_300_H06     2 0.000
#> 1772122_301_E07     2 0.000
#> 1772122_301_A02     2 0.000
#> 1772122_299_F02     2 0.000
#> 1772122_300_D02     4 0.000
#> 1772122_301_H05     2 0.000
#> 1772122_181_C12     4 0.000
#> 1772122_180_H06     4 0.000
#> 1772122_302_D07     2 0.000
#> 1772122_302_A08     2 0.498
#> 1772122_180_H12     2 0.498
#> 1772122_180_H10     4 1.000
#> 1772122_182_G02     4 0.000
#> 1772122_181_E09     4 0.000
#> 1772122_299_F06     4 0.000
#> 1772122_302_H11     4 0.502
#> 1772122_180_G03     2 0.249
#> 1772122_301_H12     4 0.000
#> 1772122_300_D03     4 0.000
#> 1772122_299_C07     4 0.000
#> 1772122_182_E08     4 0.000
#> 1772122_302_G08     4 0.000
#> 1772122_301_A04     4 0.000
#> 1772122_302_D04     2 0.249
#> 1772122_300_E11     4 0.000
#> 1772122_300_C01     4 0.000
#> 1772122_181_A03     4 0.000
#> 1772122_298_C11     2 0.000
#> 1772122_298_E09     4 0.000
#> 1772122_298_H07     2 0.253
#> 1772122_300_B12     4 0.000
#> 1772122_300_H08     4 0.000
#> 1772122_298_F03     2 0.502
#> 1772122_182_A09     2 0.000
#> 1772122_182_C09     4 0.000
#> 1772122_298_D10     4 0.000
#> 1772122_298_D05     4 0.000
#> 1772122_299_C01     4 0.000
#> 1772122_180_A02     2 0.000
#> 1772122_300_F05     4 0.000
#> 1772122_182_A10     4 0.000
#> 1772122_299_F10     4 0.000
#> 1772122_181_E05     4 0.253
#> 1772122_300_A12     2 0.253
#> 1772122_300_G04     4 0.000
#> 1772122_182_H12     4 0.000
#> 1772122_302_G10     4 0.000
#> 1772122_182_C06     4 0.000
#> 1772122_298_E06     2 0.000
#> 1772122_300_A01     2 1.000
#> 1772122_300_E03     4 0.253
#> 1772122_302_C05     4 0.000
#> 1772122_299_G06     2 0.000
#> 1772122_299_F09     4 0.751
#> 1772122_302_C12     4 0.000
#> 1772122_299_E07     2 0.751
#> 1772122_180_D02     2 0.000
#> 1772122_300_D09     4 0.000
#> 1772122_298_F09     3 0.253
#> 1772122_302_A11     4 0.000
#> 1772122_180_F06     4 0.000
#> 1772122_299_E09     4 0.000
#> 1772122_180_A05     1 1.000
#> 1772122_182_C05     4 0.000
#> 1772122_181_C05     2 0.000
#> 1772122_300_A06     4 0.000
#> 1772122_181_A02     4 0.000
#> 1772122_181_E11     4 0.000
#> 1772122_298_C05     3 1.000
#> 1772122_181_C07     4 0.000
#> 1772122_182_C02     4 0.498
#> 1772122_300_E10     3 0.253
#> 1772122_299_D06     4 0.000
#> 1772122_180_F09     4 0.000
#> 1772122_299_B07     3 1.000
#> 1772122_300_F04     2 0.000
#> 1772122_180_D12     4 0.000
#> 1772122_180_H11     2 0.000
#> 1772122_300_A10     4 0.253
#> 1772122_299_G05     4 0.000
#> 1772122_299_E06     4 0.502
#> 1772122_315_A07     3 0.249
#> 1772122_206_D10     2 0.747
#> 1772122_325_G03     3 1.000
#> 1772122_315_F02     2 0.000
#> 1772122_182_H11     4 1.000
#> 1772122_263_G09     1 0.747
#> 1772122_326_G12     1 1.000
#> 1772122_325_A08     3 0.000
#> 1772122_263_G11     3 0.000
#> 1772122_299_A07     3 0.747
#> 1772122_303_A03     2 0.000
#> 1772122_303_A05     4 0.000
#> 1772122_298_H05     4 0.000
#> 1772122_303_B12     4 0.000
#> 1772122_303_D05     4 0.000
#> 1772122_326_H08     3 0.000
#> 1772122_206_H10     2 0.000
#> 1772122_263_H02     2 0.751
#> 1772122_306_E02     2 1.000
#> 1772122_315_E03     2 1.000
#> 1772122_305_G07     2 0.249
#> 1772122_306_H02     2 0.000
#> 1772122_303_D08     2 0.249
#> 1772122_303_H07     2 0.000
#> 1772122_306_D05     2 0.249
#> 1772122_305_H05     2 0.000
#> 1772122_302_B03     1 1.000
#> 1772122_300_B03     1 0.000
#> 1772122_299_E02     4 1.000
#> 1772122_303_B01     3 0.000
#> 1772122_298_B10     4 0.000
#> 1772122_298_D07     3 0.502
#> 1772122_298_G09     2 0.000
#> 1772122_300_E07     4 0.000
#> 1772122_298_H12     1 1.000
#> 1772122_298_D11     3 0.000
#> 1772122_299_G12     1 1.000
#> 1772122_302_F05     1 1.000
#> 1772122_300_E09     2 0.000
#> 1772122_301_G09     2 0.000
#> 1772122_300_F02     2 0.000
#> 1772122_301_G11     2 0.000
#> 1772122_302_D05     4 0.000
#> 1772122_302_E11     2 0.502
#> 1772122_299_A05     3 0.000
#> 1772122_299_H06     3 0.000
#> 1772122_301_A01     2 0.000
#> 1772122_299_D04     2 0.000
#> 1772122_180_E07     2 0.000
#> 1772122_300_E02     2 0.751
#> 1772122_301_A09     2 0.000
#> 1772122_301_B05     2 0.751
#> 1772122_302_G09     3 0.253
#> 1772122_299_A06     3 0.000
#> 1772122_301_B12     2 0.000
#> 1772122_324_H10     1 0.249
#> 1772122_301_F03     2 0.000
#> 1772122_181_H01     1 1.000
#> 1772122_325_F05     1 0.249
#> 1772122_301_E02     2 0.000
#> 1772122_302_F11     1 0.502
#> 1772122_300_C06     2 1.000
#> 1772122_302_G04     4 0.000
#> 1772122_299_C05     3 0.000
#> 1772122_302_H08     1 1.000
#> 1772122_300_G08     3 0.502
#> 1772122_299_B02     1 0.751
#> 1772122_301_A05     2 0.000
#> 1772122_302_B11     4 0.249
#> 1772122_299_H04     3 0.000
#> 1772122_299_G07     3 0.000
#> 1772122_300_C09     3 0.000
#> 1772122_300_A03     4 1.000
#> 1772122_302_A02     2 0.000
#> 1772122_302_H07     3 0.000
#> 1772122_300_C07     3 0.747
#> 1772122_298_C02     3 0.000
#> 1772122_300_E12     3 0.000
#> 1772122_299_H12     3 0.000
#> 1772122_300_B04     1 0.000
#> 1772122_300_H05     3 0.000
#> 1772122_299_D09     1 0.000
#> 1772122_299_B04     3 1.000
#> 1772122_298_A09     2 0.253
#> 1772122_298_E02     2 0.498
#> 1772122_302_D06     4 0.751
#> 1772122_180_F12     1 1.000
#> 1772122_298_F02     3 0.000
#> 1772122_301_B11     2 0.000
#> 1772122_301_H01     2 0.000
#> 1772122_301_H06     2 0.000
#> 1772122_301_F02     2 0.000
#> 1772122_305_D01     2 0.502
#> 1772122_181_D10     1 1.000
#> 1772122_182_E04     4 1.000
#> 1772122_182_B12     1 1.000
#> 1772122_301_E01     2 0.751
#> 1772122_315_B01     3 0.000
#> 1772122_300_B05     1 1.000
#> 1772122_298_A01     4 1.000
#> 1772122_182_A01     4 0.000
#> 1772122_300_C12     1 1.000
#> 1772122_299_D11     2 0.000
#> 1772122_302_B05     1 1.000
#> 1772122_180_C08     3 0.751
#> 1772122_302_C08     3 1.000
#> 1772122_300_D10     4 0.747
#> 1772122_299_C10     3 0.249
#> 1772122_302_E12     1 1.000
#> 1772122_298_H04     4 0.000
#> 1772122_182_D09     4 1.000
#> 1772122_300_D07     3 0.000
#> 1772122_298_F12     3 0.498
#> 1772122_299_A01     4 1.000
#> 1772122_299_F12     4 0.000
#> 1772122_298_B05     4 0.000
#> 1772122_301_C01     2 0.000
#> 1772122_298_A08     4 0.000
#> 1772122_180_F05     4 1.000
#> 1772122_299_H10     1 1.000
#> 1772122_299_D01     4 1.000
#> 1772122_302_A01     4 0.000
#> 1772122_298_H10     4 0.000
#> 1772122_298_F05     2 1.000
#> 1772122_301_C06     2 0.000
#> 1772122_298_C04     4 0.000
#> 1772122_181_G05     4 0.000
#> 1772122_298_D04     4 1.000
#> 1772122_180_B10     4 0.000
#> 1772122_180_H04     2 0.000
#> 1772122_301_B03     2 0.000
#> 1772122_298_A11     2 0.000
#> 1772122_182_D04     4 0.000
#> 1772122_300_H10     2 0.747
#> 1772122_301_B06     2 0.000
#> 1772122_301_D06     2 0.000
#> 1772122_298_A03     4 0.000
#> 1772122_301_A11     4 0.000
#> 1772122_301_F06     4 0.000
#> 1772122_298_F04     4 0.000
#> 1772122_300_H12     2 0.498
#> 1772122_301_B07     2 0.000
#> 1772122_299_F04     2 0.751
#> 1772122_300_E04     2 0.498
#> 1772122_299_F11     2 0.253
#> 1772122_300_H09     4 0.000
#> 1772122_302_C02     4 1.000
#> 1772122_301_D05     2 0.000
#> 1772122_301_H04     2 0.000
#> 1772122_300_G06     2 0.249
#> 1772122_299_H07     2 0.000
#> 1772122_298_H06     2 0.498
#> 1772122_301_G06     2 0.000
#> 1772122_301_C10     2 0.000
#> 1772122_300_B11     2 0.000
#> 1772122_301_C08     2 0.000
#> 1772122_301_D07     2 0.000
#> 1772122_301_D04     2 0.000
#> 1772122_301_G05     2 0.000
#> 1772122_301_H09     2 0.000
#> 1772122_302_F02     2 0.000
#> 1772122_300_F11     4 0.249
#> 1772122_301_C11     4 0.000
#> 1772122_301_F11     2 0.000
#> 1772122_302_C11     4 0.000
#> 1772122_299_A08     2 0.498
#> 1772122_301_E10     2 0.000
#> 1772122_300_D11     4 0.000
#> 1772122_182_A12     4 1.000
#> 1772122_301_C05     2 0.000
#> 1772122_302_B09     2 0.000
#> 1772122_299_B10     4 0.253
#> 1772122_182_F09     2 1.000
#> 1772122_299_F03     4 0.502
#> 1772122_303_C09     2 0.253
#> 1772122_306_E09     3 1.000
#> 1772122_305_B03     1 0.000
#> 1772122_305_A01     3 0.000
#> 1772122_306_C10     3 0.000
#> 1772122_303_D01     3 0.000
#> 1772122_305_E12     3 0.000
#> 1772122_303_F12     3 0.000
#> 1772122_306_D12     3 0.000
#> 1772122_303_E07     3 0.000
#> 1772122_306_C09     3 0.000
#> 1772122_305_G10     3 0.000
#> 1772122_315_F10     3 0.000
#> 1772122_306_G09     3 0.000
#> 1772122_315_B05     3 0.000
#> 1772122_306_H08     3 0.000
#> 1772122_306_A07     1 0.000
#> 1772122_302_F01     1 0.000
#> 1772122_305_G02     3 0.000
#> 1772122_262_A05     3 1.000
#> 1772122_305_H09     3 1.000
#> 1772122_306_F11     3 0.249
#> 1772122_315_B11     3 0.000
#> 1772122_302_G01     1 1.000
#> 1772122_306_C11     3 1.000
#> 1772122_315_D08     3 0.000
#> 1772122_300_D12     1 0.751
#> 1772122_306_E07     3 0.000
#> 1772122_306_A02     3 0.000
#> 1772122_315_G12     3 0.000
#> 1772122_306_A06     1 0.498
#> 1772122_306_D11     3 1.000
#> 1772122_306_E10     3 0.000
#> 1772122_306_B05     1 1.000
#> 1772122_205_B05     3 0.000
#> 1772122_306_F04     3 0.000
#> 1772122_315_A03     3 0.000
#> 1772122_315_H01     1 0.747
#> 1772122_302_G11     1 1.000
#> 1772122_305_H02     3 0.000
#> 1772122_305_H04     3 0.000
#> 1772122_315_C12     3 0.000
#> 1772122_303_A08     3 0.000
#> 1772122_303_F04     3 0.000
#> 1772122_303_A10     3 0.000
#> 1772122_300_G03     1 1.000
#> 1772122_305_A10     3 0.000
#> 1772122_303_G08     3 0.000
#> 1772122_299_D12     3 0.000
#> 1772122_305_G09     1 0.000
#> 1772122_305_E10     3 0.000
#> 1772122_298_F07     1 1.000
#> 1772122_301_E08     2 0.000
#> 1772122_262_F01     3 0.751
#> 1772122_300_G05     1 0.000
#> 1772122_298_C06     3 0.000
#> 1772122_300_H03     3 1.000
#> 1772122_305_A04     3 0.000
#> 1772122_305_A05     3 0.000
#> 1772122_305_G04     1 1.000
#> 1772122_306_B10     3 0.000
#> 1772122_303_C11     3 0.000
#> 1772122_315_C07     2 0.000
#> 1772122_302_E08     1 1.000
#> 1772122_182_F01     1 1.000
#> 1772122_298_B01     1 0.000
#> 1772122_302_E02     1 0.249
#> 1772122_301_A12     2 0.000
#> 1772122_305_B10     3 0.000
#> 1772122_306_E01     3 0.000
#> 1772122_299_G08     1 0.498
#> 1772122_300_C11     2 1.000
#> 1772122_301_E04     2 0.000
#> 1772122_301_E12     2 0.000
#> 1772122_301_E05     2 0.000
#> 1772122_301_D01     2 0.000
#> 1772122_180_A07     3 1.000
#> 1772122_301_F08     1 1.000
#> 1772122_300_D08     1 1.000
#> 1772122_300_A02     2 1.000
#> 1772122_180_H01     3 0.000
#> 1772122_298_G07     3 0.000
#> 1772122_299_A02     3 0.000
#> 1772122_181_F01     1 1.000
#> 1772122_180_A12     1 1.000
#> 1772122_302_G02     1 0.249
#> 1772122_180_E11     2 1.000
#> 1772122_298_E08     3 0.000
#> 1772122_302_E03     3 1.000
#> 1772122_300_B09     3 0.502
#> 1772122_182_C12     1 0.000
#> 1772122_181_A04     1 1.000
#> 1772122_182_A02     1 0.000
#> 1772122_181_C03     3 0.000
#> 1772122_181_D01     3 0.751
#> 1772122_181_B05     1 0.000
#> 1772122_180_G08     3 0.000
#> 1772122_180_G11     3 0.000
#> 1772122_302_F09     2 1.000
#> 1772122_300_G12     3 0.253
#> 1772122_298_D06     3 0.000
#> 1772122_299_H05     1 1.000
#> 1772122_180_B03     3 0.000
#> 1772122_300_G07     3 0.000
#> 1772122_298_E01     3 0.249
#> 1772122_298_G03     3 0.000
#> 1772122_302_A12     1 0.000
#> 1772122_181_D12     1 1.000
#> 1772122_299_E03     1 0.000
#> 1772122_181_D07     3 0.000
#> 1772122_298_H02     3 0.000
#> 1772122_181_H05     3 0.000
#> 1772122_181_E12     1 0.249
#> 1772122_302_F12     1 1.000
#> 1772122_299_G09     1 1.000
#> 1772122_182_B10     1 0.249
#> 1772122_182_A07     1 0.498
#> 1772122_298_F11     3 0.249
#> 1772122_181_G07     3 0.000
#> 1772122_182_B06     1 1.000
#> 1772122_299_G03     3 0.000
#> 1772122_298_A10     1 1.000
#> 1772122_180_B02     1 0.000
#> 1772122_298_E07     3 0.751
#> 1772122_300_C08     3 1.000
#> 1772122_298_D02     3 0.000
#> 1772122_299_A12     1 1.000
#> 1772122_182_B04     3 0.000
#> 1772122_181_E03     1 0.000
#> 1772122_299_B03     1 0.000
#> 1772122_181_C11     3 0.000
#> 1772122_181_H04     3 0.498
#> 1772122_300_D01     1 1.000
#> 1772122_302_E06     1 0.249
#> 1772122_301_G03     1 1.000
#> 1772122_302_A05     1 1.000
#> 1772122_300_H07     2 0.000
#> 1772122_301_B02     2 0.000
#> 1772122_182_G03     1 0.502
#> 1772122_301_C03     1 0.751
#> 1772122_180_D05     3 0.000
#> 1772122_180_D08     1 1.000
#> 1772122_299_C12     3 1.000
#> 1772122_302_H06     3 0.000
#> 1772122_298_E12     1 1.000
#> 1772122_298_B08     3 0.000
#> 1772122_302_G12     1 0.502
#> 1772122_300_E01     1 1.000
#> 1772122_300_B10     3 0.000
#> 1772122_180_G12     3 0.000
#> 1772122_300_F07     1 1.000
#> 1772122_180_B12     1 1.000
#> 1772122_182_F08     1 0.000
#> 1772122_302_E04     1 1.000
#> 1772122_298_F06     1 1.000
#> 1772122_300_C04     3 0.000
#> 1772122_302_H01     3 0.747
#> 1772122_302_D02     3 0.000
#> 1772122_182_E05     1 1.000
#> 1772122_182_E10     1 1.000
#> 1772122_182_B07     1 1.000
#> 1772122_180_A03     3 0.000
#> 1772122_180_F04     3 1.000
#> 1772122_299_D05     1 0.000
#> 1772122_182_F02     1 0.000
#> 1772122_299_E12     3 0.000
#> 1772122_298_A05     3 0.000
#> 1772122_298_B02     2 1.000
#> 1772122_181_F08     1 1.000
#> 1772122_298_C03     3 0.000
#> 1772122_300_G10     3 0.000
#> 1772122_182_E12     1 0.000
#> 1772122_298_B04     3 0.000
#> 1772122_301_E06     2 0.000
#> 1772122_182_H09     1 0.000
#> 1772122_302_A10     1 0.000
#> 1772122_181_F12     1 1.000
#> 1772122_302_H10     3 0.000
#> 1772122_302_H05     1 1.000
#> 1772122_181_D11     2 0.000
#> 1772122_298_G08     3 0.502
#> 1772122_298_H11     2 0.498
#> 1772122_180_G07     1 0.000
#> 1772122_180_A10     3 1.000
#> 1772122_298_D08     3 0.000
#> 1772122_299_B01     3 0.000
#> 1772122_299_F05     3 0.000
#> 1772122_302_B07     3 0.498
#> 1772122_180_E06     3 0.000
#> 1772122_301_A10     2 0.000
#> 1772122_182_A11     1 0.000
#> 1772122_180_G10     3 0.000
#> 1772122_301_D02     2 0.000
#> 1772122_301_F01     2 0.000
#> 1772122_181_A06     3 1.000
#> 1772122_181_B06     3 0.000
#> 1772122_182_F04     1 0.751
#> 1772122_181_F09     2 1.000
#> 1772122_182_D03     3 0.000
#> 1772122_300_F06     3 0.000
#> 1772122_300_D06     3 0.000
#> 1772122_299_D02     3 0.000
#> 1772122_301_G02     2 0.000
#> 1772122_299_H08     3 0.000
#> 1772122_300_C03     1 0.000
#> 1772122_299_B09     3 0.000
#> 1772122_301_A03     2 0.751
#> 1772122_300_H01     1 0.751
#> 1772122_300_C10     3 0.000
#> 1772122_300_A09     1 0.000
#> 1772122_298_H03     3 0.000
#> 1772122_299_C06     3 0.000
#> 1772122_182_E11     1 0.498
#> 1772122_300_B08     1 0.502
#> 1772122_300_C05     3 0.000
#> 1772122_300_E05     3 0.498
#> 1772122_180_C05     1 0.000
#> 1772122_300_E08     3 0.000
#> 1772122_181_G11     1 0.000
#> 1772122_300_G11     1 0.249
#> 1772122_300_D05     1 1.000
#> 1772122_300_A04     3 0.000
#> 1772122_300_B02     3 0.000
#> 1772122_302_A03     1 0.000
#> 1772122_180_G05     3 1.000
#> 1772122_300_F08     3 0.000
#> 1772122_182_E03     1 1.000
#> 1772122_299_G04     1 0.000
#> 1772122_298_A04     3 0.000
#> 1772122_181_E01     1 0.498
#> 1772122_302_C06     1 1.000
#> 1772122_298_B11     3 0.000
#> 1772122_182_F12     1 1.000
#> 1772122_180_H02     3 0.498
#> 1772122_180_A01     1 0.000
#> 1772122_180_C09     1 0.000
#> 1772122_180_D06     3 0.249
#> 1772122_302_B02     3 0.000
#> 1772122_300_G01     1 0.498
#> 1772122_298_E04     3 0.000
#> 1772122_301_C09     1 0.000
#> 1772122_301_E03     2 0.000
#> 1772122_180_C04     3 0.000
#> 1772122_299_F08     1 0.249
#> 1772122_180_H08     1 0.000
#> 1772122_298_D03     3 0.000
#> 1772122_180_A08     3 0.000
#> 1772122_181_A12     3 1.000
#> 1772122_180_C12     3 0.000
#> 1772122_182_B01     3 0.000
#> 1772122_180_H07     3 0.000
#> 1772122_182_E01     1 1.000
#> 1772122_181_C04     1 1.000
#> 1772122_180_D10     3 0.000
#> 1772122_181_B10     3 1.000
#> 1772122_182_F03     1 1.000
#> 1772122_180_B07     3 0.000
#> 1772122_181_C06     3 0.000
#> 1772122_181_G06     3 0.000
#> 1772122_181_H03     1 0.498
#> 1772122_181_F06     3 0.249
#> 1772122_181_D05     3 0.000
#> 1772122_299_E05     3 0.000
#> 1772122_182_E06     3 0.000
#> 1772122_302_C10     1 1.000
#> 1772122_182_H01     3 0.751
#> 1772122_181_C08     4 0.000
#> 1772122_299_H09     3 0.000
#> 1772122_182_B08     4 1.000
#> 1772122_299_H03     3 0.000
#> 1772122_181_B11     1 1.000
#> 1772122_180_C01     3 0.000
#> 1772122_182_C11     1 0.000
#> 1772122_182_B05     1 0.000
#> 1772122_302_A09     1 1.000
#> 1772122_182_C01     1 1.000
#> 1772122_299_C08     3 0.000
#> 1772122_299_G01     1 1.000
#> 1772122_182_E07     3 0.000
#> 1772122_181_H02     3 0.000
#> 1772122_181_D09     3 0.000
#> 1772122_180_G09     3 1.000
#> 1772122_181_D03     1 1.000
#> 1772122_181_H07     3 0.498
#> 1772122_298_C07     2 1.000
#> 1772122_182_D01     3 1.000
#> 1772122_302_H12     3 0.000
#> 1772122_299_A03     1 1.000
#> 1772122_181_H10     1 0.000
#> 1772122_180_E12     3 0.000
#> 1772122_180_B05     1 1.000
#> 1772122_181_H12     3 0.747
#> 1772122_180_E08     1 1.000
#> 1772122_180_F10     3 0.000
#> 1772122_180_F08     3 0.000
#> 1772122_181_F03     3 0.000
#> 1772122_299_E01     3 0.000
#> 1772122_181_B01     3 1.000
#> 1772122_180_F03     1 0.249
#> 1772122_182_B02     1 1.000
#> 1772122_181_F02     3 0.000
#> 1772122_181_B12     1 0.751
#> 1772122_182_D06     3 0.000
#> 1772122_181_F11     3 0.751
#> 1772122_181_E02     2 0.000
#> 1772122_180_C03     1 1.000
#> 1772122_180_B06     1 1.000
#> 1772122_180_D09     3 0.000
#> 1772122_182_H08     1 0.000
#> 1772122_298_C08     3 0.000
#> 1772122_182_C10     4 0.000
#> 1772122_180_D03     1 1.000
#> 1772122_182_A05     1 1.000
#> 1772122_299_H02     3 0.000
#> 1772122_180_B01     3 0.000
#> 1772122_299_C04     1 0.000
#> 1772122_180_B08     3 0.000
#> 1772122_181_F04     4 1.000
#> 1772122_182_B11     1 1.000
#> 1772122_181_E04     3 0.000
#> 1772122_181_D02     3 0.000
#> 1772122_182_A06     1 1.000
#> 1772122_181_A05     1 1.000
#> 1772122_181_B02     1 0.000
#> 1772122_182_D05     1 0.000
#> 1772122_181_F07     3 0.000
#> 1772122_181_H08     1 0.000
#> 1772122_181_C01     4 0.498
#> 1772122_182_C08     1 0.000
#> 1772122_180_F02     1 0.000
#> 1772122_181_G09     1 0.498
#> 1772122_181_E07     3 0.000
#> 1772122_180_F11     2 1.000
#> 1772122_302_B01     1 0.000
#> 1772122_180_F01     3 0.000
#> 1772122_180_E03     3 0.000
#> 1772122_181_A07     3 0.000
#> 1772122_299_E10     2 0.249
#> 1772122_181_B08     1 0.000
#> 1772122_299_A09     3 0.000
#> 1772122_182_B09     2 0.000
#> 1772122_182_G08     1 0.000
#> 1772122_181_F10     3 0.502
#> 1772122_262_E07     3 0.000
#> 1772122_206_E06     3 0.000
#> 1772122_262_F09     3 0.000
#> 1772122_205_H01     3 0.000
#> 1772122_206_B01     3 0.000
#> 1772122_204_E10     3 0.000
#> 1772122_204_H07     3 0.000
#> 1772122_262_B01     3 0.000
#> 1772122_204_G03     3 0.000
#> 1772122_206_G09     3 0.000
#> 1772122_204_E09     3 0.000
#> 1772122_262_F05     3 0.000
#> 1772122_204_E02     3 0.000
#> 1772122_262_G03     3 0.000
#> 1772122_262_D04     3 0.000
#> 1772122_205_B02     3 0.000
#> 1772122_325_B02     3 0.000
#> 1772122_263_E07     3 0.000
#> 1772122_325_A10     3 0.000
#> 1772122_206_D03     3 0.000
#> 1772122_263_D01     3 0.000
#> 1772122_262_A06     3 0.000
#> 1772122_326_B12     3 0.000
#> 1772122_263_F04     3 0.000
#> 1772122_262_B02     3 0.000
#> 1772122_325_B03     3 0.000
#> 1772122_326_A01     3 0.000
#> 1772122_325_E05     3 0.498
#> 1772122_326_F05     3 0.000
#> 1772122_204_H03     3 0.000
#> 1772122_263_H03     3 0.000
#> 1772122_326_F09     3 0.000
#> 1772122_326_H02     3 0.000
#> 1772122_206_H08     3 0.000
#> 1772122_263_G08     3 0.000
#> 1772122_325_E04     3 0.000
#> 1772122_312_E01     3 0.000
#> 1772122_314_C07     3 0.000
#> 1772122_312_E03     3 0.000
#> 1772122_312_D01     3 0.000
#> 1772122_311_F12     3 0.000
#> 1772122_310_E12     3 0.000
#> 1772122_310_D08     3 0.000
#> 1772122_314_F01     3 0.000
#> 1772122_311_G09     1 0.502
#> 1772122_310_C09     3 0.000
#> 1772122_312_H06     3 0.000
#> 1772122_312_B09     3 1.000
#> 1772122_314_H10     3 0.000
#> 1772122_310_F10     3 0.000
#> 1772122_312_C11     3 0.000
#> 1772122_310_G03     3 0.000
#> 1772122_312_G07     3 0.000
#> 1772122_310_E08     3 0.000
#> 1772122_311_F04     3 0.000
#> 1772122_311_C03     3 0.000
#> 1772122_311_C10     3 0.000
#> 1772122_311_C05     3 0.000
#> 1772122_310_C01     3 0.000
#> 1772122_310_C05     3 0.000
#> 1772122_310_D01     1 1.000
#> 1772122_312_C03     3 0.000
#> 1772122_314_F02     3 0.000
#> 1772122_310_D03     3 0.000
#> 1772122_312_A04     1 1.000
#> 1772122_310_B02     3 0.000
#> 1772122_312_H03     3 0.000

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-01-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-01-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-01-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-01-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-01-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-01-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-01-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-01-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-01-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-01-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-01-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-01-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-01-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-01-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-01-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-01-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-01-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      458           3.49e-45           2.62e-09 2
#> ATC:skmeans      516           6.29e-47           5.62e-28 3
#> ATC:skmeans      457           1.67e-59           5.06e-20 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node011

Parent node: Node01. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["011"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 9438 rows and 228 columns.
#>   Top rows (944) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-011-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-011-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.936           0.934       0.972          0.502 0.498   0.498
#> 3 3 0.980           0.948       0.977          0.330 0.711   0.484
#> 4 4 0.858           0.887       0.948          0.114 0.817   0.526

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_300_D04     1   0.000    0.96392 1.00 0.00
#> 1772122_300_E06     1   0.402    0.90219 0.92 0.08
#> 1772122_298_G11     1   0.000    0.96392 1.00 0.00
#> 1772122_181_C12     1   0.000    0.96392 1.00 0.00
#> 1772122_180_H06     1   0.402    0.90219 0.92 0.08
#> 1772122_180_H10     2   0.000    0.97837 0.00 1.00
#> 1772122_182_G02     1   0.000    0.96392 1.00 0.00
#> 1772122_181_E09     1   0.000    0.96392 1.00 0.00
#> 1772122_299_F06     1   0.000    0.96392 1.00 0.00
#> 1772122_302_H11     1   0.000    0.96392 1.00 0.00
#> 1772122_300_D03     2   0.000    0.97837 0.00 1.00
#> 1772122_299_C07     2   0.000    0.97837 0.00 1.00
#> 1772122_182_E08     1   0.141    0.95016 0.98 0.02
#> 1772122_302_G08     1   0.000    0.96392 1.00 0.00
#> 1772122_301_A04     1   0.000    0.96392 1.00 0.00
#> 1772122_300_E11     1   0.000    0.96392 1.00 0.00
#> 1772122_181_A03     2   0.000    0.97837 0.00 1.00
#> 1772122_298_E09     1   0.402    0.90219 0.92 0.08
#> 1772122_300_H08     1   0.000    0.96392 1.00 0.00
#> 1772122_182_C09     1   0.000    0.96392 1.00 0.00
#> 1772122_298_D10     2   0.242    0.94293 0.04 0.96
#> 1772122_299_C01     2   0.000    0.97837 0.00 1.00
#> 1772122_300_F05     2   0.141    0.96142 0.02 0.98
#> 1772122_182_A10     1   0.000    0.96392 1.00 0.00
#> 1772122_299_F10     1   0.000    0.96392 1.00 0.00
#> 1772122_181_E05     2   0.000    0.97837 0.00 1.00
#> 1772122_300_G04     1   0.402    0.90219 0.92 0.08
#> 1772122_182_H12     1   0.000    0.96392 1.00 0.00
#> 1772122_302_G10     1   0.402    0.90219 0.92 0.08
#> 1772122_182_C06     2   0.000    0.97837 0.00 1.00
#> 1772122_300_E03     1   0.000    0.96392 1.00 0.00
#> 1772122_302_C05     1   0.000    0.96392 1.00 0.00
#> 1772122_299_F09     1   0.000    0.96392 1.00 0.00
#> 1772122_302_C12     1   0.000    0.96392 1.00 0.00
#> 1772122_300_D09     2   0.000    0.97837 0.00 1.00
#> 1772122_180_F06     2   0.000    0.97837 0.00 1.00
#> 1772122_299_E09     1   0.000    0.96392 1.00 0.00
#> 1772122_180_A05     1   0.000    0.96392 1.00 0.00
#> 1772122_182_C05     1   0.000    0.96392 1.00 0.00
#> 1772122_300_A06     2   0.000    0.97837 0.00 1.00
#> 1772122_181_A02     1   0.529    0.86256 0.88 0.12
#> 1772122_181_E11     1   0.000    0.96392 1.00 0.00
#> 1772122_181_C07     1   0.000    0.96392 1.00 0.00
#> 1772122_299_D06     2   0.855    0.59817 0.28 0.72
#> 1772122_180_F09     2   0.000    0.97837 0.00 1.00
#> 1772122_180_D12     1   0.680    0.78952 0.82 0.18
#> 1772122_182_H11     1   0.000    0.96392 1.00 0.00
#> 1772122_263_G09     1   0.000    0.96392 1.00 0.00
#> 1772122_326_G12     1   0.000    0.96392 1.00 0.00
#> 1772122_303_A05     1   0.141    0.95016 0.98 0.02
#> 1772122_298_H05     1   0.000    0.96392 1.00 0.00
#> 1772122_303_D05     1   0.402    0.90219 0.92 0.08
#> 1772122_302_B03     1   0.000    0.96392 1.00 0.00
#> 1772122_300_B03     1   0.000    0.96392 1.00 0.00
#> 1772122_299_E02     2   0.000    0.97837 0.00 1.00
#> 1772122_298_B10     2   0.000    0.97837 0.00 1.00
#> 1772122_300_E07     1   0.327    0.91979 0.94 0.06
#> 1772122_298_H12     1   0.000    0.96392 1.00 0.00
#> 1772122_299_G12     2   0.000    0.97837 0.00 1.00
#> 1772122_302_F05     1   0.000    0.96392 1.00 0.00
#> 1772122_302_D05     1   0.000    0.96392 1.00 0.00
#> 1772122_302_G09     2   0.000    0.97837 0.00 1.00
#> 1772122_324_H10     1   0.000    0.96392 1.00 0.00
#> 1772122_181_H01     1   0.000    0.96392 1.00 0.00
#> 1772122_325_F05     1   0.000    0.96392 1.00 0.00
#> 1772122_302_F11     1   0.000    0.96392 1.00 0.00
#> 1772122_302_G04     1   0.000    0.96392 1.00 0.00
#> 1772122_302_H08     1   0.000    0.96392 1.00 0.00
#> 1772122_300_G08     2   0.000    0.97837 0.00 1.00
#> 1772122_299_B02     1   0.000    0.96392 1.00 0.00
#> 1772122_302_B11     2   0.000    0.97837 0.00 1.00
#> 1772122_300_A03     1   0.000    0.96392 1.00 0.00
#> 1772122_300_C07     2   0.000    0.97837 0.00 1.00
#> 1772122_300_B04     2   0.000    0.97837 0.00 1.00
#> 1772122_299_D09     2   0.000    0.97837 0.00 1.00
#> 1772122_180_F12     1   0.584    0.84139 0.86 0.14
#> 1772122_181_D10     1   0.000    0.96392 1.00 0.00
#> 1772122_182_E04     1   0.000    0.96392 1.00 0.00
#> 1772122_182_B12     1   0.000    0.96392 1.00 0.00
#> 1772122_300_B05     1   0.000    0.96392 1.00 0.00
#> 1772122_298_A01     1   0.000    0.96392 1.00 0.00
#> 1772122_182_A01     2   0.000    0.97837 0.00 1.00
#> 1772122_300_C12     1   0.000    0.96392 1.00 0.00
#> 1772122_302_B05     1   0.000    0.96392 1.00 0.00
#> 1772122_180_C08     2   0.000    0.97837 0.00 1.00
#> 1772122_302_C08     2   0.000    0.97837 0.00 1.00
#> 1772122_300_D10     2   0.000    0.97837 0.00 1.00
#> 1772122_302_E12     1   0.000    0.96392 1.00 0.00
#> 1772122_182_D09     1   0.000    0.96392 1.00 0.00
#> 1772122_298_F12     2   0.000    0.97837 0.00 1.00
#> 1772122_299_A01     2   0.000    0.97837 0.00 1.00
#> 1772122_299_F12     1   0.000    0.96392 1.00 0.00
#> 1772122_298_B05     1   0.584    0.83912 0.86 0.14
#> 1772122_298_A08     1   0.971    0.37044 0.60 0.40
#> 1772122_299_H10     2   0.000    0.97837 0.00 1.00
#> 1772122_299_D01     1   0.000    0.96392 1.00 0.00
#> 1772122_302_A01     2   0.000    0.97837 0.00 1.00
#> 1772122_298_H10     1   0.000    0.96392 1.00 0.00
#> 1772122_298_C04     1   0.000    0.96392 1.00 0.00
#> 1772122_181_G05     2   0.000    0.97837 0.00 1.00
#> 1772122_298_D04     1   0.000    0.96392 1.00 0.00
#> 1772122_180_B10     1   0.242    0.93550 0.96 0.04
#> 1772122_298_F04     1   0.000    0.96392 1.00 0.00
#> 1772122_300_H09     1   0.000    0.96392 1.00 0.00
#> 1772122_302_C11     1   0.327    0.91957 0.94 0.06
#> 1772122_182_A12     1   0.000    0.96392 1.00 0.00
#> 1772122_299_B10     1   0.855    0.63330 0.72 0.28
#> 1772122_299_F03     1   0.000    0.96392 1.00 0.00
#> 1772122_305_B03     2   0.000    0.97837 0.00 1.00
#> 1772122_306_A07     2   0.000    0.97837 0.00 1.00
#> 1772122_302_F01     2   0.000    0.97837 0.00 1.00
#> 1772122_302_G01     1   0.000    0.96392 1.00 0.00
#> 1772122_300_D12     1   0.000    0.96392 1.00 0.00
#> 1772122_306_A06     2   0.000    0.97837 0.00 1.00
#> 1772122_315_H01     2   0.000    0.97837 0.00 1.00
#> 1772122_302_G11     1   0.000    0.96392 1.00 0.00
#> 1772122_300_G03     1   0.000    0.96392 1.00 0.00
#> 1772122_305_G09     2   0.141    0.96167 0.02 0.98
#> 1772122_298_F07     2   0.000    0.97837 0.00 1.00
#> 1772122_300_G05     2   0.000    0.97837 0.00 1.00
#> 1772122_300_H03     2   0.000    0.97837 0.00 1.00
#> 1772122_302_E08     1   0.000    0.96392 1.00 0.00
#> 1772122_182_F01     1   0.000    0.96392 1.00 0.00
#> 1772122_298_B01     2   0.680    0.78412 0.18 0.82
#> 1772122_302_E02     2   0.000    0.97837 0.00 1.00
#> 1772122_299_G08     2   0.141    0.96163 0.02 0.98
#> 1772122_301_F08     1   0.000    0.96392 1.00 0.00
#> 1772122_300_D08     1   0.000    0.96392 1.00 0.00
#> 1772122_181_F01     2   0.000    0.97837 0.00 1.00
#> 1772122_180_A12     2   0.000    0.97837 0.00 1.00
#> 1772122_302_G02     1   0.000    0.96392 1.00 0.00
#> 1772122_182_C12     1   0.000    0.96392 1.00 0.00
#> 1772122_181_A04     1   0.000    0.96392 1.00 0.00
#> 1772122_182_A02     1   0.000    0.96392 1.00 0.00
#> 1772122_181_B05     2   0.000    0.97837 0.00 1.00
#> 1772122_302_A12     1   0.000    0.96392 1.00 0.00
#> 1772122_299_E03     2   0.999    0.07203 0.48 0.52
#> 1772122_181_E12     2   0.000    0.97837 0.00 1.00
#> 1772122_302_F12     2   0.000    0.97837 0.00 1.00
#> 1772122_299_G09     1   0.000    0.96392 1.00 0.00
#> 1772122_182_B10     2   0.000    0.97837 0.00 1.00
#> 1772122_182_A07     1   0.000    0.96392 1.00 0.00
#> 1772122_180_B02     1   0.000    0.96392 1.00 0.00
#> 1772122_299_A12     2   0.000    0.97837 0.00 1.00
#> 1772122_181_E03     2   0.529    0.86129 0.12 0.88
#> 1772122_299_B03     1   0.000    0.96392 1.00 0.00
#> 1772122_300_D01     1   0.000    0.96392 1.00 0.00
#> 1772122_302_E06     2   0.000    0.97837 0.00 1.00
#> 1772122_301_G03     1   0.000    0.96392 1.00 0.00
#> 1772122_302_A05     2   0.000    0.97837 0.00 1.00
#> 1772122_182_G03     1   0.827    0.65034 0.74 0.26
#> 1772122_301_C03     1   0.000    0.96392 1.00 0.00
#> 1772122_180_D08     2   0.242    0.94601 0.04 0.96
#> 1772122_302_G12     2   0.000    0.97837 0.00 1.00
#> 1772122_300_E01     2   0.000    0.97837 0.00 1.00
#> 1772122_300_F07     1   0.000    0.96392 1.00 0.00
#> 1772122_182_F08     1   0.000    0.96392 1.00 0.00
#> 1772122_302_E04     2   0.943    0.44720 0.36 0.64
#> 1772122_182_E05     2   0.000    0.97837 0.00 1.00
#> 1772122_182_E10     2   0.000    0.97837 0.00 1.00
#> 1772122_182_B07     2   0.000    0.97837 0.00 1.00
#> 1772122_299_D05     2   0.327    0.92447 0.06 0.94
#> 1772122_182_F02     1   0.000    0.96392 1.00 0.00
#> 1772122_182_E12     2   0.000    0.97837 0.00 1.00
#> 1772122_182_H09     2   0.000    0.97837 0.00 1.00
#> 1772122_302_A10     2   0.327    0.92435 0.06 0.94
#> 1772122_181_F12     2   0.000    0.97837 0.00 1.00
#> 1772122_180_G07     2   0.000    0.97837 0.00 1.00
#> 1772122_302_B07     2   0.000    0.97837 0.00 1.00
#> 1772122_182_A11     2   0.000    0.97837 0.00 1.00
#> 1772122_182_F04     2   0.000    0.97837 0.00 1.00
#> 1772122_300_C03     2   0.529    0.86066 0.12 0.88
#> 1772122_300_H01     2   0.855    0.62110 0.28 0.72
#> 1772122_300_A09     2   0.634    0.81177 0.16 0.84
#> 1772122_182_E11     1   0.000    0.96392 1.00 0.00
#> 1772122_300_B08     2   0.000    0.97837 0.00 1.00
#> 1772122_180_C05     1   0.000    0.96392 1.00 0.00
#> 1772122_181_G11     2   0.000    0.97837 0.00 1.00
#> 1772122_300_G11     1   1.000   -0.00971 0.50 0.50
#> 1772122_300_D05     2   0.000    0.97837 0.00 1.00
#> 1772122_302_A03     2   0.000    0.97837 0.00 1.00
#> 1772122_299_G04     1   0.827    0.64800 0.74 0.26
#> 1772122_181_E01     2   0.000    0.97837 0.00 1.00
#> 1772122_302_C06     1   0.000    0.96392 1.00 0.00
#> 1772122_182_F12     1   0.000    0.96392 1.00 0.00
#> 1772122_180_A01     2   0.000    0.97837 0.00 1.00
#> 1772122_180_C09     1   0.999    0.07030 0.52 0.48
#> 1772122_300_G01     2   0.000    0.97837 0.00 1.00
#> 1772122_301_C09     1   0.000    0.96392 1.00 0.00
#> 1772122_299_F08     2   0.000    0.97837 0.00 1.00
#> 1772122_180_H08     2   0.000    0.97837 0.00 1.00
#> 1772122_182_E01     2   0.000    0.97837 0.00 1.00
#> 1772122_181_H03     1   0.327    0.91622 0.94 0.06
#> 1772122_302_C10     2   0.000    0.97837 0.00 1.00
#> 1772122_181_C08     2   0.000    0.97837 0.00 1.00
#> 1772122_182_B08     2   0.242    0.94344 0.04 0.96
#> 1772122_182_C11     2   0.000    0.97837 0.00 1.00
#> 1772122_182_B05     1   0.995    0.14209 0.54 0.46
#> 1772122_302_A09     2   0.000    0.97837 0.00 1.00
#> 1772122_182_C01     1   0.327    0.91692 0.94 0.06
#> 1772122_299_G01     2   0.000    0.97837 0.00 1.00
#> 1772122_181_D03     1   0.000    0.96392 1.00 0.00
#> 1772122_299_A03     2   0.000    0.97837 0.00 1.00
#> 1772122_181_H10     1   0.000    0.96392 1.00 0.00
#> 1772122_180_E08     2   0.000    0.97837 0.00 1.00
#> 1772122_180_F03     2   0.000    0.97837 0.00 1.00
#> 1772122_182_B02     2   0.000    0.97837 0.00 1.00
#> 1772122_181_B12     2   0.000    0.97837 0.00 1.00
#> 1772122_180_C03     2   0.000    0.97837 0.00 1.00
#> 1772122_182_H08     2   0.000    0.97837 0.00 1.00
#> 1772122_182_C10     2   0.000    0.97837 0.00 1.00
#> 1772122_182_A05     1   0.000    0.96392 1.00 0.00
#> 1772122_299_C04     2   0.000    0.97837 0.00 1.00
#> 1772122_181_F04     1   0.327    0.91980 0.94 0.06
#> 1772122_182_B11     1   0.000    0.96392 1.00 0.00
#> 1772122_182_A06     2   0.000    0.97837 0.00 1.00
#> 1772122_181_A05     2   0.000    0.97837 0.00 1.00
#> 1772122_181_B02     2   0.000    0.97837 0.00 1.00
#> 1772122_182_D05     2   0.000    0.97837 0.00 1.00
#> 1772122_181_H08     2   0.000    0.97837 0.00 1.00
#> 1772122_181_C01     2   0.000    0.97837 0.00 1.00
#> 1772122_182_C08     2   0.000    0.97837 0.00 1.00
#> 1772122_180_F02     2   0.000    0.97837 0.00 1.00
#> 1772122_181_G09     1   0.000    0.96392 1.00 0.00
#> 1772122_302_B01     2   0.000    0.97837 0.00 1.00
#> 1772122_181_B08     2   0.000    0.97837 0.00 1.00
#> 1772122_182_G08     2   0.000    0.97837 0.00 1.00
#> 1772122_311_G09     1   0.000    0.96392 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_300_D04     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_E06     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_G11     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_181_C12     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_180_H06     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_180_H10     3  0.2066      0.924 0.00 0.06 0.94
#> 1772122_182_G02     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_181_E09     3  0.2066      0.925 0.06 0.00 0.94
#> 1772122_299_F06     3  0.2537      0.904 0.08 0.00 0.92
#> 1772122_302_H11     3  0.1529      0.944 0.04 0.00 0.96
#> 1772122_300_D03     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_C07     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_E08     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_302_G08     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_301_A04     1  0.1529      0.943 0.96 0.00 0.04
#> 1772122_300_E11     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_181_A03     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_E09     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_H08     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_C09     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_D10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_C01     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_F05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_A10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_F10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_181_E05     2  0.5948      0.438 0.00 0.64 0.36
#> 1772122_300_G04     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_H12     3  0.0892      0.961 0.02 0.00 0.98
#> 1772122_302_G10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_C06     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_E03     1  0.1529      0.943 0.96 0.00 0.04
#> 1772122_302_C05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_F09     3  0.3340      0.858 0.12 0.00 0.88
#> 1772122_302_C12     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_D09     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_180_F06     3  0.0892      0.961 0.00 0.02 0.98
#> 1772122_299_E09     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_180_A05     1  0.4002      0.812 0.84 0.00 0.16
#> 1772122_182_C05     3  0.5016      0.684 0.24 0.00 0.76
#> 1772122_300_A06     3  0.0892      0.961 0.00 0.02 0.98
#> 1772122_181_A02     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_181_E11     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_181_C07     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_D06     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_180_F09     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_180_D12     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_H11     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_263_G09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_326_G12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_303_A05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_H05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_303_D05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_302_B03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_B03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_E02     2  0.1529      0.947 0.00 0.96 0.04
#> 1772122_298_B10     3  0.1529      0.944 0.00 0.04 0.96
#> 1772122_300_E07     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_H12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_G12     2  0.1529      0.948 0.00 0.96 0.04
#> 1772122_302_F05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_D05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_302_G09     3  0.6192      0.267 0.00 0.42 0.58
#> 1772122_324_H10     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_H01     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_325_F05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_F11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_G04     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_302_H08     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_300_G08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_B02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_B11     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_A03     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_300_C07     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_B04     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_D09     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_F12     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_181_D10     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_E04     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_182_B12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_B05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_A01     3  0.5948      0.431 0.36 0.00 0.64
#> 1772122_182_A01     2  0.2959      0.884 0.00 0.90 0.10
#> 1772122_300_C12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_B05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_C08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_C08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_D10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_302_E12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_D09     1  0.2066      0.925 0.94 0.00 0.06
#> 1772122_298_F12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_A01     3  0.0892      0.961 0.00 0.02 0.98
#> 1772122_299_F12     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_B05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_A08     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_H10     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_D01     1  0.5835      0.492 0.66 0.00 0.34
#> 1772122_302_A01     2  0.2959      0.884 0.00 0.90 0.10
#> 1772122_298_H10     3  0.0892      0.961 0.02 0.00 0.98
#> 1772122_298_C04     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_181_G05     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_D04     1  0.4555      0.754 0.80 0.00 0.20
#> 1772122_180_B10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_298_F04     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_300_H09     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_302_C11     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_A12     1  0.0892      0.959 0.98 0.00 0.02
#> 1772122_299_B10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_299_F03     1  0.1529      0.943 0.96 0.00 0.04
#> 1772122_305_B03     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_306_A07     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_F01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_G01     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_D12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_306_A06     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_315_H01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_G11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_G03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_305_G09     2  0.3340      0.861 0.12 0.88 0.00
#> 1772122_298_F07     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_G05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_H03     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_E08     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_F01     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_B01     1  0.1529      0.940 0.96 0.04 0.00
#> 1772122_302_E02     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_G08     2  0.0892      0.966 0.02 0.98 0.00
#> 1772122_301_F08     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_D08     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_F01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_A12     2  0.0892      0.966 0.02 0.98 0.00
#> 1772122_302_G02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_C12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_A04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_A02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_B05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_A12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_E03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_E12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_F12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_G09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_B10     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_A07     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_B02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_A12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_E03     1  0.2537      0.902 0.92 0.08 0.00
#> 1772122_299_B03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_D01     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_E06     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_301_G03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_A05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_G03     1  0.0892      0.957 0.98 0.02 0.00
#> 1772122_301_C03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_D08     2  0.0892      0.966 0.02 0.98 0.00
#> 1772122_302_G12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_E01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_F07     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_F08     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_E04     1  0.4966      0.836 0.84 0.06 0.10
#> 1772122_182_E05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_E10     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_B07     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_D05     1  0.5706      0.530 0.68 0.32 0.00
#> 1772122_182_F02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_E12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_H09     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_A10     2  0.6192      0.267 0.42 0.58 0.00
#> 1772122_181_F12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_G07     2  0.1529      0.949 0.04 0.96 0.00
#> 1772122_302_B07     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_A11     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_F04     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_C03     1  0.2066      0.922 0.94 0.06 0.00
#> 1772122_300_H01     1  0.1529      0.940 0.96 0.04 0.00
#> 1772122_300_A09     1  0.0892      0.957 0.98 0.02 0.00
#> 1772122_182_E11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_B08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_C05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_G11     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_300_G11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_D05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_A03     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_299_G04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_E01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_302_C06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_F12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_A01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_C09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_G01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_301_C09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_F08     2  0.0892      0.966 0.02 0.98 0.00
#> 1772122_180_H08     2  0.1529      0.949 0.04 0.96 0.00
#> 1772122_182_E01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_H03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_C10     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_C08     3  0.0892      0.961 0.00 0.02 0.98
#> 1772122_182_B08     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_C11     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_B05     1  0.0892      0.957 0.98 0.02 0.00
#> 1772122_302_A09     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_C01     1  0.7059      0.112 0.52 0.02 0.46
#> 1772122_299_G01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_D03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_A03     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_H10     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_E08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_F03     2  0.1529      0.949 0.04 0.96 0.00
#> 1772122_182_B02     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_B12     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_C03     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_H08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_C10     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_A05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_C04     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_F04     3  0.0000      0.976 0.00 0.00 1.00
#> 1772122_182_B11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_A06     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_A05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_B02     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_D05     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_H08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_C01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_C08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_180_F02     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_G09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_B01     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_181_B08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_182_G08     2  0.0000      0.982 0.00 1.00 0.00
#> 1772122_311_G09     1  0.0000      0.971 1.00 0.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_300_D04     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_300_E06     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_298_G11     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_181_C12     3  0.4277     0.6491 0.28 0.00 0.72 0.00
#> 1772122_180_H06     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_180_H10     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_182_G02     3  0.2345     0.8676 0.10 0.00 0.90 0.00
#> 1772122_181_E09     1  0.2921     0.8136 0.86 0.00 0.14 0.00
#> 1772122_299_F06     1  0.4406     0.5566 0.70 0.00 0.30 0.00
#> 1772122_302_H11     1  0.3172     0.7883 0.84 0.00 0.16 0.00
#> 1772122_300_D03     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_299_C07     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_182_E08     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_302_G08     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_301_A04     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_300_E11     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_181_A03     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_298_E09     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_300_H08     3  0.2011     0.8819 0.08 0.00 0.92 0.00
#> 1772122_182_C09     3  0.4277     0.6491 0.28 0.00 0.72 0.00
#> 1772122_298_D10     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_299_C01     4  0.3801     0.7229 0.00 0.00 0.22 0.78
#> 1772122_300_F05     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_182_A10     3  0.3975     0.7108 0.24 0.00 0.76 0.00
#> 1772122_299_F10     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_181_E05     3  0.2706     0.8620 0.00 0.02 0.90 0.08
#> 1772122_300_G04     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_182_H12     3  0.4624     0.5328 0.34 0.00 0.66 0.00
#> 1772122_302_G10     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_182_C06     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_300_E03     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_302_C05     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_299_F09     1  0.2011     0.8795 0.92 0.00 0.08 0.00
#> 1772122_302_C12     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_300_D09     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_180_F06     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_299_E09     3  0.2345     0.8678 0.10 0.00 0.90 0.00
#> 1772122_180_A05     1  0.2011     0.8793 0.92 0.00 0.08 0.00
#> 1772122_182_C05     1  0.1211     0.9142 0.96 0.00 0.04 0.00
#> 1772122_300_A06     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_181_A02     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_181_E11     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_181_C07     3  0.4277     0.6491 0.28 0.00 0.72 0.00
#> 1772122_299_D06     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_180_F09     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_180_D12     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_182_H11     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_263_G09     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_326_G12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_303_A05     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_298_H05     3  0.3610     0.7624 0.20 0.00 0.80 0.00
#> 1772122_303_D05     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_302_B03     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_300_B03     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_299_E02     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_298_B10     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_300_E07     4  0.1637     0.9229 0.00 0.00 0.06 0.94
#> 1772122_298_H12     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_299_G12     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_302_F05     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_302_D05     3  0.2345     0.8677 0.10 0.00 0.90 0.00
#> 1772122_302_G09     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_324_H10     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_181_H01     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_325_F05     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_302_F11     1  0.0707     0.9219 0.98 0.02 0.00 0.00
#> 1772122_302_G04     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_302_H08     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_300_G08     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_B02     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_302_B11     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_300_A03     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_300_C07     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_300_B04     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_D09     2  0.5147     0.6991 0.00 0.74 0.20 0.06
#> 1772122_180_F12     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_181_D10     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_E04     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_182_B12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_300_B05     1  0.4790     0.4039 0.62 0.00 0.00 0.38
#> 1772122_298_A01     1  0.4522     0.5103 0.68 0.00 0.32 0.00
#> 1772122_182_A01     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_300_C12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_302_B05     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_180_C08     4  0.5860     0.3540 0.00 0.04 0.38 0.58
#> 1772122_302_C08     2  0.4936     0.6029 0.00 0.70 0.28 0.02
#> 1772122_300_D10     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_302_E12     1  0.0707     0.9216 0.98 0.02 0.00 0.00
#> 1772122_182_D09     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_298_F12     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_A01     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_299_F12     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_298_B05     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_298_A08     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_299_H10     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_D01     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_302_A01     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_298_H10     1  0.4790     0.3546 0.62 0.00 0.38 0.00
#> 1772122_298_C04     3  0.4522     0.5742 0.32 0.00 0.68 0.00
#> 1772122_181_G05     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_298_D04     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_180_B10     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_298_F04     3  0.4277     0.6491 0.28 0.00 0.72 0.00
#> 1772122_300_H09     3  0.2345     0.8676 0.10 0.00 0.90 0.00
#> 1772122_302_C11     3  0.0000     0.9322 0.00 0.00 1.00 0.00
#> 1772122_182_A12     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_299_B10     3  0.3801     0.6881 0.00 0.00 0.78 0.22
#> 1772122_299_F03     1  0.0707     0.9278 0.98 0.00 0.02 0.00
#> 1772122_305_B03     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_306_A07     4  0.0707     0.9604 0.00 0.02 0.00 0.98
#> 1772122_302_F01     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_302_G01     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_300_D12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_306_A06     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_315_H01     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_302_G11     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_300_G03     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_305_G09     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_298_F07     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_300_G05     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_300_H03     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_302_E08     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_F01     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_298_B01     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_302_E02     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_G08     2  0.5594     0.1683 0.02 0.52 0.00 0.46
#> 1772122_301_F08     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_300_D08     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_181_F01     2  0.5000     0.0598 0.00 0.50 0.00 0.50
#> 1772122_180_A12     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_302_G02     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_C12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_181_A04     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_A02     1  0.3610     0.7327 0.80 0.20 0.00 0.00
#> 1772122_181_B05     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_302_A12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_299_E03     2  0.2345     0.8716 0.10 0.90 0.00 0.00
#> 1772122_181_E12     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_302_F12     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_G09     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_B10     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_A07     1  0.3400     0.7582 0.82 0.18 0.00 0.00
#> 1772122_180_B02     1  0.4277     0.6000 0.72 0.28 0.00 0.00
#> 1772122_299_A12     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_181_E03     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_299_B03     1  0.4134     0.6357 0.74 0.26 0.00 0.00
#> 1772122_300_D01     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_302_E06     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_301_G03     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_302_A05     2  0.1211     0.9122 0.00 0.96 0.04 0.00
#> 1772122_182_G03     2  0.2011     0.8893 0.08 0.92 0.00 0.00
#> 1772122_301_C03     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_180_D08     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_302_G12     2  0.2345     0.8615 0.00 0.90 0.10 0.00
#> 1772122_300_E01     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_300_F07     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_F08     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_302_E04     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_182_E05     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_E10     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_B07     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_299_D05     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_182_F02     1  0.4277     0.6017 0.72 0.28 0.00 0.00
#> 1772122_182_E12     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_182_H09     2  0.3801     0.7240 0.00 0.78 0.00 0.22
#> 1772122_302_A10     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_181_F12     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_180_G07     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_302_B07     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_182_A11     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_182_F04     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_300_C03     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_300_H01     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_300_A09     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_182_E11     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_300_B08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_180_C05     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_181_G11     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_300_G11     2  0.1637     0.9051 0.06 0.94 0.00 0.00
#> 1772122_300_D05     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_302_A03     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_299_G04     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_181_E01     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_302_C06     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_F12     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_180_A01     2  0.2345     0.8676 0.00 0.90 0.00 0.10
#> 1772122_180_C09     2  0.2011     0.8893 0.08 0.92 0.00 0.00
#> 1772122_300_G01     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_301_C09     1  0.2921     0.8080 0.86 0.14 0.00 0.00
#> 1772122_299_F08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_180_H08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_E01     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_H03     2  0.4134     0.6528 0.26 0.74 0.00 0.00
#> 1772122_302_C10     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_C08     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_182_B08     3  0.3172     0.7962 0.00 0.16 0.84 0.00
#> 1772122_182_C11     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_B05     2  0.0707     0.9308 0.02 0.98 0.00 0.00
#> 1772122_302_A09     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_C01     2  0.5291     0.6954 0.08 0.74 0.18 0.00
#> 1772122_299_G01     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_D03     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_299_A03     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_H10     1  0.4977     0.1410 0.54 0.46 0.00 0.00
#> 1772122_180_E08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_180_F03     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_B02     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_B12     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_180_C03     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_H08     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_182_C10     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_182_A05     2  0.3172     0.8039 0.16 0.84 0.00 0.00
#> 1772122_299_C04     4  0.0000     0.9805 0.00 0.00 0.00 1.00
#> 1772122_181_F04     3  0.0707     0.9262 0.00 0.02 0.98 0.00
#> 1772122_182_B11     1  0.0000     0.9345 1.00 0.00 0.00 0.00
#> 1772122_182_A06     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_A05     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_B02     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_D05     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_H08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_C01     2  0.2345     0.8604 0.00 0.90 0.10 0.00
#> 1772122_182_C08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_180_F02     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_181_G09     2  0.2647     0.8528 0.12 0.88 0.00 0.00
#> 1772122_302_B01     2  0.3400     0.7752 0.00 0.82 0.00 0.18
#> 1772122_181_B08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_182_G08     2  0.0000     0.9383 0.00 1.00 0.00 0.00
#> 1772122_311_G09     1  0.0000     0.9345 1.00 0.00 0.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-011-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-011-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-011-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-011-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-011-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-011-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-011-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-011-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-011-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-011-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-011-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-011-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-011-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-011-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-011-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-011-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-011-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      222           5.56e-05            0.10208 2
#> ATC:skmeans      222           2.34e-21            0.02573 3
#> ATC:skmeans      222           6.60e-25            0.00988 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0112

Parent node: Node011. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0112"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 6294 rows and 80 columns.
#>   Top rows (629) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0112-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0112-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.963       0.984          0.506 0.494   0.494
#> 3 3 0.959           0.918       0.964          0.310 0.737   0.520
#> 4 4 0.735           0.740       0.816          0.124 0.853   0.600

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_181_E05     2   0.000      0.969 0.00 1.00
#> 1772122_299_E02     2   0.000      0.969 0.00 1.00
#> 1772122_299_G12     2   0.000      0.969 0.00 1.00
#> 1772122_300_G08     2   0.000      0.969 0.00 1.00
#> 1772122_300_C07     2   0.000      0.969 0.00 1.00
#> 1772122_300_B04     2   0.000      0.969 0.00 1.00
#> 1772122_299_D09     2   0.000      0.969 0.00 1.00
#> 1772122_182_A01     2   0.000      0.969 0.00 1.00
#> 1772122_180_C08     2   0.000      0.969 0.00 1.00
#> 1772122_302_C08     2   0.827      0.664 0.26 0.74
#> 1772122_298_F12     2   0.000      0.969 0.00 1.00
#> 1772122_299_H10     2   0.000      0.969 0.00 1.00
#> 1772122_302_A01     2   0.000      0.969 0.00 1.00
#> 1772122_305_B03     2   0.000      0.969 0.00 1.00
#> 1772122_306_A07     2   0.000      0.969 0.00 1.00
#> 1772122_302_F01     2   0.000      0.969 0.00 1.00
#> 1772122_306_A06     2   0.000      0.969 0.00 1.00
#> 1772122_315_H01     1   0.000      0.998 1.00 0.00
#> 1772122_305_G09     2   0.000      0.969 0.00 1.00
#> 1772122_298_F07     2   0.000      0.969 0.00 1.00
#> 1772122_300_G05     2   0.000      0.969 0.00 1.00
#> 1772122_300_H03     2   0.000      0.969 0.00 1.00
#> 1772122_302_E02     2   0.000      0.969 0.00 1.00
#> 1772122_299_G08     2   0.000      0.969 0.00 1.00
#> 1772122_181_F01     1   0.242      0.957 0.96 0.04
#> 1772122_180_A12     1   0.000      0.998 1.00 0.00
#> 1772122_181_B05     1   0.000      0.998 1.00 0.00
#> 1772122_181_E12     1   0.000      0.998 1.00 0.00
#> 1772122_302_F12     2   0.000      0.969 0.00 1.00
#> 1772122_182_B10     1   0.000      0.998 1.00 0.00
#> 1772122_299_A12     2   0.000      0.969 0.00 1.00
#> 1772122_302_E06     2   0.000      0.969 0.00 1.00
#> 1772122_302_A05     2   0.680      0.780 0.18 0.82
#> 1772122_180_D08     2   0.000      0.969 0.00 1.00
#> 1772122_302_G12     2   0.904      0.555 0.32 0.68
#> 1772122_300_E01     1   0.000      0.998 1.00 0.00
#> 1772122_182_E05     1   0.000      0.998 1.00 0.00
#> 1772122_182_E10     1   0.000      0.998 1.00 0.00
#> 1772122_182_B07     2   0.000      0.969 0.00 1.00
#> 1772122_182_E12     2   0.000      0.969 0.00 1.00
#> 1772122_182_H09     1   0.000      0.998 1.00 0.00
#> 1772122_302_A10     1   0.000      0.998 1.00 0.00
#> 1772122_181_F12     2   0.000      0.969 0.00 1.00
#> 1772122_180_G07     1   0.000      0.998 1.00 0.00
#> 1772122_302_B07     2   0.000      0.969 0.00 1.00
#> 1772122_182_A11     2   0.000      0.969 0.00 1.00
#> 1772122_182_F04     2   0.000      0.969 0.00 1.00
#> 1772122_300_B08     1   0.000      0.998 1.00 0.00
#> 1772122_181_G11     2   0.981      0.294 0.42 0.58
#> 1772122_300_D05     1   0.000      0.998 1.00 0.00
#> 1772122_302_A03     1   0.000      0.998 1.00 0.00
#> 1772122_181_E01     2   0.000      0.969 0.00 1.00
#> 1772122_180_A01     1   0.242      0.957 0.96 0.04
#> 1772122_300_G01     2   0.000      0.969 0.00 1.00
#> 1772122_299_F08     1   0.000      0.998 1.00 0.00
#> 1772122_180_H08     1   0.000      0.998 1.00 0.00
#> 1772122_182_E01     1   0.000      0.998 1.00 0.00
#> 1772122_302_C10     1   0.000      0.998 1.00 0.00
#> 1772122_182_C11     1   0.000      0.998 1.00 0.00
#> 1772122_302_A09     1   0.000      0.998 1.00 0.00
#> 1772122_299_G01     1   0.000      0.998 1.00 0.00
#> 1772122_299_A03     1   0.000      0.998 1.00 0.00
#> 1772122_180_E08     1   0.000      0.998 1.00 0.00
#> 1772122_180_F03     1   0.000      0.998 1.00 0.00
#> 1772122_182_B02     1   0.000      0.998 1.00 0.00
#> 1772122_181_B12     1   0.000      0.998 1.00 0.00
#> 1772122_180_C03     1   0.000      0.998 1.00 0.00
#> 1772122_182_H08     2   0.000      0.969 0.00 1.00
#> 1772122_299_C04     2   0.000      0.969 0.00 1.00
#> 1772122_182_A06     1   0.000      0.998 1.00 0.00
#> 1772122_181_A05     1   0.000      0.998 1.00 0.00
#> 1772122_181_B02     1   0.000      0.998 1.00 0.00
#> 1772122_182_D05     1   0.000      0.998 1.00 0.00
#> 1772122_181_H08     1   0.000      0.998 1.00 0.00
#> 1772122_181_C01     1   0.000      0.998 1.00 0.00
#> 1772122_182_C08     1   0.000      0.998 1.00 0.00
#> 1772122_180_F02     1   0.000      0.998 1.00 0.00
#> 1772122_302_B01     1   0.000      0.998 1.00 0.00
#> 1772122_181_B08     1   0.000      0.998 1.00 0.00
#> 1772122_182_G08     1   0.000      0.998 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_181_E05     2  0.2537      0.905 0.00 0.92 0.08
#> 1772122_299_E02     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_299_G12     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_300_G08     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_300_C07     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_300_B04     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_299_D09     2  0.6229      0.572 0.28 0.70 0.02
#> 1772122_182_A01     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_180_C08     2  0.0892      0.966 0.00 0.98 0.02
#> 1772122_302_C08     3  0.4862      0.798 0.02 0.16 0.82
#> 1772122_298_F12     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_299_H10     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_302_A01     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_305_B03     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_306_A07     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_302_F01     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_306_A06     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_315_H01     1  0.6244      0.267 0.56 0.00 0.44
#> 1772122_305_G09     1  0.0892      0.913 0.98 0.02 0.00
#> 1772122_298_F07     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_300_G05     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_300_H03     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_302_E02     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_299_G08     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_181_F01     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_180_A12     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_181_B05     1  0.1529      0.914 0.96 0.00 0.04
#> 1772122_181_E12     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_302_F12     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_182_B10     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_299_A12     1  0.6280      0.113 0.54 0.46 0.00
#> 1772122_302_E06     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_302_A05     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_180_D08     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_302_G12     1  0.0892      0.920 0.98 0.02 0.00
#> 1772122_300_E01     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_182_E05     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_182_E10     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_182_B07     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_182_E12     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_182_H09     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_302_A10     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_181_F12     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_180_G07     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_302_B07     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_182_A11     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_182_F04     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_300_B08     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_G11     1  0.0892      0.914 0.98 0.02 0.00
#> 1772122_300_D05     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_302_A03     3  0.1529      0.947 0.04 0.00 0.96
#> 1772122_181_E01     2  0.0000      0.979 0.00 1.00 0.00
#> 1772122_180_A01     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_300_G01     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_299_F08     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_180_H08     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_182_E01     1  0.0000      0.926 1.00 0.00 0.00
#> 1772122_302_C10     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_182_C11     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_302_A09     3  0.2537      0.905 0.08 0.00 0.92
#> 1772122_299_G01     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_299_A03     1  0.6302      0.132 0.52 0.00 0.48
#> 1772122_180_E08     1  0.5016      0.688 0.76 0.00 0.24
#> 1772122_180_F03     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_182_B02     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_B12     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_180_C03     1  0.0892      0.927 0.98 0.00 0.02
#> 1772122_182_H08     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_299_C04     2  0.0892      0.975 0.02 0.98 0.00
#> 1772122_182_A06     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_A05     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_B02     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_182_D05     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_H08     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_C01     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_182_C08     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_180_F02     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_302_B01     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_181_B08     3  0.0000      0.982 0.00 0.00 1.00
#> 1772122_182_G08     3  0.0000      0.982 0.00 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_181_E05     4  0.1411      0.565 0.00 0.02 0.02 0.96
#> 1772122_299_E02     4  0.3801      0.560 0.00 0.22 0.00 0.78
#> 1772122_299_G12     4  0.4994      0.475 0.00 0.48 0.00 0.52
#> 1772122_300_G08     4  0.4522      0.598 0.00 0.32 0.00 0.68
#> 1772122_300_C07     4  0.4907      0.569 0.00 0.42 0.00 0.58
#> 1772122_300_B04     4  0.4790      0.588 0.00 0.38 0.00 0.62
#> 1772122_299_D09     4  0.0000      0.555 0.00 0.00 0.00 1.00
#> 1772122_182_A01     4  0.4907      0.569 0.00 0.42 0.00 0.58
#> 1772122_180_C08     4  0.0707      0.564 0.00 0.02 0.00 0.98
#> 1772122_302_C08     4  0.0707      0.556 0.00 0.00 0.02 0.98
#> 1772122_298_F12     4  0.4948      0.544 0.00 0.44 0.00 0.56
#> 1772122_299_H10     4  0.4907      0.569 0.00 0.42 0.00 0.58
#> 1772122_302_A01     4  0.4948      0.544 0.00 0.44 0.00 0.56
#> 1772122_305_B03     2  0.0000      0.871 0.00 1.00 0.00 0.00
#> 1772122_306_A07     1  0.6216      0.651 0.66 0.22 0.00 0.12
#> 1772122_302_F01     2  0.2921      0.778 0.00 0.86 0.00 0.14
#> 1772122_306_A06     2  0.0707      0.875 0.00 0.98 0.00 0.02
#> 1772122_315_H01     3  0.5428      0.330 0.38 0.00 0.60 0.02
#> 1772122_305_G09     1  0.6500      0.603 0.62 0.26 0.00 0.12
#> 1772122_298_F07     2  0.3400      0.714 0.00 0.82 0.00 0.18
#> 1772122_300_G05     2  0.0707      0.875 0.00 0.98 0.00 0.02
#> 1772122_300_H03     4  0.4907      0.569 0.00 0.42 0.00 0.58
#> 1772122_302_E02     2  0.0707      0.875 0.00 0.98 0.00 0.02
#> 1772122_299_G08     1  0.5383      0.734 0.74 0.10 0.00 0.16
#> 1772122_181_F01     1  0.2706      0.843 0.90 0.08 0.00 0.02
#> 1772122_180_A12     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_181_B05     1  0.1211      0.861 0.96 0.00 0.04 0.00
#> 1772122_181_E12     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_302_F12     2  0.2647      0.802 0.00 0.88 0.00 0.12
#> 1772122_182_B10     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_299_A12     2  0.5383      0.496 0.16 0.74 0.00 0.10
#> 1772122_302_E06     2  0.0000      0.871 0.00 1.00 0.00 0.00
#> 1772122_302_A05     4  0.4994     -0.358 0.48 0.00 0.00 0.52
#> 1772122_180_D08     2  0.0707      0.875 0.00 0.98 0.00 0.02
#> 1772122_302_G12     4  0.3610      0.367 0.20 0.00 0.00 0.80
#> 1772122_300_E01     1  0.3610      0.774 0.80 0.00 0.00 0.20
#> 1772122_182_E05     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_182_E10     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_182_B07     2  0.3610      0.668 0.00 0.80 0.00 0.20
#> 1772122_182_E12     2  0.1211      0.841 0.04 0.96 0.00 0.00
#> 1772122_182_H09     1  0.1411      0.873 0.96 0.02 0.00 0.02
#> 1772122_302_A10     1  0.0707      0.875 0.98 0.00 0.00 0.02
#> 1772122_181_F12     2  0.1211      0.835 0.00 0.96 0.00 0.04
#> 1772122_180_G07     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_302_B07     4  0.4948      0.544 0.00 0.44 0.00 0.56
#> 1772122_182_A11     2  0.0000      0.871 0.00 1.00 0.00 0.00
#> 1772122_182_F04     2  0.2921      0.778 0.00 0.86 0.00 0.14
#> 1772122_300_B08     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_181_G11     1  0.5606      0.217 0.50 0.48 0.00 0.02
#> 1772122_300_D05     1  0.0707      0.876 0.98 0.00 0.00 0.02
#> 1772122_302_A03     3  0.2647      0.852 0.12 0.00 0.88 0.00
#> 1772122_181_E01     4  0.4907      0.540 0.00 0.42 0.00 0.58
#> 1772122_180_A01     1  0.3525      0.824 0.86 0.04 0.00 0.10
#> 1772122_300_G01     2  0.0000      0.871 0.00 1.00 0.00 0.00
#> 1772122_299_F08     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_180_H08     1  0.1211      0.871 0.96 0.00 0.00 0.04
#> 1772122_182_E01     1  0.1211      0.869 0.96 0.04 0.00 0.00
#> 1772122_302_C10     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_182_C11     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_302_A09     3  0.4134      0.663 0.26 0.00 0.74 0.00
#> 1772122_299_G01     3  0.1637      0.906 0.00 0.00 0.94 0.06
#> 1772122_299_A03     1  0.7785      0.271 0.42 0.00 0.26 0.32
#> 1772122_180_E08     1  0.5256      0.569 0.70 0.00 0.26 0.04
#> 1772122_180_F03     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_182_B02     3  0.1637      0.905 0.06 0.00 0.94 0.00
#> 1772122_181_B12     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_180_C03     1  0.0000      0.881 1.00 0.00 0.00 0.00
#> 1772122_182_H08     4  0.5594      0.116 0.02 0.46 0.00 0.52
#> 1772122_299_C04     2  0.1637      0.855 0.00 0.94 0.00 0.06
#> 1772122_182_A06     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_181_A05     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_181_B02     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_182_D05     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_181_H08     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_181_C01     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_182_C08     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_180_F02     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_302_B01     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_181_B08     3  0.0000      0.946 0.00 0.00 1.00 0.00
#> 1772122_182_G08     3  0.0000      0.946 0.00 0.00 1.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0112-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0112-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0112-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0112-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0112-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0112-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0112-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0112-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0112-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0112-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0112-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0112-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0112-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0112-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0112-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0112-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0112-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans       79           6.72e-06              0.340 2
#> ATC:skmeans       77           7.47e-08              0.486 3
#> ATC:skmeans       72           1.00e-12              0.279 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node012

Parent node: Node01. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["012"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 9873 rows and 190 columns.
#>   Top rows (987) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 2.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-012-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-012-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2  1.00           0.998       0.999          0.492 0.508   0.508
#> 3 3  0.81           0.915       0.954          0.334 0.784   0.593
#> 4 4  0.88           0.866       0.941          0.127 0.858   0.616

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 2

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_301_C02     2   0.000      1.000 0.00 1.00
#> 1772122_180_E05     1   0.000      0.999 1.00 0.00
#> 1772122_300_H02     1   0.000      0.999 1.00 0.00
#> 1772122_180_B09     1   0.000      0.999 1.00 0.00
#> 1772122_180_G04     1   0.000      0.999 1.00 0.00
#> 1772122_182_E09     1   0.000      0.999 1.00 0.00
#> 1772122_302_C04     1   0.000      0.999 1.00 0.00
#> 1772122_302_D11     1   0.000      0.999 1.00 0.00
#> 1772122_180_C11     1   0.000      0.999 1.00 0.00
#> 1772122_298_A07     1   0.000      0.999 1.00 0.00
#> 1772122_299_A11     1   0.000      0.999 1.00 0.00
#> 1772122_298_D09     1   0.000      0.999 1.00 0.00
#> 1772122_180_A06     1   0.000      0.999 1.00 0.00
#> 1772122_302_G06     1   0.000      0.999 1.00 0.00
#> 1772122_182_D07     1   0.000      0.999 1.00 0.00
#> 1772122_182_D02     1   0.000      0.999 1.00 0.00
#> 1772122_300_F10     1   0.000      0.999 1.00 0.00
#> 1772122_301_G12     2   0.000      1.000 0.00 1.00
#> 1772122_301_F09     2   0.000      1.000 0.00 1.00
#> 1772122_301_C12     2   0.000      1.000 0.00 1.00
#> 1772122_301_F07     2   0.000      1.000 0.00 1.00
#> 1772122_301_F05     2   0.000      1.000 0.00 1.00
#> 1772122_301_D08     2   0.000      1.000 0.00 1.00
#> 1772122_301_G10     2   0.000      1.000 0.00 1.00
#> 1772122_301_C04     2   0.000      1.000 0.00 1.00
#> 1772122_301_G07     2   0.000      1.000 0.00 1.00
#> 1772122_301_B08     2   0.000      1.000 0.00 1.00
#> 1772122_301_G04     2   0.000      1.000 0.00 1.00
#> 1772122_301_H03     2   0.000      1.000 0.00 1.00
#> 1772122_302_G07     1   0.000      0.999 1.00 0.00
#> 1772122_301_D10     2   0.000      1.000 0.00 1.00
#> 1772122_300_F01     1   0.000      0.999 1.00 0.00
#> 1772122_299_H11     1   0.000      0.999 1.00 0.00
#> 1772122_299_B05     1   0.000      0.999 1.00 0.00
#> 1772122_301_C07     2   0.000      1.000 0.00 1.00
#> 1772122_298_C12     1   0.000      0.999 1.00 0.00
#> 1772122_300_A05     1   0.000      0.999 1.00 0.00
#> 1772122_300_H06     1   0.000      0.999 1.00 0.00
#> 1772122_301_E07     2   0.000      1.000 0.00 1.00
#> 1772122_301_A02     2   0.000      1.000 0.00 1.00
#> 1772122_299_F02     1   0.000      0.999 1.00 0.00
#> 1772122_300_D02     1   0.000      0.999 1.00 0.00
#> 1772122_301_H05     2   0.000      1.000 0.00 1.00
#> 1772122_302_D07     1   0.000      0.999 1.00 0.00
#> 1772122_302_A08     1   0.000      0.999 1.00 0.00
#> 1772122_180_H12     1   0.000      0.999 1.00 0.00
#> 1772122_180_G03     1   0.000      0.999 1.00 0.00
#> 1772122_301_H12     2   0.000      1.000 0.00 1.00
#> 1772122_302_D04     1   0.000      0.999 1.00 0.00
#> 1772122_300_C01     1   0.000      0.999 1.00 0.00
#> 1772122_298_C11     1   0.000      0.999 1.00 0.00
#> 1772122_298_H07     1   0.000      0.999 1.00 0.00
#> 1772122_300_B12     1   0.000      0.999 1.00 0.00
#> 1772122_298_F03     1   0.000      0.999 1.00 0.00
#> 1772122_182_A09     1   0.000      0.999 1.00 0.00
#> 1772122_298_D05     1   0.000      0.999 1.00 0.00
#> 1772122_180_A02     1   0.000      0.999 1.00 0.00
#> 1772122_300_A12     1   0.000      0.999 1.00 0.00
#> 1772122_298_E06     1   0.000      0.999 1.00 0.00
#> 1772122_300_A01     1   0.000      0.999 1.00 0.00
#> 1772122_299_G06     1   0.000      0.999 1.00 0.00
#> 1772122_299_E07     1   0.000      0.999 1.00 0.00
#> 1772122_180_D02     1   0.000      0.999 1.00 0.00
#> 1772122_302_A11     1   0.000      0.999 1.00 0.00
#> 1772122_181_C05     1   0.000      0.999 1.00 0.00
#> 1772122_298_C05     1   0.000      0.999 1.00 0.00
#> 1772122_182_C02     1   0.000      0.999 1.00 0.00
#> 1772122_299_B07     1   0.000      0.999 1.00 0.00
#> 1772122_300_F04     1   0.000      0.999 1.00 0.00
#> 1772122_180_H11     1   0.000      0.999 1.00 0.00
#> 1772122_300_A10     1   0.000      0.999 1.00 0.00
#> 1772122_299_G05     1   0.000      0.999 1.00 0.00
#> 1772122_299_E06     1   0.000      0.999 1.00 0.00
#> 1772122_206_D10     1   0.000      0.999 1.00 0.00
#> 1772122_315_F02     1   0.000      0.999 1.00 0.00
#> 1772122_303_A03     1   0.000      0.999 1.00 0.00
#> 1772122_303_B12     1   0.000      0.999 1.00 0.00
#> 1772122_206_H10     1   0.000      0.999 1.00 0.00
#> 1772122_263_H02     1   0.000      0.999 1.00 0.00
#> 1772122_306_E02     1   0.000      0.999 1.00 0.00
#> 1772122_315_E03     1   0.000      0.999 1.00 0.00
#> 1772122_305_G07     1   0.000      0.999 1.00 0.00
#> 1772122_306_H02     1   0.000      0.999 1.00 0.00
#> 1772122_303_D08     1   0.000      0.999 1.00 0.00
#> 1772122_303_H07     1   0.000      0.999 1.00 0.00
#> 1772122_306_D05     1   0.000      0.999 1.00 0.00
#> 1772122_305_H05     1   0.000      0.999 1.00 0.00
#> 1772122_298_G09     1   0.000      0.999 1.00 0.00
#> 1772122_300_E09     1   0.000      0.999 1.00 0.00
#> 1772122_301_G09     2   0.000      1.000 0.00 1.00
#> 1772122_300_F02     1   0.402      0.914 0.92 0.08
#> 1772122_301_G11     2   0.000      1.000 0.00 1.00
#> 1772122_302_E11     1   0.000      0.999 1.00 0.00
#> 1772122_301_A01     2   0.000      1.000 0.00 1.00
#> 1772122_299_D04     2   0.000      1.000 0.00 1.00
#> 1772122_180_E07     1   0.000      0.999 1.00 0.00
#> 1772122_300_E02     1   0.000      0.999 1.00 0.00
#> 1772122_301_A09     2   0.000      1.000 0.00 1.00
#> 1772122_301_B05     2   0.000      1.000 0.00 1.00
#> 1772122_301_B12     2   0.000      1.000 0.00 1.00
#> 1772122_301_F03     2   0.000      1.000 0.00 1.00
#> 1772122_301_E02     2   0.000      1.000 0.00 1.00
#> 1772122_300_C06     2   0.000      1.000 0.00 1.00
#> 1772122_301_A05     2   0.000      1.000 0.00 1.00
#> 1772122_302_A02     2   0.000      1.000 0.00 1.00
#> 1772122_298_A09     1   0.000      0.999 1.00 0.00
#> 1772122_298_E02     1   0.000      0.999 1.00 0.00
#> 1772122_302_D06     1   0.000      0.999 1.00 0.00
#> 1772122_301_B11     2   0.000      1.000 0.00 1.00
#> 1772122_301_H01     2   0.000      1.000 0.00 1.00
#> 1772122_301_H06     2   0.000      1.000 0.00 1.00
#> 1772122_301_F02     2   0.000      1.000 0.00 1.00
#> 1772122_305_D01     1   0.000      0.999 1.00 0.00
#> 1772122_301_E01     2   0.000      1.000 0.00 1.00
#> 1772122_299_D11     1   0.242      0.959 0.96 0.04
#> 1772122_298_H04     1   0.000      0.999 1.00 0.00
#> 1772122_301_C01     2   0.000      1.000 0.00 1.00
#> 1772122_180_F05     1   0.000      0.999 1.00 0.00
#> 1772122_298_F05     1   0.000      0.999 1.00 0.00
#> 1772122_301_C06     2   0.000      1.000 0.00 1.00
#> 1772122_180_H04     1   0.000      0.999 1.00 0.00
#> 1772122_301_B03     2   0.000      1.000 0.00 1.00
#> 1772122_298_A11     1   0.000      0.999 1.00 0.00
#> 1772122_182_D04     1   0.000      0.999 1.00 0.00
#> 1772122_300_H10     1   0.000      0.999 1.00 0.00
#> 1772122_301_B06     2   0.000      1.000 0.00 1.00
#> 1772122_301_D06     2   0.000      1.000 0.00 1.00
#> 1772122_298_A03     1   0.000      0.999 1.00 0.00
#> 1772122_301_A11     2   0.000      1.000 0.00 1.00
#> 1772122_301_F06     2   0.000      1.000 0.00 1.00
#> 1772122_300_H12     1   0.000      0.999 1.00 0.00
#> 1772122_301_B07     2   0.000      1.000 0.00 1.00
#> 1772122_299_F04     1   0.000      0.999 1.00 0.00
#> 1772122_300_E04     1   0.000      0.999 1.00 0.00
#> 1772122_299_F11     1   0.000      0.999 1.00 0.00
#> 1772122_302_C02     1   0.000      0.999 1.00 0.00
#> 1772122_301_D05     2   0.000      1.000 0.00 1.00
#> 1772122_301_H04     2   0.000      1.000 0.00 1.00
#> 1772122_300_G06     1   0.000      0.999 1.00 0.00
#> 1772122_299_H07     1   0.000      0.999 1.00 0.00
#> 1772122_298_H06     1   0.000      0.999 1.00 0.00
#> 1772122_301_G06     2   0.000      1.000 0.00 1.00
#> 1772122_301_C10     2   0.000      1.000 0.00 1.00
#> 1772122_300_B11     1   0.000      0.999 1.00 0.00
#> 1772122_301_C08     2   0.000      1.000 0.00 1.00
#> 1772122_301_D07     2   0.000      1.000 0.00 1.00
#> 1772122_301_D04     2   0.000      1.000 0.00 1.00
#> 1772122_301_G05     2   0.000      1.000 0.00 1.00
#> 1772122_301_H09     2   0.000      1.000 0.00 1.00
#> 1772122_302_F02     1   0.000      0.999 1.00 0.00
#> 1772122_300_F11     1   0.000      0.999 1.00 0.00
#> 1772122_301_C11     2   0.000      1.000 0.00 1.00
#> 1772122_301_F11     2   0.000      1.000 0.00 1.00
#> 1772122_299_A08     1   0.000      0.999 1.00 0.00
#> 1772122_301_E10     2   0.000      1.000 0.00 1.00
#> 1772122_300_D11     1   0.000      0.999 1.00 0.00
#> 1772122_301_C05     2   0.000      1.000 0.00 1.00
#> 1772122_302_B09     1   0.000      0.999 1.00 0.00
#> 1772122_182_F09     1   0.000      0.999 1.00 0.00
#> 1772122_303_C09     2   0.000      1.000 0.00 1.00
#> 1772122_301_E08     2   0.000      1.000 0.00 1.00
#> 1772122_315_C07     2   0.000      1.000 0.00 1.00
#> 1772122_301_A12     2   0.000      1.000 0.00 1.00
#> 1772122_300_C11     1   0.000      0.999 1.00 0.00
#> 1772122_301_E04     2   0.000      1.000 0.00 1.00
#> 1772122_301_E12     2   0.000      1.000 0.00 1.00
#> 1772122_301_E05     2   0.000      1.000 0.00 1.00
#> 1772122_301_D01     2   0.000      1.000 0.00 1.00
#> 1772122_300_A02     2   0.000      1.000 0.00 1.00
#> 1772122_180_E11     2   0.000      1.000 0.00 1.00
#> 1772122_302_F09     2   0.000      1.000 0.00 1.00
#> 1772122_300_H07     2   0.000      1.000 0.00 1.00
#> 1772122_301_B02     2   0.000      1.000 0.00 1.00
#> 1772122_298_B02     1   0.000      0.999 1.00 0.00
#> 1772122_301_E06     2   0.000      1.000 0.00 1.00
#> 1772122_181_D11     1   0.000      0.999 1.00 0.00
#> 1772122_298_H11     2   0.000      1.000 0.00 1.00
#> 1772122_301_A10     2   0.000      1.000 0.00 1.00
#> 1772122_301_D02     2   0.000      1.000 0.00 1.00
#> 1772122_301_F01     2   0.000      1.000 0.00 1.00
#> 1772122_181_F09     2   0.000      1.000 0.00 1.00
#> 1772122_301_G02     2   0.000      1.000 0.00 1.00
#> 1772122_301_A03     2   0.000      1.000 0.00 1.00
#> 1772122_180_G05     1   0.000      0.999 1.00 0.00
#> 1772122_301_E03     2   0.000      1.000 0.00 1.00
#> 1772122_180_G09     2   0.000      1.000 0.00 1.00
#> 1772122_298_C07     1   0.000      0.999 1.00 0.00
#> 1772122_181_E02     2   0.000      1.000 0.00 1.00
#> 1772122_299_E10     1   0.000      0.999 1.00 0.00
#> 1772122_182_B09     1   0.141      0.979 0.98 0.02

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_301_C02     2  0.5397      0.698 0.00 0.72 0.28
#> 1772122_180_E05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_H02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_180_B09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_180_G04     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_182_E09     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_302_C04     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_302_D11     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_180_C11     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_A07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_299_A11     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_D09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_180_A06     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_302_G06     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_182_D07     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_182_D02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_F10     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_G12     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_F09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_C12     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_F07     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_F05     2  0.3340      0.882 0.00 0.88 0.12
#> 1772122_301_D08     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_G10     2  0.2959      0.897 0.00 0.90 0.10
#> 1772122_301_C04     2  0.4796      0.782 0.00 0.78 0.22
#> 1772122_301_G07     2  0.2959      0.897 0.00 0.90 0.10
#> 1772122_301_B08     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_G04     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_H03     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_302_G07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_D10     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_300_F01     3  0.5397      0.715 0.28 0.00 0.72
#> 1772122_299_H11     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_299_B05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_C07     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_298_C12     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_A05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_H06     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_E07     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_A02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_299_F02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_D02     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_301_H05     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_302_D07     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_302_A08     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_180_H12     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_180_G03     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_H12     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_302_D04     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_C01     3  0.4291      0.835 0.18 0.00 0.82
#> 1772122_298_C11     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_H07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_B12     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_298_F03     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_182_A09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_D05     3  0.5560      0.685 0.30 0.00 0.70
#> 1772122_180_A02     3  0.4291      0.813 0.18 0.00 0.82
#> 1772122_300_A12     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_E06     3  0.6126      0.490 0.40 0.00 0.60
#> 1772122_300_A01     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_299_G06     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_299_E07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_180_D02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_302_A11     3  0.4555      0.815 0.20 0.00 0.80
#> 1772122_181_C05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_C05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_182_C02     3  0.4555      0.815 0.20 0.00 0.80
#> 1772122_299_B07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_F04     1  0.5835      0.377 0.66 0.00 0.34
#> 1772122_180_H11     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_300_A10     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_299_G05     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_299_E06     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_206_D10     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_315_F02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_303_A03     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_303_B12     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_206_H10     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_263_H02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_306_E02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_315_E03     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_305_G07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_306_H02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_303_D08     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_303_H07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_306_D05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_305_H05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_G09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_E09     1  0.5706      0.433 0.68 0.00 0.32
#> 1772122_301_G09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_F02     3  0.4097      0.873 0.06 0.06 0.88
#> 1772122_301_G11     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_302_E11     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_A01     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_299_D04     2  0.6280      0.139 0.46 0.54 0.00
#> 1772122_180_E07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_E02     3  0.2959      0.887 0.10 0.00 0.90
#> 1772122_301_A09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_B05     2  0.5016      0.757 0.00 0.76 0.24
#> 1772122_301_B12     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_F03     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_E02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_C06     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_A05     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_302_A02     2  0.0892      0.945 0.00 0.98 0.02
#> 1772122_298_A09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_E02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_302_D06     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_B11     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_H01     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_H06     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_F02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_305_D01     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_E01     2  0.4796      0.783 0.00 0.78 0.22
#> 1772122_299_D11     1  0.3340      0.832 0.88 0.12 0.00
#> 1772122_298_H04     3  0.2537      0.890 0.08 0.00 0.92
#> 1772122_301_C01     2  0.3340      0.882 0.00 0.88 0.12
#> 1772122_180_F05     1  0.0892      0.962 0.98 0.00 0.02
#> 1772122_298_F05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_C06     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_180_H04     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_B03     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_298_A11     3  0.6192      0.443 0.42 0.00 0.58
#> 1772122_182_D04     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_300_H10     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_B06     2  0.3340      0.882 0.00 0.88 0.12
#> 1772122_301_D06     2  0.5216      0.729 0.00 0.74 0.26
#> 1772122_298_A03     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_301_A11     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_F06     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_300_H12     1  0.2537      0.891 0.92 0.00 0.08
#> 1772122_301_B07     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_299_F04     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_300_E04     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_299_F11     3  0.5216      0.743 0.26 0.00 0.74
#> 1772122_302_C02     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_301_D05     2  0.3340      0.882 0.00 0.88 0.12
#> 1772122_301_H04     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_G06     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_299_H07     3  0.6302      0.268 0.48 0.00 0.52
#> 1772122_298_H06     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_301_G06     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_C10     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_B11     3  0.4002      0.853 0.16 0.00 0.84
#> 1772122_301_C08     2  0.3686      0.866 0.00 0.86 0.14
#> 1772122_301_D07     2  0.2537      0.911 0.00 0.92 0.08
#> 1772122_301_D04     2  0.2959      0.897 0.00 0.90 0.10
#> 1772122_301_G05     2  0.4796      0.782 0.00 0.78 0.22
#> 1772122_301_H09     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_302_F02     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_300_F11     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_301_C11     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_F11     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_299_A08     3  0.0000      0.892 0.00 0.00 1.00
#> 1772122_301_E10     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_D11     3  0.3340      0.882 0.12 0.00 0.88
#> 1772122_301_C05     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_302_B09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_182_F09     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_303_C09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_E08     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_315_C07     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_A12     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_C11     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_E04     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_E12     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_E05     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_D01     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_A02     2  0.0892      0.942 0.02 0.98 0.00
#> 1772122_180_E11     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_302_F09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_300_H07     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_B02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_298_B02     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_E06     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_181_D11     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_298_H11     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_A10     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_D02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_F01     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_181_F09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_G02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_301_A03     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_180_G05     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_301_E03     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_180_G09     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_298_C07     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_181_E02     2  0.0000      0.958 0.00 1.00 0.00
#> 1772122_299_E10     1  0.0000      0.983 1.00 0.00 0.00
#> 1772122_182_B09     1  0.2959      0.859 0.90 0.10 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_301_C02     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_180_E05     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_300_H02     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_180_B09     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_180_G04     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_182_E09     4  0.4855     0.2950 0.00 0.00 0.40 0.60
#> 1772122_302_C04     3  0.3975     0.6468 0.00 0.00 0.76 0.24
#> 1772122_302_D11     3  0.3975     0.6460 0.00 0.00 0.76 0.24
#> 1772122_180_C11     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_298_A07     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_299_A11     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_298_D09     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_180_A06     4  0.3975     0.6348 0.00 0.00 0.24 0.76
#> 1772122_302_G06     3  0.4406     0.5414 0.00 0.00 0.70 0.30
#> 1772122_182_D07     3  0.5000    -0.0174 0.00 0.00 0.50 0.50
#> 1772122_182_D02     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_300_F10     1  0.2647     0.8651 0.88 0.00 0.12 0.00
#> 1772122_301_G12     4  0.4994     0.0892 0.00 0.48 0.00 0.52
#> 1772122_301_F09     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_C12     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_301_F07     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_F05     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_D08     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_301_G10     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_C04     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_G07     4  0.2011     0.8555 0.00 0.08 0.00 0.92
#> 1772122_301_B08     4  0.4948     0.2205 0.00 0.44 0.00 0.56
#> 1772122_301_G04     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_H03     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_302_G07     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_301_D10     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_300_F01     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_299_H11     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_299_B05     1  0.3801     0.7405 0.78 0.00 0.22 0.00
#> 1772122_301_C07     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_298_C12     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_300_A05     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_300_H06     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_301_E07     4  0.4994     0.0901 0.00 0.48 0.00 0.52
#> 1772122_301_A02     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_299_F02     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_300_D02     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_H05     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_302_D07     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_302_A08     3  0.0707     0.8990 0.00 0.00 0.98 0.02
#> 1772122_180_H12     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_180_G03     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_301_H12     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_302_D04     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_300_C01     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_298_C11     1  0.2647     0.8649 0.88 0.00 0.12 0.00
#> 1772122_298_H07     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_300_B12     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_298_F03     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_182_A09     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_298_D05     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_180_A02     3  0.7135     0.4530 0.24 0.00 0.56 0.20
#> 1772122_300_A12     3  0.4522     0.5233 0.32 0.00 0.68 0.00
#> 1772122_298_E06     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_300_A01     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_299_G06     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_299_E07     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_180_D02     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_302_A11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_181_C05     1  0.3400     0.7948 0.82 0.00 0.18 0.00
#> 1772122_298_C05     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_182_C02     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_299_B07     1  0.2921     0.8428 0.86 0.00 0.14 0.00
#> 1772122_300_F04     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_180_H11     4  0.4994     0.0396 0.00 0.00 0.48 0.52
#> 1772122_300_A10     3  0.3975     0.6774 0.24 0.00 0.76 0.00
#> 1772122_299_G05     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_299_E06     3  0.2647     0.8234 0.12 0.00 0.88 0.00
#> 1772122_206_D10     1  0.4134     0.6794 0.74 0.00 0.26 0.00
#> 1772122_315_F02     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_303_A03     1  0.2011     0.9033 0.92 0.00 0.08 0.00
#> 1772122_303_B12     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_206_H10     1  0.4522     0.5642 0.68 0.00 0.32 0.00
#> 1772122_263_H02     1  0.2345     0.8778 0.90 0.00 0.10 0.00
#> 1772122_306_E02     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_315_E03     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_305_G07     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_306_H02     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_303_D08     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_303_H07     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_306_D05     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_305_H05     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_298_G09     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_300_E09     3  0.2011     0.8624 0.08 0.00 0.92 0.00
#> 1772122_301_G09     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_300_F02     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_G11     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_302_E11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_A01     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_299_D04     2  0.5487     0.3087 0.40 0.58 0.00 0.02
#> 1772122_180_E07     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_300_E02     3  0.0707     0.9042 0.00 0.00 0.98 0.02
#> 1772122_301_A09     2  0.0707     0.9479 0.00 0.98 0.00 0.02
#> 1772122_301_B05     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_B12     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_301_F03     2  0.3610     0.7342 0.00 0.80 0.00 0.20
#> 1772122_301_E02     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_300_C06     2  0.0707     0.9479 0.00 0.98 0.00 0.02
#> 1772122_301_A05     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_302_A02     2  0.0707     0.9479 0.00 0.98 0.00 0.02
#> 1772122_298_A09     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_298_E02     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_302_D06     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_B11     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_H01     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_H06     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_F02     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_305_D01     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_301_E01     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_299_D11     1  0.3037     0.8492 0.88 0.10 0.00 0.02
#> 1772122_298_H04     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_C01     4  0.1637     0.8701 0.00 0.06 0.00 0.94
#> 1772122_180_F05     3  0.2011     0.8611 0.08 0.00 0.92 0.00
#> 1772122_298_F05     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_301_C06     2  0.2921     0.8195 0.00 0.86 0.00 0.14
#> 1772122_180_H04     3  0.4134     0.6446 0.26 0.00 0.74 0.00
#> 1772122_301_B03     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_298_A11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_182_D04     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_300_H10     1  0.0707     0.9448 0.98 0.00 0.02 0.00
#> 1772122_301_B06     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_D06     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_298_A03     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_A11     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_301_F06     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_300_H12     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_301_B07     2  0.4277     0.5915 0.00 0.72 0.00 0.28
#> 1772122_299_F04     3  0.3400     0.7610 0.18 0.00 0.82 0.00
#> 1772122_300_E04     3  0.0707     0.8990 0.00 0.00 0.98 0.02
#> 1772122_299_F11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_302_C02     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_D05     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_H04     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_300_G06     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_299_H07     3  0.0707     0.9057 0.02 0.00 0.98 0.00
#> 1772122_298_H06     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_G06     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_301_C10     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_300_B11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_C08     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_D07     4  0.2011     0.8552 0.00 0.08 0.00 0.92
#> 1772122_301_D04     4  0.1211     0.8831 0.00 0.04 0.00 0.96
#> 1772122_301_G05     4  0.0707     0.8938 0.00 0.02 0.00 0.98
#> 1772122_301_H09     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_302_F02     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_300_F11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_C11     4  0.0707     0.8902 0.00 0.00 0.02 0.98
#> 1772122_301_F11     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_299_A08     3  0.0707     0.8990 0.00 0.00 0.98 0.02
#> 1772122_301_E10     2  0.4855     0.2980 0.00 0.60 0.00 0.40
#> 1772122_300_D11     3  0.0000     0.9128 0.00 0.00 1.00 0.00
#> 1772122_301_C05     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_302_B09     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_182_F09     1  0.4277     0.6427 0.72 0.00 0.28 0.00
#> 1772122_303_C09     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_E08     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_315_C07     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_A12     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_300_C11     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_301_E04     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_E12     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_301_E05     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_D01     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_300_A02     2  0.1411     0.9331 0.02 0.96 0.00 0.02
#> 1772122_180_E11     2  0.1411     0.9331 0.02 0.96 0.00 0.02
#> 1772122_302_F09     2  0.1411     0.9331 0.02 0.96 0.00 0.02
#> 1772122_300_H07     2  0.0707     0.9479 0.00 0.98 0.00 0.02
#> 1772122_301_B02     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_298_B02     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_301_E06     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_181_D11     1  0.4994     0.1008 0.52 0.00 0.48 0.00
#> 1772122_298_H11     2  0.0707     0.9479 0.00 0.98 0.00 0.02
#> 1772122_301_A10     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_D02     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_F01     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_181_F09     2  0.1411     0.9331 0.02 0.96 0.00 0.02
#> 1772122_301_G02     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_301_A03     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_180_G05     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_301_E03     2  0.0707     0.9480 0.00 0.98 0.00 0.02
#> 1772122_180_G09     2  0.0000     0.9585 0.00 1.00 0.00 0.00
#> 1772122_298_C07     1  0.0000     0.9492 1.00 0.00 0.00 0.00
#> 1772122_181_E02     2  0.0707     0.9479 0.00 0.98 0.00 0.02
#> 1772122_299_E10     1  0.0707     0.9421 0.98 0.00 0.00 0.02
#> 1772122_182_B09     1  0.1411     0.9283 0.96 0.02 0.00 0.02

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-012-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-012-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-012-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-012-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-012-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-012-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-012-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-012-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-012-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-012-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-012-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-012-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-012-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-012-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-012-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-012-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-012-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      190           1.01e-05            0.02376 2
#> ATC:skmeans      184           6.05e-07            0.00233 3
#> ATC:skmeans      180           1.17e-11            0.00218 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0121

Parent node: Node012. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0121"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 8394 rows and 109 columns.
#>   Top rows (839) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0121-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0121-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.942           0.946       0.978          0.505 0.496   0.496
#> 3 3 0.989           0.942       0.976          0.285 0.818   0.647
#> 4 4 0.795           0.810       0.905          0.130 0.876   0.665

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_180_E05     2   0.000      0.968 0.00 1.00
#> 1772122_300_H02     2   0.000      0.968 0.00 1.00
#> 1772122_180_B09     2   0.000      0.968 0.00 1.00
#> 1772122_180_G04     2   0.000      0.968 0.00 1.00
#> 1772122_182_E09     1   0.000      0.986 1.00 0.00
#> 1772122_302_C04     1   0.000      0.986 1.00 0.00
#> 1772122_302_D11     1   0.000      0.986 1.00 0.00
#> 1772122_180_C11     2   0.000      0.968 0.00 1.00
#> 1772122_298_A07     2   0.000      0.968 0.00 1.00
#> 1772122_299_A11     1   1.000     -0.033 0.50 0.50
#> 1772122_298_D09     2   0.000      0.968 0.00 1.00
#> 1772122_180_A06     1   0.000      0.986 1.00 0.00
#> 1772122_302_G06     1   0.000      0.986 1.00 0.00
#> 1772122_182_D07     1   0.000      0.986 1.00 0.00
#> 1772122_182_D02     2   0.000      0.968 0.00 1.00
#> 1772122_300_F10     2   0.000      0.968 0.00 1.00
#> 1772122_302_G07     2   0.000      0.968 0.00 1.00
#> 1772122_300_F01     1   0.000      0.986 1.00 0.00
#> 1772122_299_H11     2   0.000      0.968 0.00 1.00
#> 1772122_299_B05     2   0.529      0.859 0.12 0.88
#> 1772122_298_C12     2   0.000      0.968 0.00 1.00
#> 1772122_300_A05     2   0.000      0.968 0.00 1.00
#> 1772122_300_H06     2   0.958      0.403 0.38 0.62
#> 1772122_299_F02     2   0.000      0.968 0.00 1.00
#> 1772122_300_D02     1   0.000      0.986 1.00 0.00
#> 1772122_302_D07     1   0.000      0.986 1.00 0.00
#> 1772122_302_A08     1   0.000      0.986 1.00 0.00
#> 1772122_180_H12     2   0.000      0.968 0.00 1.00
#> 1772122_180_G03     2   0.000      0.968 0.00 1.00
#> 1772122_302_D04     2   0.000      0.968 0.00 1.00
#> 1772122_300_C01     1   0.000      0.986 1.00 0.00
#> 1772122_298_C11     1   0.327      0.925 0.94 0.06
#> 1772122_298_H07     2   0.000      0.968 0.00 1.00
#> 1772122_300_B12     1   0.000      0.986 1.00 0.00
#> 1772122_298_F03     2   0.000      0.968 0.00 1.00
#> 1772122_182_A09     2   0.000      0.968 0.00 1.00
#> 1772122_298_D05     1   0.000      0.986 1.00 0.00
#> 1772122_180_A02     1   0.000      0.986 1.00 0.00
#> 1772122_300_A12     1   0.000      0.986 1.00 0.00
#> 1772122_298_E06     1   0.000      0.986 1.00 0.00
#> 1772122_300_A01     2   0.000      0.968 0.00 1.00
#> 1772122_299_G06     2   0.000      0.968 0.00 1.00
#> 1772122_299_E07     2   0.529      0.857 0.12 0.88
#> 1772122_180_D02     2   0.827      0.656 0.26 0.74
#> 1772122_302_A11     1   0.000      0.986 1.00 0.00
#> 1772122_181_C05     2   0.327      0.918 0.06 0.94
#> 1772122_298_C05     2   0.000      0.968 0.00 1.00
#> 1772122_182_C02     1   0.000      0.986 1.00 0.00
#> 1772122_299_B07     2   0.904      0.546 0.32 0.68
#> 1772122_300_F04     1   0.000      0.986 1.00 0.00
#> 1772122_180_H11     1   0.000      0.986 1.00 0.00
#> 1772122_300_A10     2   0.680      0.786 0.18 0.82
#> 1772122_299_G05     1   0.000      0.986 1.00 0.00
#> 1772122_299_E06     1   0.000      0.986 1.00 0.00
#> 1772122_206_D10     2   0.827      0.667 0.26 0.74
#> 1772122_315_F02     2   0.000      0.968 0.00 1.00
#> 1772122_303_A03     1   0.634      0.800 0.84 0.16
#> 1772122_303_B12     1   0.000      0.986 1.00 0.00
#> 1772122_206_H10     1   0.000      0.986 1.00 0.00
#> 1772122_263_H02     1   0.000      0.986 1.00 0.00
#> 1772122_306_E02     2   0.000      0.968 0.00 1.00
#> 1772122_315_E03     2   0.000      0.968 0.00 1.00
#> 1772122_305_G07     2   0.000      0.968 0.00 1.00
#> 1772122_306_H02     2   0.000      0.968 0.00 1.00
#> 1772122_303_D08     2   0.000      0.968 0.00 1.00
#> 1772122_303_H07     2   0.000      0.968 0.00 1.00
#> 1772122_306_D05     2   0.000      0.968 0.00 1.00
#> 1772122_305_H05     2   0.000      0.968 0.00 1.00
#> 1772122_298_G09     2   0.000      0.968 0.00 1.00
#> 1772122_300_E09     1   0.000      0.986 1.00 0.00
#> 1772122_300_F02     1   0.000      0.986 1.00 0.00
#> 1772122_302_E11     1   0.000      0.986 1.00 0.00
#> 1772122_180_E07     2   0.000      0.968 0.00 1.00
#> 1772122_300_E02     1   0.000      0.986 1.00 0.00
#> 1772122_298_A09     2   0.000      0.968 0.00 1.00
#> 1772122_298_E02     2   0.000      0.968 0.00 1.00
#> 1772122_302_D06     1   0.000      0.986 1.00 0.00
#> 1772122_305_D01     2   0.000      0.968 0.00 1.00
#> 1772122_299_D11     2   0.000      0.968 0.00 1.00
#> 1772122_298_H04     1   0.000      0.986 1.00 0.00
#> 1772122_180_F05     1   0.000      0.986 1.00 0.00
#> 1772122_298_F05     2   0.000      0.968 0.00 1.00
#> 1772122_180_H04     1   0.000      0.986 1.00 0.00
#> 1772122_298_A11     1   0.000      0.986 1.00 0.00
#> 1772122_182_D04     1   0.000      0.986 1.00 0.00
#> 1772122_300_H10     2   0.000      0.968 0.00 1.00
#> 1772122_298_A03     1   0.000      0.986 1.00 0.00
#> 1772122_300_H12     1   0.000      0.986 1.00 0.00
#> 1772122_299_F04     1   0.000      0.986 1.00 0.00
#> 1772122_300_E04     1   0.000      0.986 1.00 0.00
#> 1772122_299_F11     1   0.000      0.986 1.00 0.00
#> 1772122_302_C02     1   0.000      0.986 1.00 0.00
#> 1772122_300_G06     2   0.000      0.968 0.00 1.00
#> 1772122_299_H07     1   0.000      0.986 1.00 0.00
#> 1772122_298_H06     1   0.000      0.986 1.00 0.00
#> 1772122_300_B11     1   0.000      0.986 1.00 0.00
#> 1772122_302_F02     1   0.000      0.986 1.00 0.00
#> 1772122_300_F11     1   0.000      0.986 1.00 0.00
#> 1772122_299_A08     1   0.000      0.986 1.00 0.00
#> 1772122_300_D11     1   0.000      0.986 1.00 0.00
#> 1772122_302_B09     2   0.000      0.968 0.00 1.00
#> 1772122_182_F09     1   0.000      0.986 1.00 0.00
#> 1772122_300_C11     2   0.000      0.968 0.00 1.00
#> 1772122_298_B02     2   0.000      0.968 0.00 1.00
#> 1772122_181_D11     1   0.000      0.986 1.00 0.00
#> 1772122_180_G05     2   0.000      0.968 0.00 1.00
#> 1772122_298_C07     2   0.000      0.968 0.00 1.00
#> 1772122_299_E10     2   0.000      0.968 0.00 1.00
#> 1772122_182_B09     2   0.000      0.968 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_180_E05     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_300_H02     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_180_B09     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_180_G04     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_182_E09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_C04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_D11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_C11     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_A07     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_299_A11     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_298_D09     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_180_A06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_G06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_D07     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_D02     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_300_F10     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_302_G07     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_300_F01     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_H11     2  0.0892      0.975 0.00 0.98 0.02
#> 1772122_299_B05     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_C12     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_300_A05     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_300_H06     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_299_F02     2  0.3340      0.866 0.00 0.88 0.12
#> 1772122_300_D02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_D07     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_A08     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_H12     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_180_G03     3  0.4002      0.793 0.00 0.16 0.84
#> 1772122_302_D04     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_300_C01     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_C11     1  0.7029      0.181 0.54 0.44 0.02
#> 1772122_298_H07     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_300_B12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_F03     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_182_A09     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_298_D05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_A02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_A12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_E06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_A01     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_299_G06     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_299_E07     3  0.1781      0.932 0.02 0.02 0.96
#> 1772122_180_D02     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_302_A11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_181_C05     2  0.1781      0.960 0.02 0.96 0.02
#> 1772122_298_C05     2  0.0892      0.975 0.00 0.98 0.02
#> 1772122_182_C02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_B07     3  0.8399      0.554 0.16 0.22 0.62
#> 1772122_300_F04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_H11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_A10     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_299_G05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_E06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_206_D10     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_315_F02     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_303_A03     2  0.2066      0.925 0.06 0.94 0.00
#> 1772122_303_B12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_206_H10     1  0.6045      0.393 0.62 0.38 0.00
#> 1772122_263_H02     3  0.6126      0.328 0.40 0.00 0.60
#> 1772122_306_E02     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_315_E03     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_305_G07     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_306_H02     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_303_D08     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_303_H07     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_306_D05     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_305_H05     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_298_G09     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_300_E09     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_F02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_E11     1  0.5948      0.412 0.64 0.00 0.36
#> 1772122_180_E07     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_300_E02     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_A09     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_E02     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_302_D06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_305_D01     2  0.0000      0.990 0.00 1.00 0.00
#> 1772122_299_D11     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_H04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_F05     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_F05     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_180_H04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_A11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_182_D04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_H10     2  0.1529      0.958 0.00 0.96 0.04
#> 1772122_298_A03     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_H12     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_F04     1  0.0892      0.951 0.98 0.02 0.00
#> 1772122_300_E04     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_F11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_C02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_G06     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_299_H07     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_298_H06     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_B11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_F02     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_F11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_299_A08     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_300_D11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_302_B09     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_182_F09     1  0.2066      0.911 0.94 0.00 0.06
#> 1772122_300_C11     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_B02     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_181_D11     1  0.0000      0.971 1.00 0.00 0.00
#> 1772122_180_G05     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_298_C07     2  0.0892      0.975 0.00 0.98 0.02
#> 1772122_299_E10     3  0.0000      0.959 0.00 0.00 1.00
#> 1772122_182_B09     2  0.0000      0.990 0.00 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_180_E05     2  0.2011     0.8325 0.00 0.92 0.00 0.08
#> 1772122_300_H02     2  0.2345     0.8276 0.00 0.90 0.00 0.10
#> 1772122_180_B09     2  0.2647     0.8255 0.00 0.88 0.00 0.12
#> 1772122_180_G04     2  0.3801     0.7600 0.00 0.78 0.00 0.22
#> 1772122_182_E09     1  0.3611     0.7937 0.86 0.08 0.00 0.06
#> 1772122_302_C04     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_D11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_180_C11     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_298_A07     2  0.2647     0.8255 0.00 0.88 0.00 0.12
#> 1772122_299_A11     4  0.5606    -0.2675 0.02 0.48 0.00 0.50
#> 1772122_298_D09     2  0.2647     0.8255 0.00 0.88 0.00 0.12
#> 1772122_180_A06     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_G06     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_182_D07     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_182_D02     2  0.4406     0.6693 0.00 0.70 0.00 0.30
#> 1772122_300_F10     2  0.2011     0.8145 0.00 0.92 0.00 0.08
#> 1772122_302_G07     2  0.4624     0.6160 0.00 0.66 0.00 0.34
#> 1772122_300_F01     1  0.1211     0.9205 0.96 0.00 0.00 0.04
#> 1772122_299_H11     2  0.3972     0.8093 0.00 0.84 0.08 0.08
#> 1772122_299_B05     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_298_C12     2  0.2647     0.8255 0.00 0.88 0.00 0.12
#> 1772122_300_A05     2  0.0707     0.8320 0.00 0.98 0.00 0.02
#> 1772122_300_H06     2  0.2647     0.8255 0.00 0.88 0.00 0.12
#> 1772122_299_F02     4  0.0000     0.7344 0.00 0.00 0.00 1.00
#> 1772122_300_D02     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_D07     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_A08     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_180_H12     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_180_G03     3  0.4841     0.7271 0.00 0.14 0.78 0.08
#> 1772122_302_D04     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_300_C01     1  0.2011     0.8800 0.92 0.00 0.00 0.08
#> 1772122_298_C11     4  0.1411     0.7449 0.02 0.02 0.00 0.96
#> 1772122_298_H07     2  0.4624     0.6938 0.00 0.66 0.00 0.34
#> 1772122_300_B12     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_298_F03     2  0.4907     0.3683 0.00 0.58 0.00 0.42
#> 1772122_182_A09     2  0.2647     0.8255 0.00 0.88 0.00 0.12
#> 1772122_298_D05     1  0.0707     0.9355 0.98 0.02 0.00 0.00
#> 1772122_180_A02     1  0.6150     0.1685 0.58 0.06 0.00 0.36
#> 1772122_300_A12     4  0.6586     0.3105 0.42 0.08 0.00 0.50
#> 1772122_298_E06     1  0.1637     0.9029 0.94 0.00 0.00 0.06
#> 1772122_300_A01     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_299_G06     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_299_E07     3  0.8186    -0.0313 0.04 0.14 0.42 0.40
#> 1772122_180_D02     2  0.4994     0.3045 0.00 0.52 0.00 0.48
#> 1772122_302_A11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_181_C05     4  0.2921     0.6911 0.00 0.14 0.00 0.86
#> 1772122_298_C05     4  0.0707     0.7254 0.00 0.02 0.00 0.98
#> 1772122_182_C02     4  0.3610     0.7364 0.20 0.00 0.00 0.80
#> 1772122_299_B07     4  0.1913     0.7463 0.02 0.04 0.00 0.94
#> 1772122_300_F04     1  0.0707     0.9378 0.98 0.00 0.00 0.02
#> 1772122_180_H11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_300_A10     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_299_G05     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_299_E06     1  0.3400     0.7317 0.82 0.00 0.00 0.18
#> 1772122_206_D10     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_315_F02     2  0.1211     0.8277 0.00 0.96 0.00 0.04
#> 1772122_303_A03     2  0.0707     0.8264 0.02 0.98 0.00 0.00
#> 1772122_303_B12     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_206_H10     2  0.6843     0.0811 0.44 0.46 0.00 0.10
#> 1772122_263_H02     4  0.4617     0.7263 0.06 0.02 0.10 0.82
#> 1772122_306_E02     2  0.2011     0.8145 0.00 0.92 0.00 0.08
#> 1772122_315_E03     2  0.2706     0.8065 0.00 0.90 0.02 0.08
#> 1772122_305_G07     2  0.2706     0.8065 0.00 0.90 0.02 0.08
#> 1772122_306_H02     2  0.0000     0.8294 0.00 1.00 0.00 0.00
#> 1772122_303_D08     2  0.2706     0.8065 0.00 0.90 0.02 0.08
#> 1772122_303_H07     2  0.1913     0.8223 0.00 0.94 0.02 0.04
#> 1772122_306_D05     2  0.1211     0.8277 0.00 0.96 0.00 0.04
#> 1772122_305_H05     2  0.1211     0.8277 0.00 0.96 0.00 0.04
#> 1772122_298_G09     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_300_E09     4  0.4790     0.4749 0.38 0.00 0.00 0.62
#> 1772122_300_F02     1  0.2011     0.8824 0.92 0.00 0.00 0.08
#> 1772122_302_E11     1  0.4790     0.3871 0.62 0.00 0.38 0.00
#> 1772122_180_E07     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_300_E02     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_298_A09     3  0.2647     0.8458 0.00 0.00 0.88 0.12
#> 1772122_298_E02     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_302_D06     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_305_D01     2  0.4079     0.7171 0.00 0.80 0.02 0.18
#> 1772122_299_D11     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_298_H04     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_180_F05     4  0.3400     0.7479 0.18 0.00 0.00 0.82
#> 1772122_298_F05     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_180_H04     4  0.3172     0.7561 0.16 0.00 0.00 0.84
#> 1772122_298_A11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_182_D04     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_300_H10     4  0.2647     0.6994 0.00 0.12 0.00 0.88
#> 1772122_298_A03     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_300_H12     1  0.1211     0.9158 0.96 0.04 0.00 0.00
#> 1772122_299_F04     4  0.5000     0.1294 0.50 0.00 0.00 0.50
#> 1772122_300_E04     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_299_F11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_C02     1  0.0707     0.9387 0.98 0.00 0.00 0.02
#> 1772122_300_G06     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_299_H07     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_298_H06     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_300_B11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_F02     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_300_F11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_299_A08     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_300_D11     1  0.0000     0.9526 1.00 0.00 0.00 0.00
#> 1772122_302_B09     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_182_F09     4  0.2647     0.7651 0.12 0.00 0.00 0.88
#> 1772122_300_C11     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_298_B02     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_181_D11     4  0.2345     0.7630 0.10 0.00 0.00 0.90
#> 1772122_180_G05     3  0.1211     0.9243 0.00 0.00 0.96 0.04
#> 1772122_298_C07     4  0.1211     0.7103 0.00 0.04 0.00 0.96
#> 1772122_299_E10     3  0.0000     0.9569 0.00 0.00 1.00 0.00
#> 1772122_182_B09     2  0.2647     0.8255 0.00 0.88 0.00 0.12

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0121-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0121-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0121-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0121-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0121-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0121-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0121-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0121-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0121-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0121-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0121-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0121-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0121-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0121-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0121-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0121-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0121-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      107           0.070625           0.056107 2
#> ATC:skmeans      105           0.000126           0.000080 3
#> ATC:skmeans       99           0.000288           0.000014 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0122

Parent node: Node012. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0122"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 8332 rows and 81 columns.
#>   Top rows (833) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0122-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0122-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.992       0.996          0.503 0.498   0.498
#> 3 3 1.000           0.980       0.992          0.332 0.767   0.561
#> 4 4 0.739           0.835       0.876          0.119 0.882   0.659

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_301_C02     1   0.000      0.993 1.00 0.00
#> 1772122_301_G12     1   0.000      0.993 1.00 0.00
#> 1772122_301_F09     2   0.000      0.999 0.00 1.00
#> 1772122_301_C12     1   0.000      0.993 1.00 0.00
#> 1772122_301_F07     2   0.000      0.999 0.00 1.00
#> 1772122_301_F05     1   0.000      0.993 1.00 0.00
#> 1772122_301_D08     1   0.000      0.993 1.00 0.00
#> 1772122_301_G10     1   0.000      0.993 1.00 0.00
#> 1772122_301_C04     1   0.000      0.993 1.00 0.00
#> 1772122_301_G07     1   0.000      0.993 1.00 0.00
#> 1772122_301_B08     1   0.000      0.993 1.00 0.00
#> 1772122_301_G04     2   0.000      0.999 0.00 1.00
#> 1772122_301_H03     1   0.000      0.993 1.00 0.00
#> 1772122_301_D10     1   0.000      0.993 1.00 0.00
#> 1772122_301_C07     1   0.000      0.993 1.00 0.00
#> 1772122_301_E07     1   0.000      0.993 1.00 0.00
#> 1772122_301_A02     1   0.000      0.993 1.00 0.00
#> 1772122_301_H05     2   0.000      0.999 0.00 1.00
#> 1772122_301_H12     1   0.000      0.993 1.00 0.00
#> 1772122_301_G09     2   0.000      0.999 0.00 1.00
#> 1772122_301_G11     2   0.000      0.999 0.00 1.00
#> 1772122_301_A01     2   0.000      0.999 0.00 1.00
#> 1772122_299_D04     2   0.000      0.999 0.00 1.00
#> 1772122_301_A09     2   0.000      0.999 0.00 1.00
#> 1772122_301_B05     1   0.000      0.993 1.00 0.00
#> 1772122_301_B12     2   0.000      0.999 0.00 1.00
#> 1772122_301_F03     1   0.242      0.956 0.96 0.04
#> 1772122_301_E02     2   0.000      0.999 0.00 1.00
#> 1772122_300_C06     2   0.000      0.999 0.00 1.00
#> 1772122_301_A05     2   0.000      0.999 0.00 1.00
#> 1772122_302_A02     2   0.000      0.999 0.00 1.00
#> 1772122_301_B11     2   0.000      0.999 0.00 1.00
#> 1772122_301_H01     2   0.000      0.999 0.00 1.00
#> 1772122_301_H06     2   0.000      0.999 0.00 1.00
#> 1772122_301_F02     2   0.000      0.999 0.00 1.00
#> 1772122_301_E01     1   0.000      0.993 1.00 0.00
#> 1772122_301_C01     1   0.000      0.993 1.00 0.00
#> 1772122_301_C06     1   0.000      0.993 1.00 0.00
#> 1772122_301_B03     1   0.000      0.993 1.00 0.00
#> 1772122_301_B06     1   0.000      0.993 1.00 0.00
#> 1772122_301_D06     1   0.000      0.993 1.00 0.00
#> 1772122_301_A11     1   0.000      0.993 1.00 0.00
#> 1772122_301_F06     1   0.000      0.993 1.00 0.00
#> 1772122_301_B07     1   0.000      0.993 1.00 0.00
#> 1772122_301_D05     1   0.000      0.993 1.00 0.00
#> 1772122_301_H04     2   0.000      0.999 0.00 1.00
#> 1772122_301_G06     1   0.000      0.993 1.00 0.00
#> 1772122_301_C10     2   0.000      0.999 0.00 1.00
#> 1772122_301_C08     1   0.000      0.993 1.00 0.00
#> 1772122_301_D07     1   0.000      0.993 1.00 0.00
#> 1772122_301_D04     1   0.000      0.993 1.00 0.00
#> 1772122_301_G05     1   0.000      0.993 1.00 0.00
#> 1772122_301_H09     1   0.000      0.993 1.00 0.00
#> 1772122_301_C11     1   0.000      0.993 1.00 0.00
#> 1772122_301_F11     1   0.634      0.813 0.84 0.16
#> 1772122_301_E10     1   0.000      0.993 1.00 0.00
#> 1772122_301_C05     1   0.242      0.957 0.96 0.04
#> 1772122_303_C09     2   0.000      0.999 0.00 1.00
#> 1772122_301_E08     2   0.000      0.999 0.00 1.00
#> 1772122_315_C07     2   0.000      0.999 0.00 1.00
#> 1772122_301_A12     2   0.000      0.999 0.00 1.00
#> 1772122_301_E04     2   0.000      0.999 0.00 1.00
#> 1772122_301_E12     2   0.327      0.936 0.06 0.94
#> 1772122_301_E05     2   0.000      0.999 0.00 1.00
#> 1772122_301_D01     2   0.000      0.999 0.00 1.00
#> 1772122_300_A02     2   0.000      0.999 0.00 1.00
#> 1772122_180_E11     2   0.000      0.999 0.00 1.00
#> 1772122_302_F09     2   0.000      0.999 0.00 1.00
#> 1772122_300_H07     2   0.000      0.999 0.00 1.00
#> 1772122_301_B02     2   0.000      0.999 0.00 1.00
#> 1772122_301_E06     2   0.000      0.999 0.00 1.00
#> 1772122_298_H11     2   0.000      0.999 0.00 1.00
#> 1772122_301_A10     2   0.000      0.999 0.00 1.00
#> 1772122_301_D02     2   0.000      0.999 0.00 1.00
#> 1772122_301_F01     2   0.000      0.999 0.00 1.00
#> 1772122_181_F09     2   0.000      0.999 0.00 1.00
#> 1772122_301_G02     2   0.000      0.999 0.00 1.00
#> 1772122_301_A03     2   0.000      0.999 0.00 1.00
#> 1772122_301_E03     2   0.000      0.999 0.00 1.00
#> 1772122_180_G09     2   0.000      0.999 0.00 1.00
#> 1772122_181_E02     2   0.000      0.999 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_301_C02     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_G12     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_F09     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_C12     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_F07     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_F05     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_D08     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_G10     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C04     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_G07     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_B08     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_G04     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_H03     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_D10     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C07     3  0.0892      0.953 0.02 0.00 0.98
#> 1772122_301_E07     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_A02     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_H05     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_H12     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_G09     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_G11     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_A01     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_299_D04     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_A09     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_B05     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_B12     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_F03     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E02     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_300_C06     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_A05     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_302_A02     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_B11     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_H01     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_H06     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_F02     3  0.6045      0.410 0.00 0.38 0.62
#> 1772122_301_E01     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C01     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C06     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_B03     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_B06     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_D06     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_A11     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_F06     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_B07     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_D05     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_H04     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_G06     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C10     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_C08     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_D07     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_D04     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_G05     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_H09     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C11     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_F11     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_E10     1  0.0000      1.000 1.00 0.00 0.00
#> 1772122_301_C05     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_303_C09     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E08     3  0.5397      0.621 0.00 0.28 0.72
#> 1772122_315_C07     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_A12     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E04     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E12     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E05     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_D01     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_300_A02     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_180_E11     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_302_F09     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_300_H07     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_B02     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E06     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_298_H11     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_A10     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_D02     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_F01     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_181_F09     3  0.0000      0.971 0.00 0.00 1.00
#> 1772122_301_G02     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_A03     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_301_E03     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_180_G09     2  0.0000      1.000 0.00 1.00 0.00
#> 1772122_181_E02     3  0.0000      0.971 0.00 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_301_C02     4  0.3975      0.843 0.24 0.00 0.00 0.76
#> 1772122_301_G12     1  0.1211      0.917 0.96 0.00 0.00 0.04
#> 1772122_301_F09     3  0.3975      0.845 0.00 0.00 0.76 0.24
#> 1772122_301_C12     1  0.0707      0.933 0.98 0.00 0.00 0.02
#> 1772122_301_F07     3  0.4277      0.816 0.00 0.00 0.72 0.28
#> 1772122_301_F05     4  0.3801      0.849 0.22 0.00 0.00 0.78
#> 1772122_301_D08     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_G10     4  0.3801      0.849 0.22 0.00 0.00 0.78
#> 1772122_301_C04     4  0.3975      0.843 0.24 0.00 0.00 0.76
#> 1772122_301_G07     1  0.3801      0.630 0.78 0.00 0.00 0.22
#> 1772122_301_B08     4  0.3801      0.849 0.22 0.00 0.00 0.78
#> 1772122_301_G04     3  0.3610      0.865 0.00 0.00 0.80 0.20
#> 1772122_301_H03     1  0.0707      0.933 0.98 0.00 0.00 0.02
#> 1772122_301_D10     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_C07     4  0.0707      0.683 0.00 0.00 0.02 0.98
#> 1772122_301_E07     4  0.3801      0.849 0.22 0.00 0.00 0.78
#> 1772122_301_A02     4  0.3172      0.500 0.00 0.00 0.16 0.84
#> 1772122_301_H05     3  0.2647      0.864 0.00 0.00 0.88 0.12
#> 1772122_301_H12     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_G09     3  0.3172      0.868 0.00 0.00 0.84 0.16
#> 1772122_301_G11     3  0.3610      0.865 0.00 0.00 0.80 0.20
#> 1772122_301_A01     2  0.5810      0.655 0.02 0.72 0.20 0.06
#> 1772122_299_D04     3  0.3400      0.867 0.00 0.00 0.82 0.18
#> 1772122_301_A09     3  0.3610      0.865 0.00 0.00 0.80 0.20
#> 1772122_301_B05     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_B12     2  0.1411      0.905 0.02 0.96 0.00 0.02
#> 1772122_301_F03     2  0.0707      0.906 0.02 0.98 0.00 0.00
#> 1772122_301_E02     2  0.2647      0.893 0.00 0.88 0.12 0.00
#> 1772122_300_C06     3  0.0707      0.836 0.00 0.02 0.98 0.00
#> 1772122_301_A05     2  0.0000      0.911 0.00 1.00 0.00 0.00
#> 1772122_302_A02     2  0.4288      0.844 0.02 0.82 0.14 0.02
#> 1772122_301_B11     3  0.3610      0.865 0.00 0.00 0.80 0.20
#> 1772122_301_H01     2  0.0000      0.911 0.00 1.00 0.00 0.00
#> 1772122_301_H06     3  0.3610      0.865 0.00 0.00 0.80 0.20
#> 1772122_301_F02     3  0.7198      0.545 0.00 0.28 0.54 0.18
#> 1772122_301_E01     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_C01     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_C06     4  0.3610      0.842 0.20 0.00 0.00 0.80
#> 1772122_301_B03     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_B06     4  0.4855      0.587 0.40 0.00 0.00 0.60
#> 1772122_301_D06     4  0.4134      0.821 0.26 0.00 0.00 0.74
#> 1772122_301_A11     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_F06     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_B07     1  0.4948     -0.107 0.56 0.00 0.00 0.44
#> 1772122_301_D05     1  0.0707      0.933 0.98 0.00 0.00 0.02
#> 1772122_301_H04     3  0.4277      0.817 0.00 0.00 0.72 0.28
#> 1772122_301_G06     1  0.0707      0.933 0.98 0.00 0.00 0.02
#> 1772122_301_C10     3  0.3801      0.857 0.00 0.00 0.78 0.22
#> 1772122_301_C08     4  0.3975      0.843 0.24 0.00 0.00 0.76
#> 1772122_301_D07     1  0.1211      0.917 0.96 0.00 0.00 0.04
#> 1772122_301_D04     4  0.3975      0.843 0.24 0.00 0.00 0.76
#> 1772122_301_G05     4  0.3975      0.843 0.24 0.00 0.00 0.76
#> 1772122_301_H09     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_C11     1  0.0000      0.941 1.00 0.00 0.00 0.00
#> 1772122_301_F11     4  0.3801      0.366 0.00 0.00 0.22 0.78
#> 1772122_301_E10     4  0.3610      0.842 0.20 0.00 0.00 0.80
#> 1772122_301_C05     4  0.2011      0.623 0.00 0.00 0.08 0.92
#> 1772122_303_C09     2  0.2921      0.887 0.00 0.86 0.14 0.00
#> 1772122_301_E08     3  0.3801      0.601 0.00 0.22 0.78 0.00
#> 1772122_315_C07     2  0.2706      0.905 0.00 0.90 0.08 0.02
#> 1772122_301_A12     2  0.1411      0.905 0.02 0.96 0.00 0.02
#> 1772122_301_E04     2  0.2647      0.893 0.00 0.88 0.12 0.00
#> 1772122_301_E12     2  0.2647      0.893 0.00 0.88 0.12 0.00
#> 1772122_301_E05     2  0.3037      0.899 0.00 0.88 0.10 0.02
#> 1772122_301_D01     2  0.0000      0.911 0.00 1.00 0.00 0.00
#> 1772122_300_A02     3  0.0707      0.836 0.00 0.02 0.98 0.00
#> 1772122_180_E11     3  0.0707      0.836 0.00 0.02 0.98 0.00
#> 1772122_302_F09     3  0.0707      0.836 0.00 0.02 0.98 0.00
#> 1772122_300_H07     2  0.5173      0.699 0.00 0.66 0.32 0.02
#> 1772122_301_B02     2  0.0707      0.906 0.02 0.98 0.00 0.00
#> 1772122_301_E06     2  0.2647      0.893 0.00 0.88 0.12 0.00
#> 1772122_298_H11     2  0.4079      0.850 0.00 0.80 0.18 0.02
#> 1772122_301_A10     2  0.0707      0.910 0.00 0.98 0.00 0.02
#> 1772122_301_D02     3  0.2335      0.820 0.00 0.06 0.92 0.02
#> 1772122_301_F01     2  0.1411      0.905 0.02 0.96 0.00 0.02
#> 1772122_181_F09     3  0.0707      0.836 0.00 0.02 0.98 0.00
#> 1772122_301_G02     2  0.2647      0.893 0.00 0.88 0.12 0.00
#> 1772122_301_A03     2  0.0000      0.911 0.00 1.00 0.00 0.00
#> 1772122_301_E03     2  0.1411      0.905 0.02 0.96 0.00 0.02
#> 1772122_180_G09     2  0.3400      0.865 0.00 0.82 0.18 0.00
#> 1772122_181_E02     3  0.0707      0.836 0.00 0.02 0.98 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0122-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0122-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0122-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0122-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0122-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0122-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0122-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0122-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0122-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0122-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0122-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0122-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0122-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0122-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0122-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0122-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0122-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans       81           1.98e-08             0.5522 2
#> ATC:skmeans       80           4.78e-07             0.0913 3
#> ATC:skmeans       78           1.28e-05             0.2020 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node013

Parent node: Node01. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["013"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 9765 rows and 287 columns.
#>   Top rows (976) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-013-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-013-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.977       0.991         0.5022 0.498   0.498
#> 3 3 1.000           0.978       0.991         0.3175 0.765   0.561
#> 4 4 0.828           0.892       0.923         0.0851 0.925   0.785

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_298_F09     2   0.000     0.9870 0.00 1.00
#> 1772122_300_E10     2   0.000     0.9870 0.00 1.00
#> 1772122_315_A07     1   0.000     0.9937 1.00 0.00
#> 1772122_325_G03     1   0.000     0.9937 1.00 0.00
#> 1772122_325_A08     1   0.000     0.9937 1.00 0.00
#> 1772122_263_G11     1   0.000     0.9937 1.00 0.00
#> 1772122_299_A07     2   0.000     0.9870 0.00 1.00
#> 1772122_326_H08     1   0.000     0.9937 1.00 0.00
#> 1772122_303_B01     1   0.000     0.9937 1.00 0.00
#> 1772122_298_D07     2   0.000     0.9870 0.00 1.00
#> 1772122_298_D11     1   0.000     0.9937 1.00 0.00
#> 1772122_299_A05     1   0.000     0.9937 1.00 0.00
#> 1772122_299_H06     2   0.000     0.9870 0.00 1.00
#> 1772122_299_A06     1   0.000     0.9937 1.00 0.00
#> 1772122_299_C05     1   0.000     0.9937 1.00 0.00
#> 1772122_299_H04     1   0.000     0.9937 1.00 0.00
#> 1772122_299_G07     2   0.000     0.9870 0.00 1.00
#> 1772122_300_C09     2   0.000     0.9870 0.00 1.00
#> 1772122_302_H07     1   0.000     0.9937 1.00 0.00
#> 1772122_298_C02     2   0.000     0.9870 0.00 1.00
#> 1772122_300_E12     1   0.000     0.9937 1.00 0.00
#> 1772122_299_H12     2   0.242     0.9477 0.04 0.96
#> 1772122_300_H05     2   0.000     0.9870 0.00 1.00
#> 1772122_299_B04     1   0.000     0.9937 1.00 0.00
#> 1772122_298_F02     2   0.000     0.9870 0.00 1.00
#> 1772122_315_B01     1   0.000     0.9937 1.00 0.00
#> 1772122_299_C10     1   0.242     0.9552 0.96 0.04
#> 1772122_300_D07     1   0.000     0.9937 1.00 0.00
#> 1772122_306_E09     1   0.000     0.9937 1.00 0.00
#> 1772122_305_A01     1   0.000     0.9937 1.00 0.00
#> 1772122_306_C10     1   0.000     0.9937 1.00 0.00
#> 1772122_303_D01     1   0.000     0.9937 1.00 0.00
#> 1772122_305_E12     1   0.529     0.8652 0.88 0.12
#> 1772122_303_F12     1   0.000     0.9937 1.00 0.00
#> 1772122_306_D12     1   0.000     0.9937 1.00 0.00
#> 1772122_303_E07     1   0.000     0.9937 1.00 0.00
#> 1772122_306_C09     1   0.000     0.9937 1.00 0.00
#> 1772122_305_G10     1   0.000     0.9937 1.00 0.00
#> 1772122_315_F10     1   0.000     0.9937 1.00 0.00
#> 1772122_306_G09     1   0.000     0.9937 1.00 0.00
#> 1772122_315_B05     1   0.000     0.9937 1.00 0.00
#> 1772122_306_H08     1   0.000     0.9937 1.00 0.00
#> 1772122_305_G02     1   0.000     0.9937 1.00 0.00
#> 1772122_262_A05     1   0.000     0.9937 1.00 0.00
#> 1772122_305_H09     1   0.000     0.9937 1.00 0.00
#> 1772122_306_F11     1   0.000     0.9937 1.00 0.00
#> 1772122_315_B11     1   0.000     0.9937 1.00 0.00
#> 1772122_306_C11     1   0.000     0.9937 1.00 0.00
#> 1772122_315_D08     1   0.000     0.9937 1.00 0.00
#> 1772122_306_E07     1   0.000     0.9937 1.00 0.00
#> 1772122_306_A02     1   0.000     0.9937 1.00 0.00
#> 1772122_315_G12     1   0.000     0.9937 1.00 0.00
#> 1772122_306_D11     1   0.000     0.9937 1.00 0.00
#> 1772122_306_E10     1   0.000     0.9937 1.00 0.00
#> 1772122_306_B05     1   0.000     0.9937 1.00 0.00
#> 1772122_205_B05     1   0.000     0.9937 1.00 0.00
#> 1772122_306_F04     1   0.000     0.9937 1.00 0.00
#> 1772122_315_A03     1   0.000     0.9937 1.00 0.00
#> 1772122_305_H02     2   0.000     0.9870 0.00 1.00
#> 1772122_305_H04     1   0.000     0.9937 1.00 0.00
#> 1772122_315_C12     1   0.000     0.9937 1.00 0.00
#> 1772122_303_A08     2   0.999     0.0869 0.48 0.52
#> 1772122_303_F04     1   0.000     0.9937 1.00 0.00
#> 1772122_303_A10     1   0.141     0.9748 0.98 0.02
#> 1772122_305_A10     1   0.000     0.9937 1.00 0.00
#> 1772122_303_G08     1   0.000     0.9937 1.00 0.00
#> 1772122_299_D12     1   0.000     0.9937 1.00 0.00
#> 1772122_305_E10     1   0.000     0.9937 1.00 0.00
#> 1772122_262_F01     1   0.000     0.9937 1.00 0.00
#> 1772122_298_C06     2   0.000     0.9870 0.00 1.00
#> 1772122_305_A04     1   0.000     0.9937 1.00 0.00
#> 1772122_305_A05     1   0.000     0.9937 1.00 0.00
#> 1772122_305_G04     1   0.000     0.9937 1.00 0.00
#> 1772122_306_B10     1   0.000     0.9937 1.00 0.00
#> 1772122_303_C11     1   0.000     0.9937 1.00 0.00
#> 1772122_305_B10     1   0.000     0.9937 1.00 0.00
#> 1772122_306_E01     1   0.000     0.9937 1.00 0.00
#> 1772122_180_A07     2   0.000     0.9870 0.00 1.00
#> 1772122_180_H01     2   0.000     0.9870 0.00 1.00
#> 1772122_298_G07     2   0.000     0.9870 0.00 1.00
#> 1772122_299_A02     2   0.000     0.9870 0.00 1.00
#> 1772122_298_E08     2   0.000     0.9870 0.00 1.00
#> 1772122_302_E03     1   0.000     0.9937 1.00 0.00
#> 1772122_300_B09     1   0.000     0.9937 1.00 0.00
#> 1772122_181_C03     2   0.000     0.9870 0.00 1.00
#> 1772122_181_D01     2   0.000     0.9870 0.00 1.00
#> 1772122_180_G08     2   0.000     0.9870 0.00 1.00
#> 1772122_180_G11     2   0.000     0.9870 0.00 1.00
#> 1772122_300_G12     2   0.000     0.9870 0.00 1.00
#> 1772122_298_D06     2   0.000     0.9870 0.00 1.00
#> 1772122_299_H05     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B03     2   0.000     0.9870 0.00 1.00
#> 1772122_300_G07     2   0.000     0.9870 0.00 1.00
#> 1772122_298_E01     2   0.000     0.9870 0.00 1.00
#> 1772122_298_G03     2   0.000     0.9870 0.00 1.00
#> 1772122_181_D12     1   0.000     0.9937 1.00 0.00
#> 1772122_181_D07     2   0.000     0.9870 0.00 1.00
#> 1772122_298_H02     2   0.000     0.9870 0.00 1.00
#> 1772122_181_H05     2   0.000     0.9870 0.00 1.00
#> 1772122_298_F11     1   0.000     0.9937 1.00 0.00
#> 1772122_181_G07     2   0.000     0.9870 0.00 1.00
#> 1772122_182_B06     2   0.000     0.9870 0.00 1.00
#> 1772122_299_G03     2   0.000     0.9870 0.00 1.00
#> 1772122_298_A10     2   0.000     0.9870 0.00 1.00
#> 1772122_298_E07     2   0.000     0.9870 0.00 1.00
#> 1772122_300_C08     2   0.000     0.9870 0.00 1.00
#> 1772122_298_D02     2   0.904     0.5326 0.32 0.68
#> 1772122_182_B04     2   0.000     0.9870 0.00 1.00
#> 1772122_181_C11     2   0.000     0.9870 0.00 1.00
#> 1772122_181_H04     2   0.000     0.9870 0.00 1.00
#> 1772122_180_D05     2   0.000     0.9870 0.00 1.00
#> 1772122_299_C12     2   0.722     0.7474 0.20 0.80
#> 1772122_302_H06     1   0.000     0.9937 1.00 0.00
#> 1772122_298_E12     1   0.000     0.9937 1.00 0.00
#> 1772122_298_B08     2   0.000     0.9870 0.00 1.00
#> 1772122_300_B10     2   0.000     0.9870 0.00 1.00
#> 1772122_180_G12     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B12     1   0.634     0.8119 0.84 0.16
#> 1772122_298_F06     1   0.402     0.9128 0.92 0.08
#> 1772122_300_C04     2   0.995     0.1579 0.46 0.54
#> 1772122_302_H01     1   0.000     0.9937 1.00 0.00
#> 1772122_302_D02     1   0.584     0.8388 0.86 0.14
#> 1772122_180_A03     1   0.000     0.9937 1.00 0.00
#> 1772122_180_F04     2   0.000     0.9870 0.00 1.00
#> 1772122_299_E12     2   0.000     0.9870 0.00 1.00
#> 1772122_298_A05     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F08     2   0.000     0.9870 0.00 1.00
#> 1772122_298_C03     2   0.000     0.9870 0.00 1.00
#> 1772122_300_G10     2   0.000     0.9870 0.00 1.00
#> 1772122_298_B04     2   0.000     0.9870 0.00 1.00
#> 1772122_302_H10     2   0.000     0.9870 0.00 1.00
#> 1772122_302_H05     1   0.000     0.9937 1.00 0.00
#> 1772122_298_G08     2   0.000     0.9870 0.00 1.00
#> 1772122_180_A10     2   0.000     0.9870 0.00 1.00
#> 1772122_298_D08     2   0.000     0.9870 0.00 1.00
#> 1772122_299_B01     2   0.000     0.9870 0.00 1.00
#> 1772122_299_F05     2   0.000     0.9870 0.00 1.00
#> 1772122_180_E06     2   0.000     0.9870 0.00 1.00
#> 1772122_180_G10     2   0.000     0.9870 0.00 1.00
#> 1772122_181_A06     2   0.000     0.9870 0.00 1.00
#> 1772122_181_B06     2   0.000     0.9870 0.00 1.00
#> 1772122_182_D03     2   0.000     0.9870 0.00 1.00
#> 1772122_300_F06     2   0.000     0.9870 0.00 1.00
#> 1772122_300_D06     2   0.000     0.9870 0.00 1.00
#> 1772122_299_D02     2   0.000     0.9870 0.00 1.00
#> 1772122_299_H08     2   0.000     0.9870 0.00 1.00
#> 1772122_299_B09     2   0.000     0.9870 0.00 1.00
#> 1772122_300_C10     2   0.000     0.9870 0.00 1.00
#> 1772122_298_H03     2   0.000     0.9870 0.00 1.00
#> 1772122_299_C06     2   0.000     0.9870 0.00 1.00
#> 1772122_300_C05     2   0.000     0.9870 0.00 1.00
#> 1772122_300_E05     1   0.722     0.7515 0.80 0.20
#> 1772122_300_E08     2   0.925     0.4906 0.34 0.66
#> 1772122_300_A04     2   0.000     0.9870 0.00 1.00
#> 1772122_300_B02     2   0.000     0.9870 0.00 1.00
#> 1772122_300_F08     2   0.000     0.9870 0.00 1.00
#> 1772122_182_E03     2   0.000     0.9870 0.00 1.00
#> 1772122_298_A04     2   0.000     0.9870 0.00 1.00
#> 1772122_298_B11     2   0.000     0.9870 0.00 1.00
#> 1772122_180_H02     2   0.000     0.9870 0.00 1.00
#> 1772122_180_D06     2   0.000     0.9870 0.00 1.00
#> 1772122_302_B02     2   0.000     0.9870 0.00 1.00
#> 1772122_298_E04     2   0.000     0.9870 0.00 1.00
#> 1772122_180_C04     2   0.000     0.9870 0.00 1.00
#> 1772122_298_D03     2   0.000     0.9870 0.00 1.00
#> 1772122_180_A08     2   0.000     0.9870 0.00 1.00
#> 1772122_181_A12     2   0.000     0.9870 0.00 1.00
#> 1772122_180_C12     2   0.000     0.9870 0.00 1.00
#> 1772122_182_B01     2   0.000     0.9870 0.00 1.00
#> 1772122_180_H07     2   0.000     0.9870 0.00 1.00
#> 1772122_181_C04     2   0.000     0.9870 0.00 1.00
#> 1772122_180_D10     2   0.000     0.9870 0.00 1.00
#> 1772122_181_B10     2   0.000     0.9870 0.00 1.00
#> 1772122_182_F03     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B07     2   0.000     0.9870 0.00 1.00
#> 1772122_181_C06     2   0.000     0.9870 0.00 1.00
#> 1772122_181_G06     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F06     2   0.000     0.9870 0.00 1.00
#> 1772122_181_D05     2   0.000     0.9870 0.00 1.00
#> 1772122_299_E05     2   0.000     0.9870 0.00 1.00
#> 1772122_182_E06     2   0.000     0.9870 0.00 1.00
#> 1772122_182_H01     2   0.000     0.9870 0.00 1.00
#> 1772122_299_H09     2   0.000     0.9870 0.00 1.00
#> 1772122_299_H03     2   0.000     0.9870 0.00 1.00
#> 1772122_181_B11     2   0.000     0.9870 0.00 1.00
#> 1772122_180_C01     2   0.000     0.9870 0.00 1.00
#> 1772122_299_C08     2   0.000     0.9870 0.00 1.00
#> 1772122_182_E07     2   0.000     0.9870 0.00 1.00
#> 1772122_181_H02     2   0.000     0.9870 0.00 1.00
#> 1772122_181_D09     2   0.000     0.9870 0.00 1.00
#> 1772122_181_H07     2   0.000     0.9870 0.00 1.00
#> 1772122_182_D01     2   0.000     0.9870 0.00 1.00
#> 1772122_302_H12     2   0.000     0.9870 0.00 1.00
#> 1772122_180_E12     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B05     2   0.000     0.9870 0.00 1.00
#> 1772122_181_H12     2   0.000     0.9870 0.00 1.00
#> 1772122_180_F10     2   0.000     0.9870 0.00 1.00
#> 1772122_180_F08     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F03     2   0.000     0.9870 0.00 1.00
#> 1772122_299_E01     2   0.000     0.9870 0.00 1.00
#> 1772122_181_B01     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F02     2   0.000     0.9870 0.00 1.00
#> 1772122_182_D06     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F11     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B06     1   0.529     0.8648 0.88 0.12
#> 1772122_180_D09     2   0.000     0.9870 0.00 1.00
#> 1772122_298_C08     2   0.000     0.9870 0.00 1.00
#> 1772122_180_D03     2   0.000     0.9870 0.00 1.00
#> 1772122_299_H02     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B01     2   0.000     0.9870 0.00 1.00
#> 1772122_180_B08     2   0.000     0.9870 0.00 1.00
#> 1772122_181_E04     2   0.000     0.9870 0.00 1.00
#> 1772122_181_D02     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F07     2   0.000     0.9870 0.00 1.00
#> 1772122_181_E07     2   0.000     0.9870 0.00 1.00
#> 1772122_180_F11     2   0.000     0.9870 0.00 1.00
#> 1772122_180_F01     2   0.000     0.9870 0.00 1.00
#> 1772122_180_E03     2   0.000     0.9870 0.00 1.00
#> 1772122_181_A07     2   0.000     0.9870 0.00 1.00
#> 1772122_299_A09     2   0.000     0.9870 0.00 1.00
#> 1772122_181_F10     2   0.000     0.9870 0.00 1.00
#> 1772122_262_E07     1   0.000     0.9937 1.00 0.00
#> 1772122_206_E06     1   0.000     0.9937 1.00 0.00
#> 1772122_262_F09     1   0.000     0.9937 1.00 0.00
#> 1772122_205_H01     1   0.000     0.9937 1.00 0.00
#> 1772122_206_B01     1   0.000     0.9937 1.00 0.00
#> 1772122_204_E10     1   0.000     0.9937 1.00 0.00
#> 1772122_204_H07     1   0.000     0.9937 1.00 0.00
#> 1772122_262_B01     1   0.000     0.9937 1.00 0.00
#> 1772122_204_G03     1   0.000     0.9937 1.00 0.00
#> 1772122_206_G09     1   0.000     0.9937 1.00 0.00
#> 1772122_204_E09     1   0.000     0.9937 1.00 0.00
#> 1772122_262_F05     1   0.000     0.9937 1.00 0.00
#> 1772122_204_E02     1   0.000     0.9937 1.00 0.00
#> 1772122_262_G03     1   0.000     0.9937 1.00 0.00
#> 1772122_262_D04     1   0.000     0.9937 1.00 0.00
#> 1772122_205_B02     1   0.000     0.9937 1.00 0.00
#> 1772122_325_B02     1   0.000     0.9937 1.00 0.00
#> 1772122_263_E07     1   0.000     0.9937 1.00 0.00
#> 1772122_325_A10     1   0.000     0.9937 1.00 0.00
#> 1772122_206_D03     1   0.000     0.9937 1.00 0.00
#> 1772122_263_D01     1   0.000     0.9937 1.00 0.00
#> 1772122_262_A06     1   0.000     0.9937 1.00 0.00
#> 1772122_326_B12     1   0.000     0.9937 1.00 0.00
#> 1772122_263_F04     1   0.000     0.9937 1.00 0.00
#> 1772122_262_B02     1   0.000     0.9937 1.00 0.00
#> 1772122_325_B03     1   0.000     0.9937 1.00 0.00
#> 1772122_326_A01     1   0.000     0.9937 1.00 0.00
#> 1772122_325_E05     1   0.000     0.9937 1.00 0.00
#> 1772122_326_F05     1   0.000     0.9937 1.00 0.00
#> 1772122_204_H03     1   0.000     0.9937 1.00 0.00
#> 1772122_263_H03     1   0.000     0.9937 1.00 0.00
#> 1772122_326_F09     1   0.000     0.9937 1.00 0.00
#> 1772122_326_H02     1   0.000     0.9937 1.00 0.00
#> 1772122_206_H08     1   0.000     0.9937 1.00 0.00
#> 1772122_263_G08     1   0.000     0.9937 1.00 0.00
#> 1772122_325_E04     1   0.000     0.9937 1.00 0.00
#> 1772122_312_E01     1   0.000     0.9937 1.00 0.00
#> 1772122_314_C07     1   0.000     0.9937 1.00 0.00
#> 1772122_312_E03     1   0.000     0.9937 1.00 0.00
#> 1772122_312_D01     1   0.000     0.9937 1.00 0.00
#> 1772122_311_F12     1   0.000     0.9937 1.00 0.00
#> 1772122_310_E12     1   0.000     0.9937 1.00 0.00
#> 1772122_310_D08     1   0.000     0.9937 1.00 0.00
#> 1772122_314_F01     1   0.000     0.9937 1.00 0.00
#> 1772122_310_C09     1   0.000     0.9937 1.00 0.00
#> 1772122_312_H06     1   0.000     0.9937 1.00 0.00
#> 1772122_312_B09     1   0.000     0.9937 1.00 0.00
#> 1772122_314_H10     1   0.000     0.9937 1.00 0.00
#> 1772122_310_F10     1   0.000     0.9937 1.00 0.00
#> 1772122_312_C11     1   0.000     0.9937 1.00 0.00
#> 1772122_310_G03     1   0.000     0.9937 1.00 0.00
#> 1772122_312_G07     1   0.000     0.9937 1.00 0.00
#> 1772122_310_E08     1   0.000     0.9937 1.00 0.00
#> 1772122_311_F04     1   0.000     0.9937 1.00 0.00
#> 1772122_311_C03     1   0.000     0.9937 1.00 0.00
#> 1772122_311_C10     1   0.000     0.9937 1.00 0.00
#> 1772122_311_C05     1   0.000     0.9937 1.00 0.00
#> 1772122_310_C01     1   0.000     0.9937 1.00 0.00
#> 1772122_310_C05     1   0.000     0.9937 1.00 0.00
#> 1772122_310_D01     1   0.000     0.9937 1.00 0.00
#> 1772122_312_C03     1   0.000     0.9937 1.00 0.00
#> 1772122_314_F02     1   0.000     0.9937 1.00 0.00
#> 1772122_310_D03     1   0.000     0.9937 1.00 0.00
#> 1772122_312_A04     1   0.000     0.9937 1.00 0.00
#> 1772122_310_B02     1   0.000     0.9937 1.00 0.00
#> 1772122_312_H03     1   0.000     0.9937 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_298_F09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_E10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_315_A07     3  0.2537     0.9058 0.08 0.00 0.92
#> 1772122_325_G03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_325_A08     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_263_G11     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_299_A07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_326_H08     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_303_B01     3  0.2959     0.8828 0.10 0.00 0.90
#> 1772122_298_D07     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_298_D11     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_A05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_H06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_A06     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_C05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_H04     1  0.0892     0.9769 0.98 0.00 0.02
#> 1772122_299_G07     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_300_C09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_302_H07     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_298_C02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_300_E12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_H12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_300_H05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_B04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_298_F02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_B01     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_C10     1  0.0892     0.9757 0.98 0.02 0.00
#> 1772122_300_D07     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_E09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_305_A01     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_C10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_D01     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_E12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_F12     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_306_D12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_E07     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_C09     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_G10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_F10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_G09     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_B05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_H08     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_G02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_262_A05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_305_H09     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_F11     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_315_B11     3  0.0892     0.9637 0.02 0.00 0.98
#> 1772122_306_C11     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_D08     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_E07     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_A02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_G12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_D11     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_306_E10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_B05     3  0.1529     0.9457 0.04 0.00 0.96
#> 1772122_205_B05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_306_F04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_A03     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_H02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_H04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_315_C12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_A08     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_F04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_A10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_A10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_G08     3  0.4796     0.7172 0.22 0.00 0.78
#> 1772122_299_D12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_E10     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_F01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_298_C06     3  0.2537     0.9065 0.00 0.08 0.92
#> 1772122_305_A04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_A05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_G04     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_306_B10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_303_C11     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_305_B10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_306_E01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_180_A07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_H01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_G07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_A02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_E08     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_302_E03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_300_B09     1  0.4002     0.8080 0.84 0.00 0.16
#> 1772122_181_C03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_D01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_G08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_G11     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_G12     2  0.0892     0.9734 0.02 0.98 0.00
#> 1772122_298_D06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_H05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_G07     3  0.6244     0.2219 0.00 0.44 0.56
#> 1772122_298_E01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_G03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_D12     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_181_D07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_H02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_181_H05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_F11     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_181_G07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_B06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_G03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_A10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_E07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_C08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_D02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_182_B04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_181_C11     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_H04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_D05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_C12     3  0.0892     0.9637 0.00 0.02 0.98
#> 1772122_302_H06     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_298_E12     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_298_B08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_B10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_180_G12     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B12     1  0.2066     0.9315 0.94 0.06 0.00
#> 1772122_298_F06     1  0.2066     0.9316 0.94 0.06 0.00
#> 1772122_300_C04     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_302_H01     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_302_D02     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_180_A03     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_180_F04     2  0.4002     0.8043 0.00 0.84 0.16
#> 1772122_299_E12     2  0.0892     0.9735 0.02 0.98 0.00
#> 1772122_298_A05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_C03     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_300_G10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_B04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_302_H10     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_302_H05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_298_G08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_A10     3  0.4002     0.8100 0.00 0.16 0.84
#> 1772122_298_D08     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_299_B01     3  0.5016     0.6883 0.00 0.24 0.76
#> 1772122_299_F05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_E06     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_180_G10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_A06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_B06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_D03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_F06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_D06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_D02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_H08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_B09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_C10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_H03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_C06     3  0.1529     0.9458 0.00 0.04 0.96
#> 1772122_300_C05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_E05     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_300_E08     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_300_A04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_300_B02     2  0.6302     0.0525 0.00 0.52 0.48
#> 1772122_300_F08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_E03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_A04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_B11     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_180_H02     3  0.0892     0.9637 0.00 0.02 0.98
#> 1772122_180_D06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_302_B02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_E04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_C04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_D03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_A08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_A12     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_C12     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_B01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_H07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_C04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_D10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_B10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_F03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_C06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_G06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_D05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_E05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_E06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_H01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_H09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_H03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_B11     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_C01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_C08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_E07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_H02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_D09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_H07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_D01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_302_H12     3  0.0000     0.9802 0.00 0.00 1.00
#> 1772122_180_E12     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B05     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_H12     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_F10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_F08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_E01     3  0.2066     0.9268 0.00 0.06 0.94
#> 1772122_181_B01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_182_D06     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F11     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B06     1  0.0892     0.9754 0.98 0.02 0.00
#> 1772122_180_D09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_298_C08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_D03     2  0.2066     0.9311 0.06 0.94 0.00
#> 1772122_299_H02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_B08     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_E04     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_D02     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_E07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_F11     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_F01     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_180_E03     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_A07     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_299_A09     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_181_F10     2  0.0000     0.9934 0.00 1.00 0.00
#> 1772122_262_E07     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_206_E06     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_F09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_205_H01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_206_B01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_204_E10     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_204_H07     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_B01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_204_G03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_206_G09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_204_E09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_F05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_204_E02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_G03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_D04     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_205_B02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_325_B02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_263_E07     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_325_A10     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_206_D03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_263_D01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_A06     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_326_B12     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_263_F04     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_262_B02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_325_B03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_326_A01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_325_E05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_326_F05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_204_H03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_263_H03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_326_F09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_326_H02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_206_H08     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_263_G08     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_325_E04     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_E01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_314_C07     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_E03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_D01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_311_F12     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_E12     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_D08     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_314_F01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_C09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_H06     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_B09     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_314_H10     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_F10     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_C11     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_G03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_G07     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_E08     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_311_F04     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_311_C03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_311_C10     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_311_C05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_C01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_C05     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_D01     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_C03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_314_F02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_D03     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_A04     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_310_B02     1  0.0000     0.9959 1.00 0.00 0.00
#> 1772122_312_H03     1  0.0000     0.9959 1.00 0.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_298_F09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_E10     2  0.1211     0.9267 0.00 0.96 0.00 0.04
#> 1772122_315_A07     3  0.3198     0.8421 0.08 0.00 0.88 0.04
#> 1772122_325_G03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_325_A08     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_263_G11     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_299_A07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_326_H08     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_303_B01     1  0.5106     0.6159 0.72 0.00 0.24 0.04
#> 1772122_298_D07     3  0.0707     0.9245 0.00 0.00 0.98 0.02
#> 1772122_298_D11     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_299_A05     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_299_H06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_A06     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_299_C05     3  0.3400     0.7588 0.18 0.00 0.82 0.00
#> 1772122_299_H04     1  0.0707     0.8861 0.98 0.00 0.02 0.00
#> 1772122_299_G07     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_300_C09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_302_H07     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_298_C02     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_300_E12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_299_H12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_300_H05     3  0.3400     0.7641 0.00 0.18 0.82 0.00
#> 1772122_299_B04     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_298_F02     3  0.1211     0.9079 0.00 0.04 0.96 0.00
#> 1772122_315_B01     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_299_C10     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_300_D07     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_E09     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_305_A01     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_C10     3  0.4977     0.1149 0.46 0.00 0.54 0.00
#> 1772122_303_D01     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_E12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_303_F12     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_306_D12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_303_E07     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_C09     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_G10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_315_F10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_G09     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_315_B05     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_H08     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_G02     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_262_A05     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_305_H09     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_F11     4  0.4134     0.9195 0.26 0.00 0.00 0.74
#> 1772122_315_B11     3  0.4855     0.3085 0.40 0.00 0.60 0.00
#> 1772122_306_C11     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_315_D08     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_E07     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_A02     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_315_G12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_D11     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_306_E10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_B05     1  0.4624     0.4900 0.66 0.00 0.34 0.00
#> 1772122_205_B05     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_306_F04     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_315_A03     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_H02     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_H04     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_315_C12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_303_A08     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_303_F04     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_303_A10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_A10     3  0.2921     0.8066 0.14 0.00 0.86 0.00
#> 1772122_303_G08     1  0.4994     0.0871 0.52 0.00 0.48 0.00
#> 1772122_299_D12     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_E10     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_F01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_298_C06     3  0.2345     0.8529 0.00 0.10 0.90 0.00
#> 1772122_305_A04     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_A05     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_G04     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_306_B10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_303_C11     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_305_B10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_306_E01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_180_A07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_H01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_G07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_A02     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_E08     3  0.0707     0.9236 0.00 0.02 0.98 0.00
#> 1772122_302_E03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_300_B09     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_181_C03     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_181_D01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_G08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_G11     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_G12     1  0.7427     0.2940 0.50 0.30 0.00 0.20
#> 1772122_298_D06     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_299_H05     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_180_B03     2  0.3172     0.8826 0.00 0.84 0.00 0.16
#> 1772122_300_G07     3  0.6323     0.1649 0.00 0.44 0.50 0.06
#> 1772122_298_E01     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_298_G03     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_181_D12     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_181_D07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_H02     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_181_H05     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_F11     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_181_G07     2  0.2647     0.9002 0.00 0.88 0.00 0.12
#> 1772122_182_B06     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_299_G03     2  0.4284     0.8453 0.02 0.78 0.00 0.20
#> 1772122_298_A10     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_298_E07     2  0.2011     0.9148 0.00 0.92 0.00 0.08
#> 1772122_300_C08     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_298_D02     3  0.0707     0.9259 0.00 0.00 0.98 0.02
#> 1772122_182_B04     3  0.1211     0.9079 0.00 0.04 0.96 0.00
#> 1772122_181_C11     2  0.5486     0.7836 0.08 0.72 0.00 0.20
#> 1772122_181_H04     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_180_D05     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_299_C12     3  0.4894     0.7554 0.10 0.00 0.78 0.12
#> 1772122_302_H06     3  0.5106     0.6271 0.24 0.00 0.72 0.04
#> 1772122_298_E12     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_298_B08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_B10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_180_G12     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_180_B12     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_298_F06     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_300_C04     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_302_H01     3  0.0707     0.9259 0.00 0.00 0.98 0.02
#> 1772122_302_D02     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_180_A03     1  0.5173     0.5137 0.66 0.00 0.32 0.02
#> 1772122_180_F04     2  0.5151     0.8008 0.00 0.76 0.10 0.14
#> 1772122_299_E12     1  0.7135     0.4080 0.56 0.24 0.00 0.20
#> 1772122_298_A05     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_181_F08     2  0.3172     0.8829 0.00 0.84 0.00 0.16
#> 1772122_298_C03     3  0.0707     0.9259 0.00 0.00 0.98 0.02
#> 1772122_300_G10     2  0.2345     0.9075 0.00 0.90 0.00 0.10
#> 1772122_298_B04     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_302_H10     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_302_H05     3  0.0707     0.9259 0.00 0.00 0.98 0.02
#> 1772122_298_G08     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_180_A10     3  0.5151     0.7147 0.00 0.10 0.76 0.14
#> 1772122_298_D08     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_299_B01     3  0.4406     0.6013 0.00 0.30 0.70 0.00
#> 1772122_299_F05     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_E06     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_180_G10     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_181_A06     2  0.2647     0.8999 0.00 0.88 0.00 0.12
#> 1772122_181_B06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_182_D03     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_F06     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_300_D06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_D02     2  0.2345     0.9075 0.00 0.90 0.00 0.10
#> 1772122_299_H08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_B09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_C10     2  0.2647     0.8998 0.00 0.88 0.00 0.12
#> 1772122_298_H03     2  0.3172     0.8826 0.00 0.84 0.00 0.16
#> 1772122_299_C06     3  0.3610     0.7402 0.00 0.20 0.80 0.00
#> 1772122_300_C05     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_E05     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_300_E08     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_300_A04     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_300_B02     3  0.4994     0.1818 0.00 0.48 0.52 0.00
#> 1772122_300_F08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_182_E03     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_A04     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_B11     3  0.0000     0.9371 0.00 0.00 1.00 0.00
#> 1772122_180_H02     3  0.4292     0.7882 0.00 0.08 0.82 0.10
#> 1772122_180_D06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_302_B02     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_E04     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_C04     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_D03     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_180_A08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_A12     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_180_C12     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_182_B01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_H07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_C04     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_180_D10     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_B10     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_182_F03     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_180_B07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_C06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_G06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_F06     2  0.3172     0.8826 0.00 0.84 0.00 0.16
#> 1772122_181_D05     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_E05     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_182_E06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_182_H01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_H09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_H03     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_B11     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_180_C01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_C08     2  0.3610     0.8609 0.00 0.80 0.00 0.20
#> 1772122_182_E07     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_181_H02     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_D09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_H07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_182_D01     2  0.3400     0.8727 0.00 0.82 0.00 0.18
#> 1772122_302_H12     3  0.1913     0.8983 0.00 0.02 0.94 0.04
#> 1772122_180_E12     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_B05     2  0.5784     0.7582 0.10 0.70 0.00 0.20
#> 1772122_181_H12     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_F10     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_F08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_F03     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_E01     3  0.2011     0.8709 0.00 0.08 0.92 0.00
#> 1772122_181_B01     2  0.2345     0.9074 0.00 0.90 0.00 0.10
#> 1772122_181_F02     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_182_D06     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_F11     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_B06     1  0.3610     0.7365 0.80 0.00 0.00 0.20
#> 1772122_180_D09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_298_C08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_D03     1  0.4755     0.6933 0.76 0.04 0.00 0.20
#> 1772122_299_H02     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_B01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_B08     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_E04     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_D02     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_F07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_E07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_F11     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_F01     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_180_E03     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_A07     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_299_A09     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_181_F10     2  0.0000     0.9387 0.00 1.00 0.00 0.00
#> 1772122_262_E07     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_206_E06     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_F09     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_205_H01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_206_B01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_204_E10     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_204_H07     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_B01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_204_G03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_206_G09     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_204_E09     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_F05     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_204_E02     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_G03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_D04     1  0.1637     0.8445 0.94 0.00 0.06 0.00
#> 1772122_205_B02     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_325_B02     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_263_E07     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_325_A10     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_206_D03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_263_D01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_A06     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_326_B12     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_263_F04     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_262_B02     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_325_B03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_326_A01     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_325_E05     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_326_F05     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_204_H03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_263_H03     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_326_F09     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_326_H02     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_206_H08     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_263_G08     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_325_E04     1  0.0000     0.9052 1.00 0.00 0.00 0.00
#> 1772122_312_E01     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_314_C07     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_E03     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_D01     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_311_F12     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_E12     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_D08     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_314_F01     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_C09     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_H06     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_B09     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_314_H10     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_F10     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_C11     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_G03     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_G07     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_E08     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_311_F04     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_311_C03     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_311_C10     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_311_C05     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_C01     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_C05     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_D01     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_C03     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_314_F02     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_D03     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_A04     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_310_B02     4  0.3610     0.9975 0.20 0.00 0.00 0.80
#> 1772122_312_H03     4  0.3610     0.9975 0.20 0.00 0.00 0.80

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-013-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-013-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-013-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-013-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-013-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-013-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-013-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-013-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-013-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-013-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-013-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-013-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-013-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-013-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-013-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-013-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-013-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      284           2.58e-36           4.52e-42 2
#> ATC:skmeans      285           9.04e-56           1.18e-62 3
#> ATC:skmeans      279           7.06e-91          1.34e-107 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0131

Parent node: Node013. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0131"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 6653 rows and 90 columns.
#>   Top rows (665) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 4.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0131-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0131-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.999       1.000          0.464 0.537   0.537
#> 3 3 0.733           0.821       0.900          0.406 0.799   0.625
#> 4 4 0.936           0.905       0.945          0.115 0.915   0.756

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 4
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_325_G03     1   0.000      1.000 1.00 0.00
#> 1772122_325_A08     1   0.000      1.000 1.00 0.00
#> 1772122_263_G11     1   0.000      1.000 1.00 0.00
#> 1772122_326_H08     1   0.000      1.000 1.00 0.00
#> 1772122_299_H04     1   0.000      1.000 1.00 0.00
#> 1772122_299_C10     1   0.000      1.000 1.00 0.00
#> 1772122_306_E09     1   0.000      1.000 1.00 0.00
#> 1772122_303_F12     1   0.000      1.000 1.00 0.00
#> 1772122_262_A05     1   0.000      1.000 1.00 0.00
#> 1772122_306_F11     2   0.000      0.999 0.00 1.00
#> 1772122_306_D11     1   0.000      1.000 1.00 0.00
#> 1772122_205_B05     1   0.000      1.000 1.00 0.00
#> 1772122_305_E10     1   0.000      1.000 1.00 0.00
#> 1772122_262_F01     1   0.000      1.000 1.00 0.00
#> 1772122_305_G04     1   0.000      1.000 1.00 0.00
#> 1772122_306_E01     1   0.000      1.000 1.00 0.00
#> 1772122_302_E03     1   0.000      1.000 1.00 0.00
#> 1772122_300_B09     1   0.000      1.000 1.00 0.00
#> 1772122_181_D12     1   0.000      1.000 1.00 0.00
#> 1772122_298_F11     1   0.000      1.000 1.00 0.00
#> 1772122_298_E12     1   0.000      1.000 1.00 0.00
#> 1772122_180_B12     1   0.000      1.000 1.00 0.00
#> 1772122_298_F06     1   0.000      1.000 1.00 0.00
#> 1772122_180_B06     1   0.000      1.000 1.00 0.00
#> 1772122_262_E07     2   0.242      0.958 0.04 0.96
#> 1772122_206_E06     1   0.000      1.000 1.00 0.00
#> 1772122_262_F09     1   0.000      1.000 1.00 0.00
#> 1772122_205_H01     1   0.000      1.000 1.00 0.00
#> 1772122_206_B01     1   0.000      1.000 1.00 0.00
#> 1772122_204_E10     1   0.000      1.000 1.00 0.00
#> 1772122_204_H07     1   0.000      1.000 1.00 0.00
#> 1772122_262_B01     1   0.000      1.000 1.00 0.00
#> 1772122_204_G03     1   0.000      1.000 1.00 0.00
#> 1772122_206_G09     1   0.000      1.000 1.00 0.00
#> 1772122_204_E09     1   0.000      1.000 1.00 0.00
#> 1772122_262_F05     1   0.000      1.000 1.00 0.00
#> 1772122_204_E02     1   0.000      1.000 1.00 0.00
#> 1772122_262_G03     1   0.000      1.000 1.00 0.00
#> 1772122_262_D04     1   0.000      1.000 1.00 0.00
#> 1772122_205_B02     1   0.000      1.000 1.00 0.00
#> 1772122_325_B02     1   0.000      1.000 1.00 0.00
#> 1772122_263_E07     1   0.000      1.000 1.00 0.00
#> 1772122_325_A10     1   0.000      1.000 1.00 0.00
#> 1772122_206_D03     1   0.000      1.000 1.00 0.00
#> 1772122_263_D01     1   0.000      1.000 1.00 0.00
#> 1772122_262_A06     1   0.000      1.000 1.00 0.00
#> 1772122_326_B12     1   0.000      1.000 1.00 0.00
#> 1772122_263_F04     1   0.000      1.000 1.00 0.00
#> 1772122_262_B02     1   0.000      1.000 1.00 0.00
#> 1772122_325_B03     1   0.000      1.000 1.00 0.00
#> 1772122_326_A01     1   0.000      1.000 1.00 0.00
#> 1772122_325_E05     1   0.000      1.000 1.00 0.00
#> 1772122_326_F05     1   0.000      1.000 1.00 0.00
#> 1772122_204_H03     1   0.000      1.000 1.00 0.00
#> 1772122_263_H03     1   0.000      1.000 1.00 0.00
#> 1772122_326_F09     1   0.000      1.000 1.00 0.00
#> 1772122_326_H02     1   0.000      1.000 1.00 0.00
#> 1772122_206_H08     1   0.000      1.000 1.00 0.00
#> 1772122_263_G08     1   0.000      1.000 1.00 0.00
#> 1772122_325_E04     1   0.000      1.000 1.00 0.00
#> 1772122_312_E01     2   0.000      0.999 0.00 1.00
#> 1772122_314_C07     2   0.000      0.999 0.00 1.00
#> 1772122_312_E03     2   0.000      0.999 0.00 1.00
#> 1772122_312_D01     2   0.000      0.999 0.00 1.00
#> 1772122_311_F12     2   0.000      0.999 0.00 1.00
#> 1772122_310_E12     2   0.000      0.999 0.00 1.00
#> 1772122_310_D08     2   0.000      0.999 0.00 1.00
#> 1772122_314_F01     2   0.000      0.999 0.00 1.00
#> 1772122_310_C09     2   0.000      0.999 0.00 1.00
#> 1772122_312_H06     2   0.000      0.999 0.00 1.00
#> 1772122_312_B09     2   0.000      0.999 0.00 1.00
#> 1772122_314_H10     2   0.000      0.999 0.00 1.00
#> 1772122_310_F10     2   0.000      0.999 0.00 1.00
#> 1772122_312_C11     2   0.000      0.999 0.00 1.00
#> 1772122_310_G03     2   0.000      0.999 0.00 1.00
#> 1772122_312_G07     2   0.000      0.999 0.00 1.00
#> 1772122_310_E08     2   0.000      0.999 0.00 1.00
#> 1772122_311_F04     2   0.000      0.999 0.00 1.00
#> 1772122_311_C03     2   0.000      0.999 0.00 1.00
#> 1772122_311_C10     2   0.000      0.999 0.00 1.00
#> 1772122_311_C05     2   0.000      0.999 0.00 1.00
#> 1772122_310_C01     2   0.000      0.999 0.00 1.00
#> 1772122_310_C05     2   0.000      0.999 0.00 1.00
#> 1772122_310_D01     2   0.000      0.999 0.00 1.00
#> 1772122_312_C03     2   0.000      0.999 0.00 1.00
#> 1772122_314_F02     2   0.000      0.999 0.00 1.00
#> 1772122_310_D03     2   0.000      0.999 0.00 1.00
#> 1772122_312_A04     2   0.000      0.999 0.00 1.00
#> 1772122_310_B02     2   0.000      0.999 0.00 1.00
#> 1772122_312_H03     2   0.000      0.999 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_325_G03     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_325_A08     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_263_G11     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_326_H08     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_299_H04     3  0.0892      0.678 0.02 0.00 0.98
#> 1772122_299_C10     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_306_E09     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_303_F12     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_262_A05     1  0.2537      0.815 0.92 0.00 0.08
#> 1772122_306_F11     2  0.4002      0.823 0.00 0.84 0.16
#> 1772122_306_D11     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_205_B05     1  0.3340      0.778 0.88 0.00 0.12
#> 1772122_305_E10     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_262_F01     1  0.2066      0.836 0.94 0.00 0.06
#> 1772122_305_G04     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_306_E01     3  0.2066      0.697 0.06 0.00 0.94
#> 1772122_302_E03     3  0.4796      0.756 0.22 0.00 0.78
#> 1772122_300_B09     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_181_D12     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_298_F11     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_298_E12     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_180_B12     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_298_F06     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_180_B06     3  0.5560      0.779 0.30 0.00 0.70
#> 1772122_262_E07     2  0.6849      0.465 0.02 0.60 0.38
#> 1772122_206_E06     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_262_F09     1  0.6302      0.230 0.52 0.00 0.48
#> 1772122_205_H01     3  0.2959      0.631 0.10 0.00 0.90
#> 1772122_206_B01     3  0.0000      0.665 0.00 0.00 1.00
#> 1772122_204_E10     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_204_H07     1  0.1529      0.859 0.96 0.00 0.04
#> 1772122_262_B01     1  0.5016      0.648 0.76 0.00 0.24
#> 1772122_204_G03     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_206_G09     3  0.5835      0.277 0.34 0.00 0.66
#> 1772122_204_E09     3  0.4796      0.513 0.22 0.00 0.78
#> 1772122_262_F05     1  0.6126      0.390 0.60 0.00 0.40
#> 1772122_204_E02     1  0.6244      0.324 0.56 0.00 0.44
#> 1772122_262_G03     3  0.6309     -0.222 0.50 0.00 0.50
#> 1772122_262_D04     3  0.0000      0.665 0.00 0.00 1.00
#> 1772122_205_B02     1  0.5397      0.580 0.72 0.00 0.28
#> 1772122_325_B02     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_263_E07     1  0.0892      0.874 0.98 0.00 0.02
#> 1772122_325_A10     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_206_D03     1  0.3686      0.727 0.86 0.00 0.14
#> 1772122_263_D01     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_262_A06     1  0.4796      0.557 0.78 0.00 0.22
#> 1772122_326_B12     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_263_F04     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_262_B02     1  0.4291      0.713 0.82 0.00 0.18
#> 1772122_325_B03     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_326_A01     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_325_E05     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_326_F05     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_204_H03     1  0.3686      0.781 0.86 0.00 0.14
#> 1772122_263_H03     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_326_F09     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_326_H02     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_206_H08     3  0.4555      0.538 0.20 0.00 0.80
#> 1772122_263_G08     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_325_E04     1  0.0000      0.888 1.00 0.00 0.00
#> 1772122_312_E01     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_314_C07     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_E03     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_D01     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_311_F12     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_E12     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_D08     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_314_F01     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_C09     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_H06     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_B09     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_314_H10     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_F10     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_C11     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_G03     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_G07     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_E08     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_311_F04     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_311_C03     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_311_C10     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_311_C05     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_C01     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_C05     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_D01     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_C03     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_314_F02     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_D03     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_A04     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_310_B02     2  0.0000      0.983 0.00 1.00 0.00
#> 1772122_312_H03     2  0.0000      0.983 0.00 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_325_G03     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_325_A08     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_263_G11     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_326_H08     1  0.1411      0.897 0.96 0.00 0.02 0.02
#> 1772122_299_H04     3  0.1637      0.925 0.00 0.00 0.94 0.06
#> 1772122_299_C10     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_306_E09     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_303_F12     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_262_A05     1  0.4790      0.402 0.62 0.00 0.38 0.00
#> 1772122_306_F11     2  0.5106      0.625 0.00 0.72 0.04 0.24
#> 1772122_306_D11     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_205_B05     1  0.3821      0.805 0.84 0.00 0.12 0.04
#> 1772122_305_E10     3  0.1913      0.968 0.04 0.00 0.94 0.02
#> 1772122_262_F01     1  0.4277      0.620 0.72 0.00 0.28 0.00
#> 1772122_305_G04     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_306_E01     3  0.1637      0.925 0.00 0.00 0.94 0.06
#> 1772122_302_E03     3  0.2411      0.956 0.04 0.00 0.92 0.04
#> 1772122_300_B09     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_181_D12     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_298_F11     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_298_E12     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_180_B12     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_298_F06     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_180_B06     3  0.1637      0.984 0.06 0.00 0.94 0.00
#> 1772122_262_E07     4  0.1211      0.876 0.00 0.04 0.00 0.96
#> 1772122_206_E06     1  0.0707      0.904 0.98 0.00 0.00 0.02
#> 1772122_262_F09     4  0.2830      0.872 0.04 0.00 0.06 0.90
#> 1772122_205_H01     4  0.0707      0.897 0.00 0.00 0.02 0.98
#> 1772122_206_B01     4  0.1211      0.888 0.00 0.00 0.04 0.96
#> 1772122_204_E10     1  0.0707      0.904 0.98 0.00 0.00 0.02
#> 1772122_204_H07     1  0.3611      0.819 0.86 0.00 0.06 0.08
#> 1772122_262_B01     4  0.6382      0.414 0.34 0.00 0.08 0.58
#> 1772122_204_G03     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_206_G09     4  0.1411      0.895 0.02 0.00 0.02 0.96
#> 1772122_204_E09     4  0.1411      0.893 0.02 0.00 0.02 0.96
#> 1772122_262_F05     4  0.1211      0.889 0.04 0.00 0.00 0.96
#> 1772122_204_E02     4  0.1637      0.891 0.00 0.00 0.06 0.94
#> 1772122_262_G03     4  0.0707      0.897 0.00 0.00 0.02 0.98
#> 1772122_262_D04     4  0.0707      0.897 0.00 0.00 0.02 0.98
#> 1772122_205_B02     4  0.6453      0.385 0.36 0.00 0.08 0.56
#> 1772122_325_B02     1  0.0707      0.903 0.98 0.00 0.02 0.00
#> 1772122_263_E07     1  0.1637      0.875 0.94 0.00 0.06 0.00
#> 1772122_325_A10     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_206_D03     1  0.3400      0.765 0.82 0.00 0.18 0.00
#> 1772122_263_D01     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_262_A06     1  0.4948      0.332 0.56 0.00 0.44 0.00
#> 1772122_326_B12     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_263_F04     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_262_B02     1  0.4227      0.770 0.82 0.00 0.06 0.12
#> 1772122_325_B03     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_326_A01     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_325_E05     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_326_F05     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_204_H03     1  0.6110      0.612 0.66 0.00 0.24 0.10
#> 1772122_263_H03     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_326_F09     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_326_H02     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_206_H08     4  0.0707      0.897 0.00 0.00 0.02 0.98
#> 1772122_263_G08     1  0.1637      0.875 0.94 0.00 0.06 0.00
#> 1772122_325_E04     1  0.0000      0.914 1.00 0.00 0.00 0.00
#> 1772122_312_E01     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_314_C07     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_E03     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_D01     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_311_F12     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_E12     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_D08     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_314_F01     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_C09     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_H06     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_B09     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_314_H10     2  0.0707      0.976 0.00 0.98 0.00 0.02
#> 1772122_310_F10     2  0.0707      0.976 0.00 0.98 0.00 0.02
#> 1772122_312_C11     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_G03     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_G07     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_E08     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_311_F04     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_311_C03     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_311_C10     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_311_C05     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_C01     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_C05     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_310_D01     2  0.0707      0.976 0.00 0.98 0.00 0.02
#> 1772122_312_C03     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_314_F02     2  0.0707      0.976 0.00 0.98 0.00 0.02
#> 1772122_310_D03     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_A04     2  0.0707      0.976 0.00 0.98 0.00 0.02
#> 1772122_310_B02     2  0.0000      0.988 0.00 1.00 0.00 0.00
#> 1772122_312_H03     2  0.0000      0.988 0.00 1.00 0.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0131-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0131-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0131-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0131-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0131-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0131-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0131-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0131-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0131-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0131-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0131-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0131-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0131-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0131-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0131-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0131-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0131-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans       90           4.08e-12           1.14e-17 2
#> ATC:skmeans       84           7.75e-16           2.24e-26 3
#> ATC:skmeans       86           2.36e-23           6.73e-31 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0132

Parent node: Node013. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0132"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 8434 rows and 115 columns.
#>   Top rows (843) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0132-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0132-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.860           0.944       0.975          0.486 0.516   0.516
#> 3 3 0.936           0.909       0.965          0.337 0.688   0.468
#> 4 4 0.887           0.894       0.945          0.103 0.908   0.746

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_298_F09     2   0.469      0.879 0.10 0.90
#> 1772122_300_E10     1   0.000      0.974 1.00 0.00
#> 1772122_299_A07     2   0.000      0.974 0.00 1.00
#> 1772122_299_H06     2   0.141      0.956 0.02 0.98
#> 1772122_300_C09     2   0.000      0.974 0.00 1.00
#> 1772122_180_A07     2   0.000      0.974 0.00 1.00
#> 1772122_180_H01     2   0.943      0.449 0.36 0.64
#> 1772122_298_G07     2   0.000      0.974 0.00 1.00
#> 1772122_299_A02     2   0.634      0.808 0.16 0.84
#> 1772122_181_C03     1   0.000      0.974 1.00 0.00
#> 1772122_181_D01     1   0.000      0.974 1.00 0.00
#> 1772122_180_G08     2   0.000      0.974 0.00 1.00
#> 1772122_180_G11     2   0.000      0.974 0.00 1.00
#> 1772122_300_G12     1   0.000      0.974 1.00 0.00
#> 1772122_298_D06     1   0.000      0.974 1.00 0.00
#> 1772122_299_H05     1   0.000      0.974 1.00 0.00
#> 1772122_180_B03     1   0.000      0.974 1.00 0.00
#> 1772122_298_E01     1   0.000      0.974 1.00 0.00
#> 1772122_298_G03     1   0.000      0.974 1.00 0.00
#> 1772122_181_D07     1   0.000      0.974 1.00 0.00
#> 1772122_181_H05     2   0.000      0.974 0.00 1.00
#> 1772122_181_G07     1   0.000      0.974 1.00 0.00
#> 1772122_182_B06     1   0.000      0.974 1.00 0.00
#> 1772122_299_G03     1   0.000      0.974 1.00 0.00
#> 1772122_298_A10     1   0.000      0.974 1.00 0.00
#> 1772122_298_E07     1   0.000      0.974 1.00 0.00
#> 1772122_300_C08     1   0.000      0.974 1.00 0.00
#> 1772122_181_C11     1   0.000      0.974 1.00 0.00
#> 1772122_181_H04     1   0.000      0.974 1.00 0.00
#> 1772122_180_D05     1   0.000      0.974 1.00 0.00
#> 1772122_298_B08     1   0.000      0.974 1.00 0.00
#> 1772122_180_G12     1   0.000      0.974 1.00 0.00
#> 1772122_180_F04     1   0.760      0.720 0.78 0.22
#> 1772122_299_E12     1   0.000      0.974 1.00 0.00
#> 1772122_298_A05     1   0.000      0.974 1.00 0.00
#> 1772122_181_F08     1   0.000      0.974 1.00 0.00
#> 1772122_300_G10     1   0.000      0.974 1.00 0.00
#> 1772122_298_B04     1   0.000      0.974 1.00 0.00
#> 1772122_298_G08     1   0.000      0.974 1.00 0.00
#> 1772122_299_F05     2   0.000      0.974 0.00 1.00
#> 1772122_180_G10     1   0.000      0.974 1.00 0.00
#> 1772122_181_A06     1   0.000      0.974 1.00 0.00
#> 1772122_181_B06     1   0.242      0.941 0.96 0.04
#> 1772122_182_D03     2   0.000      0.974 0.00 1.00
#> 1772122_300_F06     1   0.000      0.974 1.00 0.00
#> 1772122_300_D06     1   0.000      0.974 1.00 0.00
#> 1772122_299_D02     1   0.000      0.974 1.00 0.00
#> 1772122_299_H08     1   0.000      0.974 1.00 0.00
#> 1772122_299_B09     2   0.000      0.974 0.00 1.00
#> 1772122_300_C10     1   0.000      0.974 1.00 0.00
#> 1772122_298_H03     1   0.000      0.974 1.00 0.00
#> 1772122_300_C05     2   0.000      0.974 0.00 1.00
#> 1772122_300_A04     1   0.000      0.974 1.00 0.00
#> 1772122_300_B02     2   0.000      0.974 0.00 1.00
#> 1772122_300_F08     1   0.529      0.866 0.88 0.12
#> 1772122_182_E03     1   0.000      0.974 1.00 0.00
#> 1772122_298_A04     2   0.000      0.974 0.00 1.00
#> 1772122_180_D06     2   0.000      0.974 0.00 1.00
#> 1772122_302_B02     2   0.000      0.974 0.00 1.00
#> 1772122_298_E04     2   0.584      0.830 0.14 0.86
#> 1772122_180_C04     2   0.000      0.974 0.00 1.00
#> 1772122_298_D03     1   0.000      0.974 1.00 0.00
#> 1772122_180_A08     2   0.000      0.974 0.00 1.00
#> 1772122_181_A12     1   0.000      0.974 1.00 0.00
#> 1772122_180_C12     2   0.000      0.974 0.00 1.00
#> 1772122_182_B01     2   0.000      0.974 0.00 1.00
#> 1772122_180_H07     2   0.000      0.974 0.00 1.00
#> 1772122_181_C04     1   0.000      0.974 1.00 0.00
#> 1772122_180_D10     2   0.000      0.974 0.00 1.00
#> 1772122_181_B10     1   0.000      0.974 1.00 0.00
#> 1772122_182_F03     1   0.000      0.974 1.00 0.00
#> 1772122_180_B07     2   0.000      0.974 0.00 1.00
#> 1772122_181_C06     1   0.000      0.974 1.00 0.00
#> 1772122_181_G06     2   0.000      0.974 0.00 1.00
#> 1772122_181_F06     1   0.000      0.974 1.00 0.00
#> 1772122_181_D05     1   0.000      0.974 1.00 0.00
#> 1772122_299_E05     1   0.000      0.974 1.00 0.00
#> 1772122_182_E06     2   0.000      0.974 0.00 1.00
#> 1772122_182_H01     1   0.000      0.974 1.00 0.00
#> 1772122_299_H09     1   0.000      0.974 1.00 0.00
#> 1772122_299_H03     2   0.000      0.974 0.00 1.00
#> 1772122_181_B11     1   0.000      0.974 1.00 0.00
#> 1772122_180_C01     2   0.000      0.974 0.00 1.00
#> 1772122_299_C08     1   0.000      0.974 1.00 0.00
#> 1772122_182_E07     1   0.000      0.974 1.00 0.00
#> 1772122_181_H02     2   0.000      0.974 0.00 1.00
#> 1772122_181_D09     2   0.000      0.974 0.00 1.00
#> 1772122_181_H07     1   0.925      0.506 0.66 0.34
#> 1772122_182_D01     1   0.000      0.974 1.00 0.00
#> 1772122_180_E12     2   0.000      0.974 0.00 1.00
#> 1772122_180_B05     1   0.000      0.974 1.00 0.00
#> 1772122_181_H12     1   0.469      0.885 0.90 0.10
#> 1772122_180_F10     2   0.000      0.974 0.00 1.00
#> 1772122_180_F08     1   0.000      0.974 1.00 0.00
#> 1772122_181_F03     1   0.855      0.632 0.72 0.28
#> 1772122_181_B01     1   0.000      0.974 1.00 0.00
#> 1772122_181_F02     2   0.943      0.424 0.36 0.64
#> 1772122_182_D06     1   0.141      0.958 0.98 0.02
#> 1772122_181_F11     1   0.827      0.667 0.74 0.26
#> 1772122_180_D09     1   0.000      0.974 1.00 0.00
#> 1772122_298_C08     2   0.000      0.974 0.00 1.00
#> 1772122_180_D03     1   0.000      0.974 1.00 0.00
#> 1772122_299_H02     2   0.000      0.974 0.00 1.00
#> 1772122_180_B01     2   0.000      0.974 0.00 1.00
#> 1772122_180_B08     2   0.000      0.974 0.00 1.00
#> 1772122_181_E04     2   0.000      0.974 0.00 1.00
#> 1772122_181_D02     1   0.469      0.885 0.90 0.10
#> 1772122_181_F07     1   0.529      0.863 0.88 0.12
#> 1772122_181_E07     2   0.000      0.974 0.00 1.00
#> 1772122_180_F11     2   0.000      0.974 0.00 1.00
#> 1772122_180_F01     1   0.529      0.864 0.88 0.12
#> 1772122_180_E03     2   0.000      0.974 0.00 1.00
#> 1772122_181_A07     2   0.000      0.974 0.00 1.00
#> 1772122_299_A09     2   0.000      0.974 0.00 1.00
#> 1772122_181_F10     1   0.000      0.974 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_298_F09     1  0.6045     0.3849 0.62 0.38 0.00
#> 1772122_300_E10     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_A07     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_299_H06     3  0.8350     0.4696 0.12 0.28 0.60
#> 1772122_300_C09     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_A07     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_H01     3  0.7029     0.2468 0.44 0.02 0.54
#> 1772122_298_G07     3  0.1529     0.8875 0.00 0.04 0.96
#> 1772122_299_A02     1  0.5159     0.7850 0.82 0.14 0.04
#> 1772122_181_C03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_D01     3  0.1529     0.8891 0.04 0.00 0.96
#> 1772122_180_G08     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_G11     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_300_G12     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_D06     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_H05     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_B03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_E01     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_G03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_D07     1  0.0892     0.9580 0.98 0.00 0.02
#> 1772122_181_H05     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_G07     1  0.0892     0.9575 0.98 0.00 0.02
#> 1772122_182_B06     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_G03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_A10     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_E07     1  0.6280     0.0576 0.54 0.00 0.46
#> 1772122_300_C08     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_C11     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_H04     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_D05     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_B08     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_G12     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_F04     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_299_E12     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_A05     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_F08     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_300_G10     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_B04     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_G08     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_F05     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_G10     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_A06     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_B06     3  0.6126     0.3667 0.40 0.00 0.60
#> 1772122_182_D03     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_300_F06     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_300_D06     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_D02     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_H08     3  0.6280     0.2098 0.46 0.00 0.54
#> 1772122_299_B09     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_300_C10     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_H03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_300_C05     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_300_A04     2  0.5706     0.5274 0.32 0.68 0.00
#> 1772122_300_B02     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_300_F08     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_182_E03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_A04     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_180_D06     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_302_B02     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_298_E04     2  0.0892     0.9593 0.02 0.98 0.00
#> 1772122_180_C04     2  0.3686     0.8237 0.00 0.86 0.14
#> 1772122_298_D03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_A08     3  0.3686     0.7879 0.00 0.14 0.86
#> 1772122_181_A12     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_C12     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_182_B01     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_180_H07     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_C04     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_D10     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_B10     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_182_F03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_B07     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_C06     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_G06     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_F06     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_D05     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_299_E05     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_182_E06     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_182_H01     3  0.0892     0.9030 0.02 0.00 0.98
#> 1772122_299_H09     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_299_H03     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_B11     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_C01     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_299_C08     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_182_E07     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_H02     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_D09     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_H07     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_182_D01     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_180_E12     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_B05     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_H12     2  0.1529     0.9378 0.04 0.96 0.00
#> 1772122_180_F10     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_F08     3  0.1529     0.8882 0.04 0.00 0.96
#> 1772122_181_F03     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_B01     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_181_F02     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_182_D06     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_F11     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_180_D09     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_298_C08     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_D03     1  0.0000     0.9774 1.00 0.00 0.00
#> 1772122_299_H02     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_180_B01     3  0.0892     0.9024 0.00 0.02 0.98
#> 1772122_180_B08     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_181_E04     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_D02     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_F07     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_E07     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_180_F11     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_180_F01     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_180_E03     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_A07     2  0.0000     0.9793 0.00 1.00 0.00
#> 1772122_299_A09     3  0.0000     0.9158 0.00 0.00 1.00
#> 1772122_181_F10     3  0.6302     0.1343 0.48 0.00 0.52

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_298_F09     4  0.0707      0.878 0.02 0.00 0.00 0.98
#> 1772122_300_E10     1  0.2647      0.861 0.88 0.00 0.00 0.12
#> 1772122_299_A07     2  0.0707      0.948 0.00 0.98 0.00 0.02
#> 1772122_299_H06     4  0.0707      0.878 0.02 0.00 0.00 0.98
#> 1772122_300_C09     4  0.0707      0.871 0.00 0.02 0.00 0.98
#> 1772122_180_A07     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_180_H01     4  0.0707      0.878 0.02 0.00 0.00 0.98
#> 1772122_298_G07     4  0.1637      0.866 0.00 0.00 0.06 0.94
#> 1772122_299_A02     4  0.0707      0.878 0.02 0.00 0.00 0.98
#> 1772122_181_C03     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_181_D01     3  0.1913      0.892 0.04 0.00 0.94 0.02
#> 1772122_180_G08     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_180_G11     2  0.1637      0.925 0.00 0.94 0.00 0.06
#> 1772122_300_G12     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_298_D06     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_299_H05     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_180_B03     1  0.1211      0.931 0.96 0.00 0.00 0.04
#> 1772122_298_E01     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_298_G03     1  0.1637      0.917 0.94 0.00 0.00 0.06
#> 1772122_181_D07     1  0.5291      0.662 0.74 0.00 0.08 0.18
#> 1772122_181_H05     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_181_G07     1  0.3335      0.834 0.86 0.00 0.12 0.02
#> 1772122_182_B06     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_299_G03     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_298_A10     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_298_E07     4  0.5657      0.715 0.12 0.00 0.16 0.72
#> 1772122_300_C08     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_181_C11     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_181_H04     1  0.1211      0.943 0.96 0.00 0.00 0.04
#> 1772122_180_D05     1  0.1211      0.931 0.96 0.00 0.00 0.04
#> 1772122_298_B08     1  0.2647      0.850 0.88 0.00 0.00 0.12
#> 1772122_180_G12     1  0.0707      0.942 0.98 0.00 0.00 0.02
#> 1772122_180_F04     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_299_E12     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_298_A05     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_181_F08     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_300_G10     1  0.1637      0.915 0.94 0.00 0.00 0.06
#> 1772122_298_B04     4  0.1211      0.868 0.04 0.00 0.00 0.96
#> 1772122_298_G08     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_299_F05     2  0.4713      0.501 0.00 0.64 0.00 0.36
#> 1772122_180_G10     1  0.3400      0.789 0.82 0.00 0.00 0.18
#> 1772122_181_A06     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_181_B06     4  0.6477      0.541 0.10 0.00 0.30 0.60
#> 1772122_182_D03     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_300_F06     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_300_D06     1  0.4134      0.634 0.74 0.00 0.00 0.26
#> 1772122_299_D02     1  0.1211      0.941 0.96 0.00 0.00 0.04
#> 1772122_299_H08     4  0.6723      0.552 0.26 0.00 0.14 0.60
#> 1772122_299_B09     2  0.1211      0.939 0.00 0.96 0.00 0.04
#> 1772122_300_C10     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_298_H03     1  0.0707      0.943 0.98 0.00 0.00 0.02
#> 1772122_300_C05     2  0.4277      0.649 0.00 0.72 0.00 0.28
#> 1772122_300_A04     1  0.5570      0.204 0.54 0.44 0.00 0.02
#> 1772122_300_B02     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_300_F08     4  0.4088      0.813 0.04 0.00 0.14 0.82
#> 1772122_182_E03     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_298_A04     4  0.2921      0.823 0.00 0.00 0.14 0.86
#> 1772122_180_D06     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_302_B02     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_298_E04     2  0.3400      0.800 0.00 0.82 0.00 0.18
#> 1772122_180_C04     4  0.1411      0.872 0.00 0.02 0.02 0.96
#> 1772122_298_D03     1  0.0707      0.942 0.98 0.00 0.00 0.02
#> 1772122_180_A08     4  0.1913      0.870 0.00 0.02 0.04 0.94
#> 1772122_181_A12     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_180_C12     3  0.3172      0.787 0.00 0.00 0.84 0.16
#> 1772122_182_B01     3  0.0707      0.934 0.00 0.00 0.98 0.02
#> 1772122_180_H07     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_181_C04     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_180_D10     3  0.2921      0.814 0.00 0.00 0.86 0.14
#> 1772122_181_B10     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_182_F03     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_180_B07     2  0.1211      0.939 0.00 0.96 0.00 0.04
#> 1772122_181_C06     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_G06     2  0.1211      0.939 0.00 0.96 0.00 0.04
#> 1772122_181_F06     1  0.0707      0.942 0.98 0.00 0.00 0.02
#> 1772122_181_D05     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_299_E05     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_182_E06     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_182_H01     3  0.1411      0.912 0.02 0.00 0.96 0.02
#> 1772122_299_H09     3  0.0707      0.929 0.00 0.00 0.98 0.02
#> 1772122_299_H03     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_181_B11     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_180_C01     2  0.1637      0.926 0.00 0.94 0.00 0.06
#> 1772122_299_C08     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_182_E07     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_181_H02     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_D09     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_181_H07     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_182_D01     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_180_E12     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_180_B05     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_181_H12     2  0.1211      0.916 0.04 0.96 0.00 0.00
#> 1772122_180_F10     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_180_F08     3  0.5486      0.589 0.20 0.00 0.72 0.08
#> 1772122_181_F03     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_B01     1  0.0707      0.949 0.98 0.00 0.00 0.02
#> 1772122_181_F02     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_182_D06     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_F11     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_180_D09     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_298_C08     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_180_D03     1  0.0000      0.950 1.00 0.00 0.00 0.00
#> 1772122_299_H02     2  0.0707      0.948 0.00 0.98 0.00 0.02
#> 1772122_180_B01     4  0.3172      0.800 0.00 0.00 0.16 0.84
#> 1772122_180_B08     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_181_E04     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_D02     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_F07     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_E07     3  0.0707      0.934 0.00 0.00 0.98 0.02
#> 1772122_180_F11     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_180_F01     3  0.0707      0.934 0.00 0.00 0.98 0.02
#> 1772122_180_E03     3  0.0707      0.934 0.00 0.00 0.98 0.02
#> 1772122_181_A07     2  0.0000      0.956 0.00 1.00 0.00 0.00
#> 1772122_299_A09     3  0.0000      0.943 0.00 0.00 1.00 0.00
#> 1772122_181_F10     3  0.4797      0.541 0.26 0.00 0.72 0.02

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0132-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0132-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0132-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0132-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0132-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0132-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0132-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0132-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0132-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0132-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0132-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0132-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0132-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0132-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0132-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0132-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0132-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      113           5.05e-02                 NA 2
#> ATC:skmeans      108           5.64e-05                 NA 3
#> ATC:skmeans      114           1.73e-06                 NA 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node02

Parent node: Node0. Child nodes: Node011 , Node012 , Node013 , Node021 , Node022 , Node023 , Node024 , Node031-leaf , Node032-leaf , Node033 .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["02"]

A summary of res and all the functions that can be applied to it:

res
#> A 'DownSamplingConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 11181 rows and 500 columns, randomly sampled from 681 columns.
#>   Top rows (1049) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 4.
#> 
#> Following methods can be applied to this 'DownSamplingConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-02-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-02-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           1.000       1.000          0.485 0.515   0.515
#> 3 3 1.000           0.965       0.986          0.360 0.823   0.657
#> 4 4 0.986           0.960       0.984          0.125 0.910   0.739

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 4
#> attr(,"optional")
#> [1] 2 3

There is also optional best \(k\) = 2 3 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

get_classes(res, k = 2)
#>                 class p
#> 1772122_305_D11     1 0
#> 1772122_303_B02     1 0
#> 1772122_315_F04     1 0
#> 1772122_205_E06     1 0
#> 1772122_205_C02     1 0
#> 1772122_205_E01     1 0
#> 1772122_315_G09     1 0
#> 1772122_306_B03     1 0
#> 1772122_204_D11     1 0
#> 1772122_206_A03     1 0
#> 1772122_205_G06     1 0
#> 1772122_305_C05     1 0
#> 1772122_305_G06     1 0
#> 1772122_306_H11     1 0
#> 1772122_315_A11     1 0
#> 1772122_306_G01     1 0
#> 1772122_204_F08     1 0
#> 1772122_206_D01     1 0
#> 1772122_306_F05     1 0
#> 1772122_306_B12     1 0
#> 1772122_306_B07     1 0
#> 1772122_306_A12     1 0
#> 1772122_204_C01     1 0
#> 1772122_315_E08     1 0
#> 1772122_262_A07     1 0
#> 1772122_206_B06     1 0
#> 1772122_315_H08     1 0
#> 1772122_298_B07     1 0
#> 1772122_306_A11     1 0
#> 1772122_315_C10     1 0
#> 1772122_315_F03     1 0
#> 1772122_306_H10     1 0
#> 1772122_305_F05     1 0
#> 1772122_306_H04     1 0
#> 1772122_303_D10     1 0
#> 1772122_315_C01     1 0
#> 1772122_305_E08     1 0
#> 1772122_305_E03     1 0
#> 1772122_306_A04     1 0
#> 1772122_305_C02     1 0
#> 1772122_303_H08     1 0
#> 1772122_305_E06     1 0
#> 1772122_306_A10     1 0
#> 1772122_315_H03     1 0
#> 1772122_306_G06     1 0
#> 1772122_303_B09     1 0
#> 1772122_315_H07     1 0
#> 1772122_305_E04     1 0
#> 1772122_306_H06     1 0
#> 1772122_305_D04     1 0
#> 1772122_315_G10     1 0
#> 1772122_315_D06     1 0
#> 1772122_306_F01     1 0
#> 1772122_315_H06     1 0
#> 1772122_315_A05     1 0
#> 1772122_315_E10     1 0
#> 1772122_306_G04     1 0
#> 1772122_315_G06     1 0
#> 1772122_315_H10     1 0
#> 1772122_315_E05     1 0
#> 1772122_305_C11     1 0
#> 1772122_306_A08     1 0
#> 1772122_305_E05     1 0
#> 1772122_306_E12     1 0
#> 1772122_315_A06     1 0
#> 1772122_305_E01     1 0
#> 1772122_306_G05     1 0
#> 1772122_315_A10     1 0
#> 1772122_306_G03     1 0
#> 1772122_305_D08     1 0
#> 1772122_315_D05     1 0
#> 1772122_306_H03     1 0
#> 1772122_306_F08     1 0
#> 1772122_306_D03     1 0
#> 1772122_306_B04     1 0
#> 1772122_306_G07     1 0
#> 1772122_315_H11     1 0
#> 1772122_306_A03     1 0
#> 1772122_315_H02     1 0
#> 1772122_306_F12     1 0
#> 1772122_205_A06     1 0
#> 1772122_205_E05     1 0
#> 1772122_306_B11     1 0
#> 1772122_315_F11     1 0
#> 1772122_306_B09     1 0
#> 1772122_315_D12     1 0
#> 1772122_306_D02     1 0
#> 1772122_306_E08     1 0
#> 1772122_315_D09     1 0
#> 1772122_306_G12     1 0
#> 1772122_315_E01     1 0
#> 1772122_315_H09     1 0
#> 1772122_306_F06     1 0
#> 1772122_315_B07     1 0
#> 1772122_315_E11     1 0
#> 1772122_315_C03     1 0
#> 1772122_315_D10     1 0
#> 1772122_315_A12     1 0
#> 1772122_315_G07     1 0
#> 1772122_306_F02     1 0
#> 1772122_306_G02     1 0
#> 1772122_315_F09     1 0
#> 1772122_306_D08     1 0
#> 1772122_315_F12     1 0
#> 1772122_303_C07     1 0
#> 1772122_305_D02     1 0
#> 1772122_305_E07     1 0
#> 1772122_305_B09     1 0
#> 1772122_303_C04     1 0
#> 1772122_303_G03     1 0
#> 1772122_305_F11     1 0
#> 1772122_315_F07     1 0
#> 1772122_306_F09     1 0
#> 1772122_305_B12     1 0
#> 1772122_305_H03     1 0
#> 1772122_305_A06     1 0
#> 1772122_303_C08     1 0
#> 1772122_303_C01     1 0
#> 1772122_303_G02     1 0
#> 1772122_303_A06     1 0
#> 1772122_315_E06     1 0
#> 1772122_303_C10     1 0
#> 1772122_303_B07     1 0
#> 1772122_306_D10     1 0
#> 1772122_303_H02     1 0
#> 1772122_305_C06     1 0
#> 1772122_303_D02     1 0
#> 1772122_303_E08     1 0
#> 1772122_305_G11     1 0
#> 1772122_306_A01     1 0
#> 1772122_305_F10     1 0
#> 1772122_305_G08     1 0
#> 1772122_305_A03     1 0
#> 1772122_303_A07     1 0
#> 1772122_305_H12     1 0
#> 1772122_305_A12     1 0
#> 1772122_303_F03     1 0
#> 1772122_305_H10     1 0
#> 1772122_305_H08     1 0
#> 1772122_305_C10     1 0
#> 1772122_315_D11     1 0
#> 1772122_305_C01     1 0
#> 1772122_305_B07     1 0
#> 1772122_305_B02     1 0
#> 1772122_303_E09     1 0
#> 1772122_306_A09     1 0
#> 1772122_303_B05     1 0
#> 1772122_306_C04     1 0
#> 1772122_305_H06     1 0
#> 1772122_306_C02     1 0
#> 1772122_315_E02     1 0
#> 1772122_315_A04     1 0
#> 1772122_306_H05     1 0
#> 1772122_306_E11     1 0
#> 1772122_306_G11     1 0
#> 1772122_315_B09     1 0
#> 1772122_315_C06     1 0
#> 1772122_303_G07     1 0
#> 1772122_306_B06     1 0
#> 1772122_305_E09     1 0
#> 1772122_306_E05     1 0
#> 1772122_306_F07     1 0
#> 1772122_315_F05     1 0
#> 1772122_315_B12     1 0
#> 1772122_306_C08     1 0
#> 1772122_315_G05     1 0
#> 1772122_315_D07     1 0
#> 1772122_315_F06     1 0
#> 1772122_315_E04     1 0
#> 1772122_305_D09     1 0
#> 1772122_303_F09     1 0
#> 1772122_315_E12     1 0
#> 1772122_303_F08     1 0
#> 1772122_315_F08     1 0
#> 1772122_305_A11     1 0
#> 1772122_315_C05     1 0
#> 1772122_303_G01     1 0
#> 1772122_303_H03     1 0
#> 1772122_315_B08     1 0
#> 1772122_305_D10     1 0
#> 1772122_315_H12     1 0
#> 1772122_315_G08     1 0
#> 1772122_305_A07     1 0
#> 1772122_315_B10     1 0
#> 1772122_306_F10     1 0
#> 1772122_306_C01     1 0
#> 1772122_315_G01     1 0
#> 1772122_306_D01     1 0
#> 1772122_306_D07     1 0
#> 1772122_306_C12     1 0
#> 1772122_305_B06     1 0
#> 1772122_305_H01     1 0
#> 1772122_315_G04     1 0
#> 1772122_305_F04     1 0
#> 1772122_305_F02     1 0
#> 1772122_303_A04     1 0
#> 1772122_301_H11     1 0
#> 1772122_299_G02     1 0
#> 1772122_180_D11     1 0
#> 1772122_300_G02     1 0
#> 1772122_298_A02     1 0
#> 1772122_204_D02     1 0
#> 1772122_206_B03     1 0
#> 1772122_206_G04     1 0
#> 1772122_205_H04     1 0
#> 1772122_206_A02     1 0
#> 1772122_204_G07     1 0
#> 1772122_205_C06     1 0
#> 1772122_205_D08     1 0
#> 1772122_204_G01     1 0
#> 1772122_262_E11     1 0
#> 1772122_205_H11     1 0
#> 1772122_205_E04     1 0
#> 1772122_204_B09     1 0
#> 1772122_204_B05     1 0
#> 1772122_206_B04     1 0
#> 1772122_206_B11     1 0
#> 1772122_204_A06     1 0
#> 1772122_205_G05     1 0
#> 1772122_205_C01     1 0
#> 1772122_262_B09     1 0
#> 1772122_262_H11     1 0
#> 1772122_205_D09     1 0
#> 1772122_204_C10     1 0
#> 1772122_206_F01     1 0
#> 1772122_205_A07     1 0
#> 1772122_206_E08     1 0
#> 1772122_206_F03     1 0
#> 1772122_262_C10     1 0
#> 1772122_204_C09     1 0
#> 1772122_206_G12     1 0
#> 1772122_205_A08     1 0
#> 1772122_206_H04     1 0
#> 1772122_205_A03     1 0
#> 1772122_204_E04     1 0
#> 1772122_205_G08     1 0
#> 1772122_204_A02     1 0
#> 1772122_206_H07     1 0
#> 1772122_262_H01     1 0
#> 1772122_205_C11     1 0
#> 1772122_204_A09     1 0
#> 1772122_206_C02     1 0
#> 1772122_204_C08     1 0
#> 1772122_204_F07     1 0
#> 1772122_204_F11     1 0
#> 1772122_204_B06     1 0
#> 1772122_206_D02     1 0
#> 1772122_204_C07     1 0
#> 1772122_205_D05     1 0
#> 1772122_204_A05     1 0
#> 1772122_206_G10     1 0
#> 1772122_206_A12     1 0
#> 1772122_262_A09     1 0
#> 1772122_205_E10     1 0
#> 1772122_206_A08     1 0
#> 1772122_205_A12     1 0
#> 1772122_204_B03     1 0
#> 1772122_262_G07     1 0
#> 1772122_262_D03     1 0
#> 1772122_262_B05     1 0
#> 1772122_262_A04     1 0
#> 1772122_262_H03     1 0
#> 1772122_206_B08     1 0
#> 1772122_204_D12     1 0
#> 1772122_262_E03     1 0
#> 1772122_206_F02     1 0
#> 1772122_206_G03     1 0
#> 1772122_205_H12     1 0
#> 1772122_262_F12     1 0
#> 1772122_204_F02     1 0
#> 1772122_206_C10     1 0
#> 1772122_204_D01     1 0
#> 1772122_206_C07     1 0
#> 1772122_262_C08     1 0
#> 1772122_206_G01     1 0
#> 1772122_206_F05     1 0
#> 1772122_205_E02     1 0
#> 1772122_262_H08     1 0
#> 1772122_326_D09     1 0
#> 1772122_204_F01     1 0
#> 1772122_206_F04     1 0
#> 1772122_206_E09     1 0
#> 1772122_206_E10     1 0
#> 1772122_205_H09     1 0
#> 1772122_206_C06     1 0
#> 1772122_204_D03     1 0
#> 1772122_206_C04     1 0
#> 1772122_262_A11     1 0
#> 1772122_205_H06     1 0
#> 1772122_262_F11     1 0
#> 1772122_204_D09     1 0
#> 1772122_205_H05     1 0
#> 1772122_206_B12     1 0
#> 1772122_204_B02     1 0
#> 1772122_204_B07     1 0
#> 1772122_205_C07     1 0
#> 1772122_262_C12     1 0
#> 1772122_206_A10     1 0
#> 1772122_262_F03     1 0
#> 1772122_206_D11     1 0
#> 1772122_204_A12     1 0
#> 1772122_205_A04     1 0
#> 1772122_205_F05     1 0
#> 1772122_205_B04     1 0
#> 1772122_206_C03     1 0
#> 1772122_204_A11     1 0
#> 1772122_262_E08     1 0
#> 1772122_262_B10     1 0
#> 1772122_206_G06     1 0
#> 1772122_205_G04     1 0
#> 1772122_262_D05     1 0
#> 1772122_206_F06     1 0
#> 1772122_206_E12     1 0
#> 1772122_262_G04     1 0
#> 1772122_204_C11     1 0
#> 1772122_205_G10     1 0
#> 1772122_262_B07     1 0
#> 1772122_204_C03     1 0
#> 1772122_204_A04     1 0
#> 1772122_205_H03     1 0
#> 1772122_205_B09     1 0
#> 1772122_205_F09     1 0
#> 1772122_205_A09     1 0
#> 1772122_205_E08     1 0
#> 1772122_262_C05     1 0
#> 1772122_262_G06     1 0
#> 1772122_262_F10     1 0
#> 1772122_204_B10     1 0
#> 1772122_205_G03     1 0
#> 1772122_206_A05     1 0
#> 1772122_205_D06     1 0
#> 1772122_206_E03     1 0
#> 1772122_206_B07     1 0
#> 1772122_204_A03     1 0
#> 1772122_262_B08     1 0
#> 1772122_206_E04     1 0
#> 1772122_205_D04     1 0
#> 1772122_262_D09     1 0
#> 1772122_205_A01     1 0
#> 1772122_204_B01     1 0
#> 1772122_206_H09     1 0
#> 1772122_206_D05     1 0
#> 1772122_205_B03     1 0
#> 1772122_205_G12     1 0
#> 1772122_262_G12     1 0
#> 1772122_204_C02     1 0
#> 1772122_262_A01     1 0
#> 1772122_206_B02     1 0
#> 1772122_205_C10     1 0
#> 1772122_205_D11     1 0
#> 1772122_204_E01     1 0
#> 1772122_262_B06     1 0
#> 1772122_262_E05     1 0
#> 1772122_206_C11     1 0
#> 1772122_204_D08     1 0
#> 1772122_205_A11     1 0
#> 1772122_205_D07     1 0
#> 1772122_262_F08     1 0
#> 1772122_262_G11     1 0
#> 1772122_205_H10     1 0
#> 1772122_204_B12     1 0
#> 1772122_205_A10     1 0
#> 1772122_262_D07     1 0
#> 1772122_205_F10     1 0
#> 1772122_204_G06     1 0
#> 1772122_205_E12     1 0
#> 1772122_206_E05     1 0
#> 1772122_206_C05     1 0
#> 1772122_205_C12     1 0
#> 1772122_204_E07     1 0
#> 1772122_205_F06     1 0
#> 1772122_262_A12     1 0
#> 1772122_206_H11     1 0
#> 1772122_204_E06     1 0
#> 1772122_205_B06     1 0
#> 1772122_262_A08     1 0
#> 1772122_206_G08     1 0
#> 1772122_205_C04     1 0
#> 1772122_206_D12     1 0
#> 1772122_262_E06     1 0
#> 1772122_262_D01     1 0
#> 1772122_262_F06     1 0
#> 1772122_326_A09     1 0
#> 1772122_326_E06     1 0
#> 1772122_263_B07     1 0
#> 1772122_324_E04     1 0
#> 1772122_325_D02     1 0
#> 1772122_326_E11     1 0
#> 1772122_325_D07     1 0
#> 1772122_324_A09     1 0
#> 1772122_324_B04     1 0
#> 1772122_326_H05     1 0
#> 1772122_326_H12     1 0
#> 1772122_263_D11     1 0
#> 1772122_324_A10     1 0
#> 1772122_324_C07     1 0
#> 1772122_324_A11     1 0
#> 1772122_324_E07     1 0
#> 1772122_324_C01     1 0
#> 1772122_326_H04     1 0
#> 1772122_324_C02     1 0
#> 1772122_324_B09     1 0
#> 1772122_324_B06     1 0
#> 1772122_324_D06     1 0
#> 1772122_310_B10     2 0
#> 1772122_311_D04     2 0
#> 1772122_311_B04     2 0
#> 1772122_310_D05     2 0
#> 1772122_311_A03     2 0
#> 1772122_314_F11     2 0
#> 1772122_312_E02     2 0
#> 1772122_311_E12     2 0
#> 1772122_311_C02     2 0
#> 1772122_312_G11     2 0
#> 1772122_310_F11     2 0
#> 1772122_310_B07     2 0
#> 1772122_312_B03     2 0
#> 1772122_312_C09     2 0
#> 1772122_314_H06     2 0
#> 1772122_312_C04     2 0
#> 1772122_311_F07     2 0
#> 1772122_312_A06     2 0
#> 1772122_312_A09     2 0
#> 1772122_310_B06     2 0
#> 1772122_314_D10     2 0
#> 1772122_310_F02     2 0
#> 1772122_314_F12     2 0
#> 1772122_312_E06     2 0
#> 1772122_314_A07     2 0
#> 1772122_312_H09     2 0
#> 1772122_312_D06     2 0
#> 1772122_314_A05     2 0
#> 1772122_310_H06     2 0
#> 1772122_310_C12     2 0
#> 1772122_311_F11     2 0
#> 1772122_314_D07     2 0
#> 1772122_314_A06     2 0
#> 1772122_314_G09     2 0
#> 1772122_312_B11     2 0
#> 1772122_314_B03     2 0
#> 1772122_314_B07     2 0
#> 1772122_312_D05     2 0
#> 1772122_314_G06     2 0
#> 1772122_312_C10     2 0
#> 1772122_314_B12     2 0
#> 1772122_310_E07     2 0
#> 1772122_314_D11     2 0
#> 1772122_310_E03     2 0
#> 1772122_314_G10     2 0
#> 1772122_314_C04     2 0
#> 1772122_312_H02     2 0
#> 1772122_312_C01     2 0
#> 1772122_314_A04     2 0
#> 1772122_310_B05     2 0
#> 1772122_310_A03     2 0
#> 1772122_312_F12     2 0
#> 1772122_310_F09     2 0
#> 1772122_311_A06     2 0
#> 1772122_312_E09     2 0
#> 1772122_312_C08     2 0
#> 1772122_314_D12     2 0
#> 1772122_311_B09     2 0
#> 1772122_312_D12     2 0
#> 1772122_314_F10     2 0
#> 1772122_310_G06     2 0
#> 1772122_314_F04     2 0
#> 1772122_312_F10     2 0
#> 1772122_310_H05     2 0
#> 1772122_312_B04     2 0
#> 1772122_310_G10     2 0
#> 1772122_314_C10     2 0
#> 1772122_311_F01     2 0
#> 1772122_314_E12     2 0
#> 1772122_312_E12     2 0
#> 1772122_314_F05     2 0
#> 1772122_312_F01     2 0
#> 1772122_311_G08     2 0
#> 1772122_312_A11     2 0
#> 1772122_310_E10     2 0
#> 1772122_314_G11     2 0
#> 1772122_312_F07     2 0
#> 1772122_314_E07     2 0
#> 1772122_314_C08     2 0
#> 1772122_314_A12     2 0
#> 1772122_311_C01     2 0
#> 1772122_314_D08     2 0
#> 1772122_310_A04     2 0
#> 1772122_314_E02     2 0
#> 1772122_312_B06     2 0
#> 1772122_312_D07     2 0
#> 1772122_312_B01     2 0
#> 1772122_311_F09     2 0
#> 1772122_312_B07     2 0
#> 1772122_312_F06     2 0
#> 1772122_310_G01     2 0
#> 1772122_314_G02     2 0
#> 1772122_310_A05     2 0
#> 1772122_314_A02     2 0
#> 1772122_312_E08     2 0
#> 1772122_312_A12     2 0
#> 1772122_310_E04     2 0
#> 1772122_310_H09     2 0
#> 1772122_311_D09     2 0
#> 1772122_311_H06     2 0
#> 1772122_311_G04     2 0
#> 1772122_311_H04     2 0
#> 1772122_310_G02     2 0
#> 1772122_310_E05     2 0
#> 1772122_311_C09     2 0
#> 1772122_310_G07     2 0
#> 1772122_311_E09     2 0
#> 1772122_310_F12     2 0
#> 1772122_310_F04     2 0
#> 1772122_311_G10     2 0
#> 1772122_311_D06     2 0
#> 1772122_311_D02     2 0
#> 1772122_310_D12     2 0
#> 1772122_311_B05     2 0
#> 1772122_310_E02     2 0
#> 1772122_310_F05     2 0
#> 1772122_310_C10     2 0
#> 1772122_310_A02     2 0
#> 1772122_310_D09     2 0
#> 1772122_311_D03     2 0
#> 1772122_311_G07     2 0
#> 1772122_310_E11     2 0
#> 1772122_311_H05     2 0
#> 1772122_311_E04     2 0
#> 1772122_311_G11     2 0
#> 1772122_311_E06     2 0
#> 1772122_311_G12     2 0
#> 1772122_311_A10     2 0
#> 1772122_311_A07     2 0
#> 1772122_310_D02     2 0
#> 1772122_311_H03     2 0
#> 1772122_310_A07     2 0
#> 1772122_310_D06     2 0
#> 1772122_311_A01     2 0
#> 1772122_311_B01     2 0
#> 1772122_310_H01     2 0
#> 1772122_310_A12     2 0
#> 1772122_311_B11     2 0
#> 1772122_310_A01     2 0
#> 1772122_311_D11     2 0
#> 1772122_310_H02     2 0
#> 1772122_310_H12     2 0
#> 1772122_311_F05     2 0
#> 1772122_311_A12     2 0
#> 1772122_310_A09     2 0
#> 1772122_311_H11     2 0
#> 1772122_311_E05     2 0
#> 1772122_311_A09     2 0
#> 1772122_314_H08     2 0
#> 1772122_312_F05     2 0
#> 1772122_312_A07     2 0
#> 1772122_310_H04     2 0
#> 1772122_310_D11     2 0
#> 1772122_310_A10     2 0
#> 1772122_310_H10     2 0
#> 1772122_310_G05     2 0
#> 1772122_310_D10     2 0
#> 1772122_314_C05     2 0
#> 1772122_312_F02     2 0
#> 1772122_310_B09     2 0
#> 1772122_310_F06     2 0
#> 1772122_310_E06     2 0
#> 1772122_311_D10     2 0
#> 1772122_311_E03     2 0
#> 1772122_310_G04     2 0
#> 1772122_311_B07     2 0
#> 1772122_311_C11     2 0
#> 1772122_314_B04     2 0
#> 1772122_312_F04     2 0
#> 1772122_314_D03     2 0
#> 1772122_314_B06     2 0
#> 1772122_314_H07     2 0
#> 1772122_314_C12     2 0
#> 1772122_314_C06     2 0
#> 1772122_312_H11     2 0
#> 1772122_312_H12     2 0
#> 1772122_312_H08     2 0
#> 1772122_314_E04     2 0
#> 1772122_312_H05     2 0
#> 1772122_310_C06     2 0
#> 1772122_312_G06     2 0
#> 1772122_314_E08     2 0
#> 1772122_314_G05     2 0
#> 1772122_314_D09     2 0
#> 1772122_314_B05     2 0
#> 1772122_314_B08     2 0
#> 1772122_314_A10     2 0
#> 1772122_312_D08     2 0
#> 1772122_312_C07     2 0
#> 1772122_312_D10     2 0
#> 1772122_312_B02     2 0
#> 1772122_312_C06     2 0
#> 1772122_312_G04     2 0
#> 1772122_314_H04     2 0
#> 1772122_312_A03     2 0
#> 1772122_314_C09     2 0
#> 1772122_314_H03     2 0
#> 1772122_314_E11     2 0
#> 1772122_314_H12     2 0
#> 1772122_312_E04     2 0
#> 1772122_312_G12     2 0
#> 1772122_314_H05     2 0
#> 1772122_314_D04     2 0
#> 1772122_312_F11     2 0
#> 1772122_310_D04     2 0
#> 1772122_311_E08     2 0
#> 1772122_310_B11     2 0
#> 1772122_311_E10     2 0
#> 1772122_312_E10     2 0
#> 1772122_310_C04     2 0
#> 1772122_314_G04     2 0
#> 1772122_311_H07     2 0
#> 1772122_312_D03     2 0
#> 1772122_314_A03     2 0
#> 1772122_312_D04     2 0
#> 1772122_312_D02     2 0
#> 1772122_314_H11     2 0
#> 1772122_311_B06     2 0
#> 1772122_312_E05     2 0
#> 1772122_314_F06     2 0
#> 1772122_314_B11     2 0
#> 1772122_312_G02     2 0
#> 1772122_312_C05     2 0
#> 1772122_311_F10     2 0
#> 1772122_311_B12     2 0
#> 1772122_314_E06     2 0
#> 1772122_314_C01     2 0
#> 1772122_312_D11     2 0
#> 1772122_310_F01     2 0
#> 1772122_314_E05     2 0
#> 1772122_312_H10     2 0
#> 1772122_311_G01     2 0
#> 1772122_310_C03     2 0
#> 1772122_312_F09     2 0
#> 1772122_311_C08     2 0
#> 1772122_314_B10     2 0
#> 1772122_310_B03     2 0
#> 1772122_311_D08     2 0
#> 1772122_310_A11     2 0
#> 1772122_311_F02     2 0
#> 1772122_310_G12     2 0
#> 1772122_311_H01     2 0
#> 1772122_311_A04     2 0
#> 1772122_311_G06     2 0
#> 1772122_312_G09     2 0
#> 1772122_314_C11     2 0
#> 1772122_312_C02     2 0
#> 1772122_312_B12     2 0
#> 1772122_314_B01     2 0
#> 1772122_311_D07     2 0
#> 1772122_311_A08     2 0
#> 1772122_314_B09     2 0
#> 1772122_312_D09     2 0
#> 1772122_311_B10     2 0
#> 1772122_310_G08     2 0
#> 1772122_311_D12     2 0
#> 1772122_310_B04     2 0
#> 1772122_310_C02     2 0
#> 1772122_311_H12     2 0
#> 1772122_310_A08     2 0
#> 1772122_310_B08     2 0
#> 1772122_311_A02     2 0
#> 1772122_311_B02     2 0
#> 1772122_310_F08     2 0
#> 1772122_311_F08     2 0
#> 1772122_314_F08     2 0
#> 1772122_312_A02     2 0
#> 1772122_311_C04     2 0
#> 1772122_314_E01     2 0
#> 1772122_311_H10     2 0
#> 1772122_314_G12     2 0
#> 1772122_312_A10     2 0
#> 1772122_314_G08     2 0
#> 1772122_311_F06     2 0
#> 1772122_312_E11     2 0
#> 1772122_310_H11     2 0
#> 1772122_311_H02     2 0

show/hide code output

get_classes(res, k = 3)
#>                 class     p
#> 1772122_305_D11     3 0.000
#> 1772122_303_B02     3 0.000
#> 1772122_315_F04     3 0.000
#> 1772122_205_E06     1 0.000
#> 1772122_205_C02     3 0.000
#> 1772122_205_E01     3 1.000
#> 1772122_315_G09     3 0.000
#> 1772122_306_B03     3 0.000
#> 1772122_204_D11     1 0.000
#> 1772122_206_A03     1 0.000
#> 1772122_205_G06     3 0.000
#> 1772122_305_C05     3 0.000
#> 1772122_305_G06     3 0.000
#> 1772122_306_H11     3 0.000
#> 1772122_315_A11     3 0.000
#> 1772122_306_G01     3 0.000
#> 1772122_204_F08     1 0.000
#> 1772122_206_D01     3 0.000
#> 1772122_306_F05     3 0.000
#> 1772122_306_B12     3 0.000
#> 1772122_306_B07     3 0.000
#> 1772122_306_A12     3 0.000
#> 1772122_204_C01     1 0.000
#> 1772122_315_E08     3 0.000
#> 1772122_262_A07     1 0.000
#> 1772122_206_B06     1 0.000
#> 1772122_315_H08     3 0.000
#> 1772122_298_B07     3 0.000
#> 1772122_306_A11     3 0.000
#> 1772122_315_C10     3 0.000
#> 1772122_315_F03     3 0.000
#> 1772122_306_H10     3 0.000
#> 1772122_305_F05     3 0.000
#> 1772122_306_H04     3 0.000
#> 1772122_303_D10     3 0.000
#> 1772122_315_C01     3 0.000
#> 1772122_305_E08     3 0.000
#> 1772122_305_E03     3 0.000
#> 1772122_306_A04     3 0.000
#> 1772122_305_C02     3 0.000
#> 1772122_303_H08     3 0.000
#> 1772122_305_E06     3 0.000
#> 1772122_306_A10     3 0.000
#> 1772122_315_H03     3 0.000
#> 1772122_306_G06     3 0.000
#> 1772122_303_B09     3 0.000
#> 1772122_315_H07     3 0.000
#> 1772122_305_E04     3 0.000
#> 1772122_306_H06     3 0.000
#> 1772122_305_D04     3 0.000
#> 1772122_315_G10     3 0.000
#> 1772122_315_D06     3 0.000
#> 1772122_306_F01     3 0.000
#> 1772122_315_H06     3 0.000
#> 1772122_315_A05     3 0.000
#> 1772122_315_E10     3 0.000
#> 1772122_306_G04     3 0.000
#> 1772122_315_G06     3 0.000
#> 1772122_315_H10     3 0.000
#> 1772122_315_E05     3 0.000
#> 1772122_305_C11     3 0.000
#> 1772122_306_A08     3 0.000
#> 1772122_305_E05     3 0.000
#> 1772122_306_E12     3 0.000
#> 1772122_315_A06     3 0.000
#> 1772122_305_E01     3 0.000
#> 1772122_306_G05     3 0.000
#> 1772122_315_A10     3 0.000
#> 1772122_306_G03     3 0.000
#> 1772122_305_D08     3 0.000
#> 1772122_315_D05     3 0.000
#> 1772122_306_H03     3 0.000
#> 1772122_306_F08     3 0.000
#> 1772122_306_D03     3 0.000
#> 1772122_306_B04     3 0.000
#> 1772122_306_G07     3 0.000
#> 1772122_315_H11     3 0.000
#> 1772122_306_A03     3 0.000
#> 1772122_315_H02     3 0.000
#> 1772122_306_F12     3 0.000
#> 1772122_205_A06     1 0.000
#> 1772122_205_E05     1 0.000
#> 1772122_306_B11     3 0.000
#> 1772122_315_F11     3 0.000
#> 1772122_306_B09     3 0.000
#> 1772122_315_D12     3 0.000
#> 1772122_306_D02     3 0.000
#> 1772122_306_E08     3 0.000
#> 1772122_315_D09     3 0.000
#> 1772122_306_G12     3 0.000
#> 1772122_315_E01     3 0.000
#> 1772122_315_H09     3 0.000
#> 1772122_306_F06     3 0.000
#> 1772122_315_B07     3 0.000
#> 1772122_315_E11     3 0.000
#> 1772122_315_C03     3 0.000
#> 1772122_315_D10     3 0.000
#> 1772122_315_A12     3 0.000
#> 1772122_315_G07     3 0.000
#> 1772122_306_F02     3 0.000
#> 1772122_306_G02     3 0.000
#> 1772122_315_F09     3 0.000
#> 1772122_306_D08     3 0.000
#> 1772122_315_F12     3 0.000
#> 1772122_303_C07     3 0.000
#> 1772122_305_D02     3 0.000
#> 1772122_305_E07     3 0.249
#> 1772122_305_B09     3 0.000
#> 1772122_303_C04     3 0.000
#> 1772122_303_G03     3 0.000
#> 1772122_305_F11     3 0.000
#> 1772122_315_F07     3 0.000
#> 1772122_306_F09     3 0.000
#> 1772122_305_B12     3 0.000
#> 1772122_305_H03     3 0.000
#> 1772122_305_A06     3 0.000
#> 1772122_303_C08     3 0.000
#> 1772122_303_C01     3 0.000
#> 1772122_303_G02     3 0.000
#> 1772122_303_A06     3 0.000
#> 1772122_315_E06     3 0.000
#> 1772122_303_C10     3 0.000
#> 1772122_303_B07     3 0.000
#> 1772122_306_D10     3 0.000
#> 1772122_303_H02     3 0.000
#> 1772122_305_C06     3 0.000
#> 1772122_303_D02     3 0.000
#> 1772122_303_E08     3 0.000
#> 1772122_305_G11     3 0.000
#> 1772122_306_A01     3 0.000
#> 1772122_305_F10     3 0.000
#> 1772122_305_G08     3 0.000
#> 1772122_305_A03     3 0.000
#> 1772122_303_A07     3 0.000
#> 1772122_305_H12     3 0.000
#> 1772122_305_A12     3 0.000
#> 1772122_303_F03     3 0.000
#> 1772122_305_H10     3 0.249
#> 1772122_305_H08     3 0.000
#> 1772122_305_C10     3 0.000
#> 1772122_315_D11     3 0.000
#> 1772122_305_C01     3 0.000
#> 1772122_305_B07     3 0.000
#> 1772122_305_B02     3 0.000
#> 1772122_303_E09     3 0.000
#> 1772122_306_A09     3 0.000
#> 1772122_303_B05     3 0.000
#> 1772122_306_C04     3 0.000
#> 1772122_305_H06     3 0.000
#> 1772122_306_C02     3 0.000
#> 1772122_315_E02     3 0.000
#> 1772122_315_A04     3 0.000
#> 1772122_306_H05     1 0.751
#> 1772122_306_E11     3 0.253
#> 1772122_306_G11     3 0.000
#> 1772122_315_B09     3 0.000
#> 1772122_315_C06     1 0.751
#> 1772122_303_G07     3 0.000
#> 1772122_306_B06     3 0.000
#> 1772122_305_E09     3 0.000
#> 1772122_306_E05     3 0.000
#> 1772122_306_F07     3 0.000
#> 1772122_315_F05     3 0.498
#> 1772122_315_B12     3 0.000
#> 1772122_306_C08     3 0.000
#> 1772122_315_G05     3 0.253
#> 1772122_315_D07     3 0.000
#> 1772122_315_F06     1 0.253
#> 1772122_315_E04     3 1.000
#> 1772122_305_D09     3 0.253
#> 1772122_303_F09     3 0.000
#> 1772122_315_E12     3 0.000
#> 1772122_303_F08     3 0.000
#> 1772122_315_F08     3 0.000
#> 1772122_305_A11     3 0.000
#> 1772122_315_C05     3 0.000
#> 1772122_303_G01     3 0.000
#> 1772122_303_H03     3 0.000
#> 1772122_315_B08     3 0.000
#> 1772122_305_D10     3 0.000
#> 1772122_315_H12     3 0.000
#> 1772122_315_G08     3 0.000
#> 1772122_305_A07     3 0.000
#> 1772122_315_B10     3 0.000
#> 1772122_306_F10     3 0.000
#> 1772122_306_C01     3 0.000
#> 1772122_315_G01     3 0.000
#> 1772122_306_D01     3 0.000
#> 1772122_306_D07     3 0.000
#> 1772122_306_C12     3 0.000
#> 1772122_305_B06     3 0.000
#> 1772122_305_H01     3 0.000
#> 1772122_315_G04     3 0.502
#> 1772122_305_F04     3 0.751
#> 1772122_305_F02     1 0.249
#> 1772122_303_A04     3 0.000
#> 1772122_301_H11     3 0.000
#> 1772122_299_G02     3 0.000
#> 1772122_180_D11     3 0.000
#> 1772122_300_G02     3 0.000
#> 1772122_298_A02     3 0.000
#> 1772122_204_D02     1 0.000
#> 1772122_206_B03     1 0.000
#> 1772122_206_G04     1 0.000
#> 1772122_205_H04     1 0.000
#> 1772122_206_A02     1 0.000
#> 1772122_204_G07     1 0.000
#> 1772122_205_C06     1 0.000
#> 1772122_205_D08     1 0.000
#> 1772122_204_G01     1 0.000
#> 1772122_262_E11     1 0.000
#> 1772122_205_H11     1 0.000
#> 1772122_205_E04     1 0.000
#> 1772122_204_B09     1 0.000
#> 1772122_204_B05     1 0.000
#> 1772122_206_B04     1 0.000
#> 1772122_206_B11     1 0.000
#> 1772122_204_A06     1 0.000
#> 1772122_205_G05     1 0.000
#> 1772122_205_C01     1 0.000
#> 1772122_262_B09     1 0.000
#> 1772122_262_H11     1 0.000
#> 1772122_205_D09     1 0.000
#> 1772122_204_C10     1 0.000
#> 1772122_206_F01     1 0.000
#> 1772122_205_A07     1 0.000
#> 1772122_206_E08     1 0.000
#> 1772122_206_F03     1 0.000
#> 1772122_262_C10     1 0.000
#> 1772122_204_C09     1 0.000
#> 1772122_206_G12     1 0.000
#> 1772122_205_A08     1 0.000
#> 1772122_206_H04     1 0.000
#> 1772122_205_A03     3 1.000
#> 1772122_204_E04     1 0.000
#> 1772122_205_G08     1 0.000
#> 1772122_204_A02     1 0.000
#> 1772122_206_H07     1 0.000
#> 1772122_262_H01     3 1.000
#> 1772122_205_C11     1 0.000
#> 1772122_204_A09     1 0.000
#> 1772122_206_C02     1 0.000
#> 1772122_204_C08     1 0.000
#> 1772122_204_F07     1 0.000
#> 1772122_204_F11     3 1.000
#> 1772122_204_B06     1 0.000
#> 1772122_206_D02     1 0.000
#> 1772122_204_C07     1 0.000
#> 1772122_205_D05     1 0.000
#> 1772122_204_A05     1 0.000
#> 1772122_206_G10     1 0.000
#> 1772122_206_A12     1 0.000
#> 1772122_262_A09     1 0.000
#> 1772122_205_E10     1 0.000
#> 1772122_206_A08     1 0.000
#> 1772122_205_A12     1 0.000
#> 1772122_204_B03     1 0.000
#> 1772122_262_G07     1 0.000
#> 1772122_262_D03     3 1.000
#> 1772122_262_B05     1 0.000
#> 1772122_262_A04     1 0.000
#> 1772122_262_H03     1 0.000
#> 1772122_206_B08     1 0.000
#> 1772122_204_D12     1 0.000
#> 1772122_262_E03     3 0.249
#> 1772122_206_F02     3 1.000
#> 1772122_206_G03     1 0.000
#> 1772122_205_H12     1 0.000
#> 1772122_262_F12     1 0.249
#> 1772122_204_F02     1 0.000
#> 1772122_206_C10     1 0.000
#> 1772122_204_D01     1 0.000
#> 1772122_206_C07     1 0.000
#> 1772122_262_C08     1 0.000
#> 1772122_206_G01     1 1.000
#> 1772122_206_F05     3 1.000
#> 1772122_205_E02     1 0.000
#> 1772122_262_H08     1 0.000
#> 1772122_326_D09     1 0.000
#> 1772122_204_F01     1 0.000
#> 1772122_206_F04     1 0.000
#> 1772122_206_E09     1 0.000
#> 1772122_206_E10     1 0.000
#> 1772122_205_H09     1 0.000
#> 1772122_206_C06     1 0.000
#> 1772122_204_D03     1 0.000
#> 1772122_206_C04     1 0.000
#> 1772122_262_A11     1 0.253
#> 1772122_205_H06     1 0.000
#> 1772122_262_F11     1 0.000
#> 1772122_204_D09     1 0.000
#> 1772122_205_H05     1 0.000
#> 1772122_206_B12     1 0.000
#> 1772122_204_B02     1 0.000
#> 1772122_204_B07     1 0.000
#> 1772122_205_C07     1 0.000
#> 1772122_262_C12     3 0.249
#> 1772122_206_A10     3 0.253
#> 1772122_262_F03     1 0.000
#> 1772122_206_D11     1 0.000
#> 1772122_204_A12     3 0.249
#> 1772122_205_A04     1 0.000
#> 1772122_205_F05     1 0.000
#> 1772122_205_B04     1 0.000
#> 1772122_206_C03     1 0.000
#> 1772122_204_A11     1 0.000
#> 1772122_262_E08     1 0.000
#> 1772122_262_B10     1 0.000
#> 1772122_206_G06     1 0.000
#> 1772122_205_G04     1 0.000
#> 1772122_262_D05     1 0.000
#> 1772122_206_F06     1 0.000
#> 1772122_206_E12     1 0.000
#> 1772122_262_G04     3 1.000
#> 1772122_204_C11     1 0.000
#> 1772122_205_G10     3 0.502
#> 1772122_262_B07     1 0.000
#> 1772122_204_C03     1 0.000
#> 1772122_204_A04     1 0.000
#> 1772122_205_H03     1 0.000
#> 1772122_205_B09     1 0.000
#> 1772122_205_F09     1 0.000
#> 1772122_205_A09     1 0.000
#> 1772122_205_E08     1 0.000
#> 1772122_262_C05     1 0.000
#> 1772122_262_G06     1 1.000
#> 1772122_262_F10     1 0.000
#> 1772122_204_B10     1 0.000
#> 1772122_205_G03     1 0.000
#> 1772122_206_A05     1 0.000
#> 1772122_205_D06     1 0.000
#> 1772122_206_E03     1 0.000
#> 1772122_206_B07     1 0.000
#> 1772122_204_A03     1 0.000
#> 1772122_262_B08     1 0.000
#> 1772122_206_E04     1 0.000
#> 1772122_205_D04     1 0.000
#> 1772122_262_D09     1 0.000
#> 1772122_205_A01     1 0.000
#> 1772122_204_B01     1 0.000
#> 1772122_206_H09     1 0.000
#> 1772122_206_D05     1 0.000
#> 1772122_205_B03     1 0.000
#> 1772122_205_G12     1 0.000
#> 1772122_262_G12     1 0.000
#> 1772122_204_C02     1 0.000
#> 1772122_262_A01     1 0.000
#> 1772122_206_B02     1 0.000
#> 1772122_205_C10     1 0.000
#> 1772122_205_D11     1 0.000
#> 1772122_204_E01     1 0.000
#> 1772122_262_B06     1 0.000
#> 1772122_262_E05     1 0.000
#> 1772122_206_C11     1 0.000
#> 1772122_204_D08     1 0.000
#> 1772122_205_A11     1 0.000
#> 1772122_205_D07     1 0.000
#> 1772122_262_F08     1 0.249
#> 1772122_262_G11     1 0.000
#> 1772122_205_H10     1 0.502
#> 1772122_204_B12     1 0.000
#> 1772122_205_A10     1 0.000
#> 1772122_262_D07     1 0.000
#> 1772122_205_F10     1 0.000
#> 1772122_204_G06     1 0.751
#> 1772122_205_E12     1 0.000
#> 1772122_206_E05     1 0.000
#> 1772122_206_C05     1 0.000
#> 1772122_205_C12     1 0.000
#> 1772122_204_E07     1 0.000
#> 1772122_205_F06     1 0.000
#> 1772122_262_A12     1 0.249
#> 1772122_206_H11     3 1.000
#> 1772122_204_E06     1 0.000
#> 1772122_205_B06     1 0.000
#> 1772122_262_A08     1 0.000
#> 1772122_206_G08     1 0.000
#> 1772122_205_C04     3 0.751
#> 1772122_206_D12     1 0.000
#> 1772122_262_E06     3 1.000
#> 1772122_262_D01     1 1.000
#> 1772122_262_F06     1 1.000
#> 1772122_326_A09     1 0.000
#> 1772122_326_E06     1 0.000
#> 1772122_263_B07     1 0.000
#> 1772122_324_E04     1 0.000
#> 1772122_325_D02     1 0.000
#> 1772122_326_E11     1 0.000
#> 1772122_325_D07     1 0.000
#> 1772122_324_A09     1 0.000
#> 1772122_324_B04     1 0.000
#> 1772122_326_H05     1 0.000
#> 1772122_326_H12     1 0.000
#> 1772122_263_D11     1 0.000
#> 1772122_324_A10     1 0.000
#> 1772122_324_C07     1 0.000
#> 1772122_324_A11     1 0.000
#> 1772122_324_E07     1 0.000
#> 1772122_324_C01     1 0.000
#> 1772122_326_H04     1 0.000
#> 1772122_324_C02     1 0.000
#> 1772122_324_B09     1 0.000
#> 1772122_324_B06     1 0.000
#> 1772122_324_D06     1 0.000
#> 1772122_310_B10     2 0.000
#> 1772122_311_D04     2 0.000
#> 1772122_311_B04     2 0.000
#> 1772122_310_D05     2 0.000
#> 1772122_311_A03     2 0.000
#> 1772122_314_F11     2 0.000
#> 1772122_312_E02     2 0.000
#> 1772122_311_E12     2 0.000
#> 1772122_311_C02     2 0.000
#> 1772122_312_G11     2 0.000
#> 1772122_310_F11     2 0.000
#> 1772122_310_B07     2 0.000
#> 1772122_312_B03     2 0.000
#> 1772122_312_C09     2 0.000
#> 1772122_314_H06     2 0.000
#> 1772122_312_C04     2 0.000
#> 1772122_311_F07     2 0.000
#> 1772122_312_A06     2 0.000
#> 1772122_312_A09     2 0.000
#> 1772122_310_B06     2 0.000
#> 1772122_314_D10     2 0.000
#> 1772122_310_F02     2 0.000
#> 1772122_314_F12     2 0.000
#> 1772122_312_E06     2 0.000
#> 1772122_314_A07     2 0.000
#> 1772122_312_H09     2 0.000
#> 1772122_312_D06     2 0.000
#> 1772122_314_A05     2 0.000
#> 1772122_310_H06     2 0.000
#> 1772122_310_C12     2 0.000
#> 1772122_311_F11     2 0.000
#> 1772122_314_D07     2 0.000
#> 1772122_314_A06     2 0.000
#> 1772122_314_G09     2 0.000
#> 1772122_312_B11     2 0.000
#> 1772122_314_B03     2 0.000
#> 1772122_314_B07     2 0.000
#> 1772122_312_D05     2 0.000
#> 1772122_314_G06     2 0.000
#> 1772122_312_C10     2 0.000
#> 1772122_314_B12     2 0.000
#> 1772122_310_E07     2 0.000
#> 1772122_314_D11     2 0.000
#> 1772122_310_E03     2 0.000
#> 1772122_314_G10     2 0.000
#> 1772122_314_C04     2 0.000
#> 1772122_312_H02     2 0.000
#> 1772122_312_C01     2 0.000
#> 1772122_314_A04     2 0.000
#> 1772122_310_B05     2 0.000
#> 1772122_310_A03     2 0.000
#> 1772122_312_F12     2 0.000
#> 1772122_310_F09     2 0.000
#> 1772122_311_A06     2 0.000
#> 1772122_312_E09     2 0.000
#> 1772122_312_C08     2 0.000
#> 1772122_314_D12     2 0.000
#> 1772122_311_B09     2 0.000
#> 1772122_312_D12     2 0.000
#> 1772122_314_F10     2 0.000
#> 1772122_310_G06     2 0.000
#> 1772122_314_F04     2 0.000
#> 1772122_312_F10     2 0.000
#> 1772122_310_H05     2 0.000
#> 1772122_312_B04     2 0.000
#> 1772122_310_G10     2 0.000
#> 1772122_314_C10     2 0.000
#> 1772122_311_F01     2 0.000
#> 1772122_314_E12     2 0.000
#> 1772122_312_E12     2 0.000
#> 1772122_314_F05     2 0.000
#> 1772122_312_F01     2 0.000
#> 1772122_311_G08     2 0.000
#> 1772122_312_A11     2 0.000
#> 1772122_310_E10     2 0.000
#> 1772122_314_G11     2 0.000
#> 1772122_312_F07     2 0.000
#> 1772122_314_E07     2 0.000
#> 1772122_314_C08     2 0.000
#> 1772122_314_A12     2 0.000
#> 1772122_311_C01     2 0.000
#> 1772122_314_D08     2 0.000
#> 1772122_310_A04     2 0.000
#> 1772122_314_E02     2 0.000
#> 1772122_312_B06     2 0.000
#> 1772122_312_D07     2 0.000
#> 1772122_312_B01     2 0.000
#> 1772122_311_F09     2 0.000
#> 1772122_312_B07     2 0.000
#> 1772122_312_F06     2 0.000
#> 1772122_310_G01     2 0.000
#> 1772122_314_G02     2 0.000
#> 1772122_310_A05     2 0.000
#> 1772122_314_A02     2 0.000
#> 1772122_312_E08     2 0.000
#> 1772122_312_A12     2 0.000
#> 1772122_310_E04     2 0.000
#> 1772122_310_H09     2 0.000
#> 1772122_311_D09     2 0.000
#> 1772122_311_H06     2 0.000
#> 1772122_311_G04     2 0.000
#> 1772122_311_H04     2 0.000
#> 1772122_310_G02     2 0.000
#> 1772122_310_E05     2 0.000
#> 1772122_311_C09     2 0.000
#> 1772122_310_G07     2 0.000
#> 1772122_311_E09     2 0.000
#> 1772122_310_F12     2 0.000
#> 1772122_310_F04     2 0.000
#> 1772122_311_G10     2 0.000
#> 1772122_311_D06     2 0.000
#> 1772122_311_D02     2 0.000
#> 1772122_310_D12     2 0.000
#> 1772122_311_B05     2 0.000
#> 1772122_310_E02     2 0.000
#> 1772122_310_F05     2 0.000
#> 1772122_310_C10     2 0.000
#> 1772122_310_A02     2 0.000
#> 1772122_310_D09     2 0.000
#> 1772122_311_D03     2 0.000
#> 1772122_311_G07     2 0.000
#> 1772122_310_E11     2 0.000
#> 1772122_311_H05     2 0.000
#> 1772122_311_E04     2 0.000
#> 1772122_311_G11     2 0.000
#> 1772122_311_E06     2 0.000
#> 1772122_311_G12     2 0.000
#> 1772122_311_A10     2 0.000
#> 1772122_311_A07     2 0.000
#> 1772122_310_D02     2 0.000
#> 1772122_311_H03     2 0.000
#> 1772122_310_A07     2 0.000
#> 1772122_310_D06     2 0.000
#> 1772122_311_A01     2 0.000
#> 1772122_311_B01     2 0.000
#> 1772122_310_H01     2 0.000
#> 1772122_310_A12     2 0.000
#> 1772122_311_B11     2 0.000
#> 1772122_310_A01     2 0.000
#> 1772122_311_D11     2 0.000
#> 1772122_310_H02     2 0.000
#> 1772122_310_H12     2 0.000
#> 1772122_311_F05     2 0.000
#> 1772122_311_A12     2 0.000
#> 1772122_310_A09     2 0.000
#> 1772122_311_H11     2 0.000
#> 1772122_311_E05     2 0.000
#> 1772122_311_A09     2 0.000
#> 1772122_314_H08     2 0.000
#> 1772122_312_F05     2 0.000
#> 1772122_312_A07     2 0.000
#> 1772122_310_H04     2 0.000
#> 1772122_310_D11     2 0.000
#> 1772122_310_A10     2 0.000
#> 1772122_310_H10     2 0.000
#> 1772122_310_G05     2 0.000
#> 1772122_310_D10     2 0.000
#> 1772122_314_C05     2 0.000
#> 1772122_312_F02     2 0.000
#> 1772122_310_B09     2 0.000
#> 1772122_310_F06     2 0.000
#> 1772122_310_E06     2 0.000
#> 1772122_311_D10     2 0.000
#> 1772122_311_E03     2 0.000
#> 1772122_310_G04     2 0.000
#> 1772122_311_B07     2 0.000
#> 1772122_311_C11     2 0.000
#> 1772122_314_B04     2 0.000
#> 1772122_312_F04     2 0.000
#> 1772122_314_D03     2 0.000
#> 1772122_314_B06     2 0.000
#> 1772122_314_H07     2 0.000
#> 1772122_314_C12     2 0.000
#> 1772122_314_C06     2 0.000
#> 1772122_312_H11     2 0.000
#> 1772122_312_H12     2 0.000
#> 1772122_312_H08     2 0.000
#> 1772122_314_E04     2 0.000
#> 1772122_312_H05     2 0.000
#> 1772122_310_C06     2 0.000
#> 1772122_312_G06     2 0.000
#> 1772122_314_E08     2 0.000
#> 1772122_314_G05     2 0.000
#> 1772122_314_D09     2 0.000
#> 1772122_314_B05     2 0.000
#> 1772122_314_B08     2 0.000
#> 1772122_314_A10     2 0.000
#> 1772122_312_D08     2 0.000
#> 1772122_312_C07     2 0.000
#> 1772122_312_D10     2 0.000
#> 1772122_312_B02     2 0.000
#> 1772122_312_C06     2 0.000
#> 1772122_312_G04     2 0.000
#> 1772122_314_H04     2 0.000
#> 1772122_312_A03     2 0.000
#> 1772122_314_C09     2 0.000
#> 1772122_314_H03     2 0.000
#> 1772122_314_E11     2 0.000
#> 1772122_314_H12     2 0.000
#> 1772122_312_E04     2 0.000
#> 1772122_312_G12     2 0.000
#> 1772122_314_H05     2 0.000
#> 1772122_314_D04     2 0.000
#> 1772122_312_F11     2 0.000
#> 1772122_310_D04     2 0.000
#> 1772122_311_E08     2 0.000
#> 1772122_310_B11     2 0.000
#> 1772122_311_E10     2 0.000
#> 1772122_312_E10     2 0.000
#> 1772122_310_C04     2 0.000
#> 1772122_314_G04     2 0.000
#> 1772122_311_H07     2 0.000
#> 1772122_312_D03     2 0.000
#> 1772122_314_A03     2 0.000
#> 1772122_312_D04     2 0.000
#> 1772122_312_D02     2 0.000
#> 1772122_314_H11     2 0.000
#> 1772122_311_B06     2 0.000
#> 1772122_312_E05     2 0.000
#> 1772122_314_F06     2 0.000
#> 1772122_314_B11     2 0.000
#> 1772122_312_G02     2 0.000
#> 1772122_312_C05     2 0.000
#> 1772122_311_F10     2 0.000
#> 1772122_311_B12     2 0.000
#> 1772122_314_E06     2 0.000
#> 1772122_314_C01     2 0.000
#> 1772122_312_D11     2 0.000
#> 1772122_310_F01     2 0.000
#> 1772122_314_E05     2 0.000
#> 1772122_312_H10     2 0.000
#> 1772122_311_G01     2 0.000
#> 1772122_310_C03     2 0.000
#> 1772122_312_F09     2 0.000
#> 1772122_311_C08     2 0.000
#> 1772122_314_B10     2 0.000
#> 1772122_310_B03     2 0.000
#> 1772122_311_D08     2 0.000
#> 1772122_310_A11     2 0.000
#> 1772122_311_F02     2 0.000
#> 1772122_310_G12     2 0.000
#> 1772122_311_H01     2 0.000
#> 1772122_311_A04     2 0.000
#> 1772122_311_G06     2 0.000
#> 1772122_312_G09     2 0.000
#> 1772122_314_C11     2 0.000
#> 1772122_312_C02     2 0.000
#> 1772122_312_B12     2 0.000
#> 1772122_314_B01     2 0.000
#> 1772122_311_D07     2 0.000
#> 1772122_311_A08     2 0.000
#> 1772122_314_B09     2 0.000
#> 1772122_312_D09     2 0.000
#> 1772122_311_B10     2 0.000
#> 1772122_310_G08     2 0.000
#> 1772122_311_D12     2 0.000
#> 1772122_310_B04     2 0.000
#> 1772122_310_C02     2 0.000
#> 1772122_311_H12     2 0.000
#> 1772122_310_A08     2 0.000
#> 1772122_310_B08     2 0.000
#> 1772122_311_A02     2 0.000
#> 1772122_311_B02     2 0.000
#> 1772122_310_F08     2 0.000
#> 1772122_311_F08     2 0.000
#> 1772122_314_F08     2 0.000
#> 1772122_312_A02     2 0.000
#> 1772122_311_C04     2 0.000
#> 1772122_314_E01     2 0.000
#> 1772122_311_H10     2 0.000
#> 1772122_314_G12     2 0.000
#> 1772122_312_A10     2 0.000
#> 1772122_314_G08     2 0.000
#> 1772122_311_F06     2 0.000
#> 1772122_312_E11     2 0.000
#> 1772122_310_H11     2 0.000
#> 1772122_311_H02     2 0.000

show/hide code output

get_classes(res, k = 4)
#>                 class     p
#> 1772122_305_D11     3 0.000
#> 1772122_303_B02     3 0.000
#> 1772122_315_F04     3 0.000
#> 1772122_205_E06     1 0.000
#> 1772122_205_C02     3 0.000
#> 1772122_205_E01     3 0.498
#> 1772122_315_G09     3 0.000
#> 1772122_306_B03     3 0.000
#> 1772122_204_D11     1 0.000
#> 1772122_206_A03     1 1.000
#> 1772122_205_G06     3 0.000
#> 1772122_305_C05     3 0.000
#> 1772122_305_G06     3 0.000
#> 1772122_306_H11     3 0.000
#> 1772122_315_A11     3 0.000
#> 1772122_306_G01     3 0.000
#> 1772122_204_F08     1 0.000
#> 1772122_206_D01     1 1.000
#> 1772122_306_F05     3 0.000
#> 1772122_306_B12     3 0.000
#> 1772122_306_B07     3 0.000
#> 1772122_306_A12     3 0.000
#> 1772122_204_C01     1 0.000
#> 1772122_315_E08     3 0.000
#> 1772122_262_A07     1 0.000
#> 1772122_206_B06     1 0.000
#> 1772122_315_H08     3 0.000
#> 1772122_298_B07     3 0.000
#> 1772122_306_A11     3 0.000
#> 1772122_315_C10     3 0.000
#> 1772122_315_F03     3 0.000
#> 1772122_306_H10     3 0.000
#> 1772122_305_F05     3 0.000
#> 1772122_306_H04     3 0.000
#> 1772122_303_D10     3 0.000
#> 1772122_315_C01     3 0.000
#> 1772122_305_E08     3 0.000
#> 1772122_305_E03     3 0.000
#> 1772122_306_A04     3 0.000
#> 1772122_305_C02     3 0.000
#> 1772122_303_H08     3 0.000
#> 1772122_305_E06     3 0.000
#> 1772122_306_A10     3 0.000
#> 1772122_315_H03     3 0.000
#> 1772122_306_G06     3 0.000
#> 1772122_303_B09     3 0.000
#> 1772122_315_H07     3 0.000
#> 1772122_305_E04     3 0.000
#> 1772122_306_H06     3 0.000
#> 1772122_305_D04     3 0.000
#> 1772122_315_G10     3 0.000
#> 1772122_315_D06     3 0.000
#> 1772122_306_F01     3 0.000
#> 1772122_315_H06     3 0.000
#> 1772122_315_A05     3 0.000
#> 1772122_315_E10     3 0.000
#> 1772122_306_G04     3 0.000
#> 1772122_315_G06     3 0.000
#> 1772122_315_H10     3 0.000
#> 1772122_315_E05     3 0.000
#> 1772122_305_C11     3 0.000
#> 1772122_306_A08     3 0.000
#> 1772122_305_E05     3 0.000
#> 1772122_306_E12     3 0.000
#> 1772122_315_A06     3 0.000
#> 1772122_305_E01     3 0.000
#> 1772122_306_G05     3 0.000
#> 1772122_315_A10     3 0.000
#> 1772122_306_G03     3 0.000
#> 1772122_305_D08     3 0.000
#> 1772122_315_D05     3 0.000
#> 1772122_306_H03     3 0.000
#> 1772122_306_F08     3 0.000
#> 1772122_306_D03     3 0.000
#> 1772122_306_B04     3 0.000
#> 1772122_306_G07     3 0.000
#> 1772122_315_H11     3 0.000
#> 1772122_306_A03     3 0.000
#> 1772122_315_H02     3 0.000
#> 1772122_306_F12     3 0.000
#> 1772122_205_A06     1 0.000
#> 1772122_205_E05     1 0.000
#> 1772122_306_B11     3 0.000
#> 1772122_315_F11     3 0.000
#> 1772122_306_B09     3 0.000
#> 1772122_315_D12     3 0.000
#> 1772122_306_D02     3 0.000
#> 1772122_306_E08     3 0.000
#> 1772122_315_D09     3 0.000
#> 1772122_306_G12     3 0.000
#> 1772122_315_E01     3 0.000
#> 1772122_315_H09     3 0.000
#> 1772122_306_F06     3 0.000
#> 1772122_315_B07     3 0.000
#> 1772122_315_E11     3 0.000
#> 1772122_315_C03     3 0.000
#> 1772122_315_D10     3 0.000
#> 1772122_315_A12     3 0.000
#> 1772122_315_G07     3 0.000
#> 1772122_306_F02     3 0.000
#> 1772122_306_G02     3 0.000
#> 1772122_315_F09     3 0.000
#> 1772122_306_D08     3 0.000
#> 1772122_315_F12     3 0.000
#> 1772122_303_C07     3 0.000
#> 1772122_305_D02     3 0.000
#> 1772122_305_E07     3 0.249
#> 1772122_305_B09     3 0.000
#> 1772122_303_C04     3 0.000
#> 1772122_303_G03     3 0.000
#> 1772122_305_F11     3 0.000
#> 1772122_315_F07     3 0.000
#> 1772122_306_F09     3 0.000
#> 1772122_305_B12     3 0.000
#> 1772122_305_H03     3 0.000
#> 1772122_305_A06     3 0.000
#> 1772122_303_C08     3 0.000
#> 1772122_303_C01     3 0.000
#> 1772122_303_G02     3 0.000
#> 1772122_303_A06     3 0.000
#> 1772122_315_E06     3 0.000
#> 1772122_303_C10     3 0.000
#> 1772122_303_B07     3 0.000
#> 1772122_306_D10     3 0.000
#> 1772122_303_H02     3 0.000
#> 1772122_305_C06     3 0.000
#> 1772122_303_D02     3 0.000
#> 1772122_303_E08     3 0.000
#> 1772122_305_G11     3 0.000
#> 1772122_306_A01     3 0.000
#> 1772122_305_F10     3 0.000
#> 1772122_305_G08     3 0.000
#> 1772122_305_A03     3 0.000
#> 1772122_303_A07     3 0.000
#> 1772122_305_H12     3 0.000
#> 1772122_305_A12     3 0.000
#> 1772122_303_F03     3 0.000
#> 1772122_305_H10     3 0.751
#> 1772122_305_H08     3 0.000
#> 1772122_305_C10     3 0.000
#> 1772122_315_D11     3 0.000
#> 1772122_305_C01     3 0.000
#> 1772122_305_B07     3 0.000
#> 1772122_305_B02     3 0.000
#> 1772122_303_E09     3 0.000
#> 1772122_306_A09     3 0.000
#> 1772122_303_B05     3 0.000
#> 1772122_306_C04     3 0.000
#> 1772122_305_H06     3 0.000
#> 1772122_306_C02     3 0.000
#> 1772122_315_E02     3 0.000
#> 1772122_315_A04     3 0.000
#> 1772122_306_H05     1 0.249
#> 1772122_306_E11     3 0.253
#> 1772122_306_G11     3 0.000
#> 1772122_315_B09     3 0.000
#> 1772122_315_C06     1 0.000
#> 1772122_303_G07     3 0.000
#> 1772122_306_B06     3 0.000
#> 1772122_305_E09     3 0.000
#> 1772122_306_E05     3 0.000
#> 1772122_306_F07     3 0.000
#> 1772122_315_F05     1 0.751
#> 1772122_315_B12     3 0.000
#> 1772122_306_C08     3 0.249
#> 1772122_315_G05     1 1.000
#> 1772122_315_D07     3 0.000
#> 1772122_315_F06     1 0.000
#> 1772122_315_E04     1 0.751
#> 1772122_305_D09     1 1.000
#> 1772122_303_F09     3 0.000
#> 1772122_315_E12     3 0.000
#> 1772122_303_F08     3 0.000
#> 1772122_315_F08     3 0.000
#> 1772122_305_A11     3 0.000
#> 1772122_315_C05     3 0.000
#> 1772122_303_G01     3 0.000
#> 1772122_303_H03     3 0.000
#> 1772122_315_B08     3 0.000
#> 1772122_305_D10     3 0.000
#> 1772122_315_H12     3 0.000
#> 1772122_315_G08     3 0.000
#> 1772122_305_A07     3 0.000
#> 1772122_315_B10     3 0.000
#> 1772122_306_F10     3 0.000
#> 1772122_306_C01     3 0.000
#> 1772122_315_G01     3 0.000
#> 1772122_306_D01     3 0.000
#> 1772122_306_D07     3 0.000
#> 1772122_306_C12     3 0.000
#> 1772122_305_B06     3 0.000
#> 1772122_305_H01     3 0.000
#> 1772122_315_G04     3 0.498
#> 1772122_305_F04     1 1.000
#> 1772122_305_F02     1 0.751
#> 1772122_303_A04     3 0.000
#> 1772122_301_H11     3 0.000
#> 1772122_299_G02     3 0.000
#> 1772122_180_D11     3 0.000
#> 1772122_300_G02     3 0.000
#> 1772122_298_A02     3 0.000
#> 1772122_204_D02     1 0.000
#> 1772122_206_B03     1 0.000
#> 1772122_206_G04     1 0.000
#> 1772122_205_H04     1 0.000
#> 1772122_206_A02     1 0.000
#> 1772122_204_G07     1 0.000
#> 1772122_205_C06     1 0.000
#> 1772122_205_D08     1 0.000
#> 1772122_204_G01     1 0.000
#> 1772122_262_E11     1 0.000
#> 1772122_205_H11     1 0.000
#> 1772122_205_E04     1 0.000
#> 1772122_204_B09     1 0.000
#> 1772122_204_B05     1 0.000
#> 1772122_206_B04     1 0.000
#> 1772122_206_B11     1 0.000
#> 1772122_204_A06     1 0.000
#> 1772122_205_G05     1 0.000
#> 1772122_205_C01     1 0.000
#> 1772122_262_B09     1 0.000
#> 1772122_262_H11     1 0.000
#> 1772122_205_D09     1 0.000
#> 1772122_204_C10     1 0.000
#> 1772122_206_F01     1 0.000
#> 1772122_205_A07     1 0.000
#> 1772122_206_E08     1 0.000
#> 1772122_206_F03     1 0.000
#> 1772122_262_C10     1 0.249
#> 1772122_204_C09     1 0.000
#> 1772122_206_G12     1 0.000
#> 1772122_205_A08     1 0.000
#> 1772122_206_H04     1 0.000
#> 1772122_205_A03     3 0.498
#> 1772122_204_E04     1 0.000
#> 1772122_205_G08     1 0.000
#> 1772122_204_A02     1 0.000
#> 1772122_206_H07     1 0.000
#> 1772122_262_H01     3 0.747
#> 1772122_205_C11     1 0.000
#> 1772122_204_A09     1 0.000
#> 1772122_206_C02     1 0.000
#> 1772122_204_C08     1 0.000
#> 1772122_204_F07     1 0.000
#> 1772122_204_F11     3 1.000
#> 1772122_204_B06     1 0.000
#> 1772122_206_D02     1 0.000
#> 1772122_204_C07     1 0.000
#> 1772122_205_D05     1 0.000
#> 1772122_204_A05     1 0.000
#> 1772122_206_G10     1 0.000
#> 1772122_206_A12     1 0.000
#> 1772122_262_A09     1 0.000
#> 1772122_205_E10     1 0.000
#> 1772122_206_A08     1 0.000
#> 1772122_205_A12     1 0.000
#> 1772122_204_B03     1 0.000
#> 1772122_262_G07     1 0.000
#> 1772122_262_D03     3 1.000
#> 1772122_262_B05     1 0.000
#> 1772122_262_A04     1 0.000
#> 1772122_262_H03     1 0.000
#> 1772122_206_B08     1 0.000
#> 1772122_204_D12     1 0.000
#> 1772122_262_E03     3 0.000
#> 1772122_206_F02     3 1.000
#> 1772122_206_G03     1 0.000
#> 1772122_205_H12     1 0.000
#> 1772122_262_F12     1 0.747
#> 1772122_204_F02     1 0.000
#> 1772122_206_C10     1 0.000
#> 1772122_204_D01     1 0.000
#> 1772122_206_C07     1 0.000
#> 1772122_262_C08     1 0.249
#> 1772122_206_G01     1 0.747
#> 1772122_206_F05     3 1.000
#> 1772122_205_E02     1 0.000
#> 1772122_262_H08     1 0.000
#> 1772122_326_D09     1 0.000
#> 1772122_204_F01     1 0.000
#> 1772122_206_F04     1 0.000
#> 1772122_206_E09     1 0.000
#> 1772122_206_E10     1 0.000
#> 1772122_205_H09     1 0.000
#> 1772122_206_C06     1 0.000
#> 1772122_204_D03     1 0.000
#> 1772122_206_C04     1 0.000
#> 1772122_262_A11     1 0.498
#> 1772122_205_H06     1 0.000
#> 1772122_262_F11     1 0.000
#> 1772122_204_D09     1 0.000
#> 1772122_205_H05     1 0.000
#> 1772122_206_B12     1 0.000
#> 1772122_204_B02     1 0.000
#> 1772122_204_B07     1 0.000
#> 1772122_205_C07     1 0.000
#> 1772122_262_C12     3 0.751
#> 1772122_206_A10     3 0.000
#> 1772122_262_F03     1 0.000
#> 1772122_206_D11     1 0.000
#> 1772122_204_A12     3 0.000
#> 1772122_205_A04     1 0.000
#> 1772122_205_F05     1 0.000
#> 1772122_205_B04     1 0.249
#> 1772122_206_C03     1 0.000
#> 1772122_204_A11     1 0.000
#> 1772122_262_E08     1 0.000
#> 1772122_262_B10     1 0.000
#> 1772122_206_G06     1 0.000
#> 1772122_205_G04     1 0.000
#> 1772122_262_D05     1 0.000
#> 1772122_206_F06     1 0.000
#> 1772122_206_E12     1 0.000
#> 1772122_262_G04     3 0.498
#> 1772122_204_C11     1 0.000
#> 1772122_205_G10     3 0.000
#> 1772122_262_B07     1 0.000
#> 1772122_204_C03     1 0.000
#> 1772122_204_A04     1 0.000
#> 1772122_205_H03     1 0.000
#> 1772122_205_B09     1 0.000
#> 1772122_205_F09     1 0.000
#> 1772122_205_A09     1 0.000
#> 1772122_205_E08     1 0.000
#> 1772122_262_C05     1 0.000
#> 1772122_262_G06     1 1.000
#> 1772122_262_F10     1 0.000
#> 1772122_204_B10     1 0.000
#> 1772122_205_G03     1 0.000
#> 1772122_206_A05     1 0.000
#> 1772122_205_D06     1 0.000
#> 1772122_206_E03     1 0.000
#> 1772122_206_B07     1 0.000
#> 1772122_204_A03     1 0.000
#> 1772122_262_B08     1 0.000
#> 1772122_206_E04     1 0.000
#> 1772122_205_D04     1 0.000
#> 1772122_262_D09     1 0.000
#> 1772122_205_A01     1 0.000
#> 1772122_204_B01     1 0.000
#> 1772122_206_H09     1 0.000
#> 1772122_206_D05     1 0.000
#> 1772122_205_B03     1 0.000
#> 1772122_205_G12     1 0.000
#> 1772122_262_G12     1 0.000
#> 1772122_204_C02     1 0.000
#> 1772122_262_A01     1 0.000
#> 1772122_206_B02     1 0.000
#> 1772122_205_C10     1 0.000
#> 1772122_205_D11     1 0.000
#> 1772122_204_E01     1 0.000
#> 1772122_262_B06     1 0.000
#> 1772122_262_E05     1 0.000
#> 1772122_206_C11     1 0.000
#> 1772122_204_D08     1 0.000
#> 1772122_205_A11     1 0.000
#> 1772122_205_D07     1 0.000
#> 1772122_262_F08     1 0.253
#> 1772122_262_G11     1 0.249
#> 1772122_205_H10     1 0.751
#> 1772122_204_B12     1 0.000
#> 1772122_205_A10     1 0.000
#> 1772122_262_D07     1 0.000
#> 1772122_205_F10     1 0.000
#> 1772122_204_G06     1 0.498
#> 1772122_205_E12     1 0.000
#> 1772122_206_E05     1 0.000
#> 1772122_206_C05     1 0.000
#> 1772122_205_C12     1 0.000
#> 1772122_204_E07     1 0.000
#> 1772122_205_F06     1 0.000
#> 1772122_262_A12     1 0.498
#> 1772122_206_H11     3 0.000
#> 1772122_204_E06     1 0.000
#> 1772122_205_B06     1 0.000
#> 1772122_262_A08     1 0.000
#> 1772122_206_G08     1 0.000
#> 1772122_205_C04     3 1.000
#> 1772122_206_D12     1 0.000
#> 1772122_262_E06     3 0.498
#> 1772122_262_D01     1 1.000
#> 1772122_262_F06     3 1.000
#> 1772122_326_A09     1 0.000
#> 1772122_326_E06     1 0.000
#> 1772122_263_B07     1 0.000
#> 1772122_324_E04     1 0.000
#> 1772122_325_D02     1 0.000
#> 1772122_326_E11     1 0.000
#> 1772122_325_D07     1 0.000
#> 1772122_324_A09     1 0.000
#> 1772122_324_B04     1 0.000
#> 1772122_326_H05     1 0.000
#> 1772122_326_H12     1 0.000
#> 1772122_263_D11     1 0.000
#> 1772122_324_A10     1 0.000
#> 1772122_324_C07     1 0.000
#> 1772122_324_A11     1 0.000
#> 1772122_324_E07     1 0.000
#> 1772122_324_C01     1 0.000
#> 1772122_326_H04     1 0.000
#> 1772122_324_C02     1 0.000
#> 1772122_324_B09     1 0.000
#> 1772122_324_B06     1 0.000
#> 1772122_324_D06     1 0.000
#> 1772122_310_B10     4 0.000
#> 1772122_311_D04     2 0.000
#> 1772122_311_B04     4 0.000
#> 1772122_310_D05     4 0.000
#> 1772122_311_A03     2 0.000
#> 1772122_314_F11     4 0.000
#> 1772122_312_E02     2 0.249
#> 1772122_311_E12     2 0.000
#> 1772122_311_C02     2 0.000
#> 1772122_312_G11     4 0.000
#> 1772122_310_F11     2 0.000
#> 1772122_310_B07     4 0.000
#> 1772122_312_B03     2 0.000
#> 1772122_312_C09     2 0.249
#> 1772122_314_H06     4 0.000
#> 1772122_312_C04     4 0.000
#> 1772122_311_F07     2 0.000
#> 1772122_312_A06     2 0.000
#> 1772122_312_A09     2 0.000
#> 1772122_310_B06     2 0.000
#> 1772122_314_D10     2 0.000
#> 1772122_310_F02     2 0.000
#> 1772122_314_F12     4 0.000
#> 1772122_312_E06     2 0.000
#> 1772122_314_A07     2 0.000
#> 1772122_312_H09     4 0.000
#> 1772122_312_D06     2 0.000
#> 1772122_314_A05     2 0.000
#> 1772122_310_H06     4 0.000
#> 1772122_310_C12     4 0.000
#> 1772122_311_F11     2 0.000
#> 1772122_314_D07     4 0.000
#> 1772122_314_A06     2 0.000
#> 1772122_314_G09     2 0.000
#> 1772122_312_B11     2 0.253
#> 1772122_314_B03     4 0.000
#> 1772122_314_B07     2 0.000
#> 1772122_312_D05     2 0.000
#> 1772122_314_G06     2 0.000
#> 1772122_312_C10     4 0.000
#> 1772122_314_B12     4 0.000
#> 1772122_310_E07     4 0.000
#> 1772122_314_D11     2 0.751
#> 1772122_310_E03     4 0.751
#> 1772122_314_G10     4 0.000
#> 1772122_314_C04     4 0.000
#> 1772122_312_H02     2 0.000
#> 1772122_312_C01     2 0.000
#> 1772122_314_A04     2 0.000
#> 1772122_310_B05     4 0.000
#> 1772122_310_A03     4 0.000
#> 1772122_312_F12     2 0.249
#> 1772122_310_F09     4 0.000
#> 1772122_311_A06     4 0.000
#> 1772122_312_E09     4 0.000
#> 1772122_312_C08     2 0.000
#> 1772122_314_D12     4 0.000
#> 1772122_311_B09     4 0.502
#> 1772122_312_D12     4 0.000
#> 1772122_314_F10     4 0.000
#> 1772122_310_G06     4 0.000
#> 1772122_314_F04     2 0.000
#> 1772122_312_F10     4 0.000
#> 1772122_310_H05     4 0.000
#> 1772122_312_B04     2 0.000
#> 1772122_310_G10     4 0.000
#> 1772122_314_C10     2 0.249
#> 1772122_311_F01     4 0.000
#> 1772122_314_E12     4 0.000
#> 1772122_312_E12     2 0.000
#> 1772122_314_F05     2 0.000
#> 1772122_312_F01     4 0.000
#> 1772122_311_G08     4 0.000
#> 1772122_312_A11     4 0.000
#> 1772122_310_E10     4 0.000
#> 1772122_314_G11     2 0.000
#> 1772122_312_F07     4 0.000
#> 1772122_314_E07     4 0.000
#> 1772122_314_C08     4 0.000
#> 1772122_314_A12     4 0.000
#> 1772122_311_C01     2 0.000
#> 1772122_314_D08     4 0.000
#> 1772122_310_A04     4 0.000
#> 1772122_314_E02     2 0.000
#> 1772122_312_B06     2 0.000
#> 1772122_312_D07     4 0.000
#> 1772122_312_B01     4 0.000
#> 1772122_311_F09     4 0.000
#> 1772122_312_B07     4 0.000
#> 1772122_312_F06     2 0.000
#> 1772122_310_G01     4 0.000
#> 1772122_314_G02     2 0.000
#> 1772122_310_A05     2 0.249
#> 1772122_314_A02     4 0.249
#> 1772122_312_E08     4 0.000
#> 1772122_312_A12     2 0.000
#> 1772122_310_E04     2 0.000
#> 1772122_310_H09     4 0.000
#> 1772122_311_D09     2 0.000
#> 1772122_311_H06     2 0.000
#> 1772122_311_G04     2 0.000
#> 1772122_311_H04     2 0.000
#> 1772122_310_G02     4 0.000
#> 1772122_310_E05     4 0.000
#> 1772122_311_C09     2 0.000
#> 1772122_310_G07     4 0.000
#> 1772122_311_E09     2 0.000
#> 1772122_310_F12     4 1.000
#> 1772122_310_F04     4 0.000
#> 1772122_311_G10     2 0.000
#> 1772122_311_D06     2 0.000
#> 1772122_311_D02     4 0.000
#> 1772122_310_D12     2 0.249
#> 1772122_311_B05     2 0.000
#> 1772122_310_E02     4 0.000
#> 1772122_310_F05     2 0.000
#> 1772122_310_C10     4 0.000
#> 1772122_310_A02     2 0.000
#> 1772122_310_D09     2 0.000
#> 1772122_311_D03     2 0.000
#> 1772122_311_G07     4 0.000
#> 1772122_310_E11     2 0.000
#> 1772122_311_H05     2 0.000
#> 1772122_311_E04     2 0.000
#> 1772122_311_G11     2 0.000
#> 1772122_311_E06     4 0.000
#> 1772122_311_G12     2 0.000
#> 1772122_311_A10     2 0.000
#> 1772122_311_A07     2 0.000
#> 1772122_310_D02     4 0.000
#> 1772122_311_H03     4 0.000
#> 1772122_310_A07     2 1.000
#> 1772122_310_D06     2 0.000
#> 1772122_311_A01     4 0.249
#> 1772122_311_B01     4 0.000
#> 1772122_310_H01     4 0.000
#> 1772122_310_A12     4 0.751
#> 1772122_311_B11     2 0.000
#> 1772122_310_A01     2 0.000
#> 1772122_311_D11     2 0.253
#> 1772122_310_H02     2 0.000
#> 1772122_310_H12     2 0.751
#> 1772122_311_F05     4 0.498
#> 1772122_311_A12     2 0.000
#> 1772122_310_A09     2 0.000
#> 1772122_311_H11     2 0.000
#> 1772122_311_E05     2 0.000
#> 1772122_311_A09     2 0.000
#> 1772122_314_H08     4 0.000
#> 1772122_312_F05     2 0.000
#> 1772122_312_A07     2 0.000
#> 1772122_310_H04     2 0.000
#> 1772122_310_D11     2 0.000
#> 1772122_310_A10     4 0.000
#> 1772122_310_H10     2 0.000
#> 1772122_310_G05     2 0.502
#> 1772122_310_D10     2 0.000
#> 1772122_314_C05     4 0.000
#> 1772122_312_F02     2 0.253
#> 1772122_310_B09     2 0.249
#> 1772122_310_F06     2 0.000
#> 1772122_310_E06     2 0.000
#> 1772122_311_D10     2 0.000
#> 1772122_311_E03     2 0.000
#> 1772122_310_G04     2 0.000
#> 1772122_311_B07     2 0.000
#> 1772122_311_C11     2 0.000
#> 1772122_314_B04     2 0.249
#> 1772122_312_F04     2 0.000
#> 1772122_314_D03     4 0.249
#> 1772122_314_B06     4 0.000
#> 1772122_314_H07     4 0.502
#> 1772122_314_C12     4 0.000
#> 1772122_314_C06     4 0.000
#> 1772122_312_H11     2 0.000
#> 1772122_312_H12     2 0.000
#> 1772122_312_H08     2 0.249
#> 1772122_314_E04     2 0.000
#> 1772122_312_H05     4 0.751
#> 1772122_310_C06     4 0.000
#> 1772122_312_G06     2 0.000
#> 1772122_314_E08     4 0.000
#> 1772122_314_G05     4 0.000
#> 1772122_314_D09     4 0.000
#> 1772122_314_B05     4 0.498
#> 1772122_314_B08     2 0.000
#> 1772122_314_A10     2 0.000
#> 1772122_312_D08     2 0.000
#> 1772122_312_C07     2 0.000
#> 1772122_312_D10     4 0.000
#> 1772122_312_B02     2 0.253
#> 1772122_312_C06     2 0.000
#> 1772122_312_G04     2 0.751
#> 1772122_314_H04     2 0.000
#> 1772122_312_A03     4 0.000
#> 1772122_314_C09     2 0.000
#> 1772122_314_H03     4 0.000
#> 1772122_314_E11     2 0.000
#> 1772122_314_H12     4 0.249
#> 1772122_312_E04     2 0.000
#> 1772122_312_G12     2 0.000
#> 1772122_314_H05     4 0.000
#> 1772122_314_D04     2 0.498
#> 1772122_312_F11     4 0.249
#> 1772122_310_D04     2 0.000
#> 1772122_311_E08     2 0.000
#> 1772122_310_B11     2 0.000
#> 1772122_311_E10     2 0.000
#> 1772122_312_E10     4 0.000
#> 1772122_310_C04     2 0.000
#> 1772122_314_G04     4 0.000
#> 1772122_311_H07     2 0.000
#> 1772122_312_D03     2 0.000
#> 1772122_314_A03     2 0.249
#> 1772122_312_D04     2 0.000
#> 1772122_312_D02     2 0.000
#> 1772122_314_H11     2 0.000
#> 1772122_311_B06     2 0.000
#> 1772122_312_E05     4 0.000
#> 1772122_314_F06     2 0.000
#> 1772122_314_B11     4 0.000
#> 1772122_312_G02     4 0.000
#> 1772122_312_C05     4 0.000
#> 1772122_311_F10     4 0.000
#> 1772122_311_B12     2 0.502
#> 1772122_314_E06     4 0.000
#> 1772122_314_C01     4 0.000
#> 1772122_312_D11     2 0.000
#> 1772122_310_F01     2 0.502
#> 1772122_314_E05     2 0.747
#> 1772122_312_H10     4 0.000
#> 1772122_311_G01     4 0.000
#> 1772122_310_C03     4 0.000
#> 1772122_312_F09     2 0.000
#> 1772122_311_C08     2 0.000
#> 1772122_314_B10     2 0.502
#> 1772122_310_B03     4 0.000
#> 1772122_311_D08     2 0.000
#> 1772122_310_A11     2 0.000
#> 1772122_311_F02     2 0.000
#> 1772122_310_G12     4 0.000
#> 1772122_311_H01     4 0.000
#> 1772122_311_A04     4 0.000
#> 1772122_311_G06     2 0.000
#> 1772122_312_G09     4 0.000
#> 1772122_314_C11     4 0.000
#> 1772122_312_C02     2 0.000
#> 1772122_312_B12     4 0.000
#> 1772122_314_B01     2 0.498
#> 1772122_311_D07     4 0.249
#> 1772122_311_A08     2 0.000
#> 1772122_314_B09     2 0.000
#> 1772122_312_D09     4 0.000
#> 1772122_311_B10     4 0.000
#> 1772122_310_G08     4 0.000
#> 1772122_311_D12     2 0.000
#> 1772122_310_B04     2 0.000
#> 1772122_310_C02     2 0.000
#> 1772122_311_H12     4 0.249
#> 1772122_310_A08     4 0.000
#> 1772122_310_B08     4 0.000
#> 1772122_311_A02     2 0.000
#> 1772122_311_B02     2 0.253
#> 1772122_310_F08     4 0.000
#> 1772122_311_F08     2 1.000
#> 1772122_314_F08     4 0.000
#> 1772122_312_A02     2 0.000
#> 1772122_311_C04     4 0.000
#> 1772122_314_E01     4 0.000
#> 1772122_311_H10     2 0.000
#> 1772122_314_G12     4 0.000
#> 1772122_312_A10     2 0.000
#> 1772122_314_G08     2 0.000
#> 1772122_311_F06     2 0.000
#> 1772122_312_E11     2 0.000
#> 1772122_310_H11     2 0.000
#> 1772122_311_H02     2 0.000

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-02-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-02-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-02-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-02-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-02-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-02-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-02-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-02-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-02-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-02-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-02-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-02-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-02-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-02-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-02-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-02-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-02-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      681          3.96e-137          2.77e-147 2
#> ATC:skmeans      642          5.09e-244          9.95e-270 3
#> ATC:skmeans      600          3.77e-213          2.86e-240 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node021

Parent node: Node02. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["021"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 10020 rows and 206 columns.
#>   Top rows (974) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 2.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-021-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-021-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.959           0.947       0.978         0.5006 0.501   0.501
#> 3 3 0.886           0.930       0.964         0.3241 0.753   0.544
#> 4 4 0.800           0.683       0.857         0.0902 0.842   0.595

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 2

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_205_E06     2   0.000      0.974 0.00 1.00
#> 1772122_204_D11     2   0.000      0.974 0.00 1.00
#> 1772122_206_A03     1   0.000      0.981 1.00 0.00
#> 1772122_204_F08     2   0.000      0.974 0.00 1.00
#> 1772122_206_D01     2   0.000      0.974 0.00 1.00
#> 1772122_204_C01     2   0.722      0.752 0.20 0.80
#> 1772122_262_A07     2   0.000      0.974 0.00 1.00
#> 1772122_206_B06     2   0.000      0.974 0.00 1.00
#> 1772122_205_A06     2   0.000      0.974 0.00 1.00
#> 1772122_205_E05     1   0.000      0.981 1.00 0.00
#> 1772122_306_H05     2   0.000      0.974 0.00 1.00
#> 1772122_315_C06     2   0.000      0.974 0.00 1.00
#> 1772122_315_F05     2   0.958      0.402 0.38 0.62
#> 1772122_315_G05     2   0.000      0.974 0.00 1.00
#> 1772122_315_F06     2   0.000      0.974 0.00 1.00
#> 1772122_315_E04     2   0.000      0.974 0.00 1.00
#> 1772122_305_D09     2   0.000      0.974 0.00 1.00
#> 1772122_305_F04     2   0.000      0.974 0.00 1.00
#> 1772122_305_F02     2   0.000      0.974 0.00 1.00
#> 1772122_204_D02     2   0.000      0.974 0.00 1.00
#> 1772122_206_B03     2   0.000      0.974 0.00 1.00
#> 1772122_206_G04     1   0.000      0.981 1.00 0.00
#> 1772122_205_H04     2   0.000      0.974 0.00 1.00
#> 1772122_206_A02     2   0.000      0.974 0.00 1.00
#> 1772122_204_G07     2   0.000      0.974 0.00 1.00
#> 1772122_205_C06     1   0.000      0.981 1.00 0.00
#> 1772122_205_D08     1   0.000      0.981 1.00 0.00
#> 1772122_204_G01     1   0.000      0.981 1.00 0.00
#> 1772122_262_E11     2   0.000      0.974 0.00 1.00
#> 1772122_205_H11     2   0.000      0.974 0.00 1.00
#> 1772122_205_E04     1   0.995      0.137 0.54 0.46
#> 1772122_204_B09     2   0.000      0.974 0.00 1.00
#> 1772122_204_B05     1   0.000      0.981 1.00 0.00
#> 1772122_206_B04     2   0.000      0.974 0.00 1.00
#> 1772122_206_B11     2   0.000      0.974 0.00 1.00
#> 1772122_204_A06     2   0.904      0.543 0.32 0.68
#> 1772122_205_G05     1   0.000      0.981 1.00 0.00
#> 1772122_205_C01     2   0.000      0.974 0.00 1.00
#> 1772122_262_B09     1   0.000      0.981 1.00 0.00
#> 1772122_262_H11     1   0.000      0.981 1.00 0.00
#> 1772122_205_D09     1   0.000      0.981 1.00 0.00
#> 1772122_204_C10     1   0.000      0.981 1.00 0.00
#> 1772122_206_F01     2   0.000      0.974 0.00 1.00
#> 1772122_205_A07     2   0.000      0.974 0.00 1.00
#> 1772122_206_E08     2   0.000      0.974 0.00 1.00
#> 1772122_206_F03     1   0.000      0.981 1.00 0.00
#> 1772122_262_C10     1   0.000      0.981 1.00 0.00
#> 1772122_204_C09     2   0.000      0.974 0.00 1.00
#> 1772122_206_G12     1   0.000      0.981 1.00 0.00
#> 1772122_205_A08     1   0.000      0.981 1.00 0.00
#> 1772122_206_H04     2   0.000      0.974 0.00 1.00
#> 1772122_204_E04     1   0.000      0.981 1.00 0.00
#> 1772122_205_G08     2   0.327      0.920 0.06 0.94
#> 1772122_204_A02     2   0.000      0.974 0.00 1.00
#> 1772122_206_H07     2   0.000      0.974 0.00 1.00
#> 1772122_205_C11     1   0.000      0.981 1.00 0.00
#> 1772122_204_A09     1   0.000      0.981 1.00 0.00
#> 1772122_206_C02     1   0.000      0.981 1.00 0.00
#> 1772122_204_C08     2   0.000      0.974 0.00 1.00
#> 1772122_204_F07     2   0.000      0.974 0.00 1.00
#> 1772122_204_B06     2   0.000      0.974 0.00 1.00
#> 1772122_206_D02     2   0.000      0.974 0.00 1.00
#> 1772122_204_C07     1   0.000      0.981 1.00 0.00
#> 1772122_205_D05     1   0.000      0.981 1.00 0.00
#> 1772122_204_A05     1   0.000      0.981 1.00 0.00
#> 1772122_206_G10     1   0.000      0.981 1.00 0.00
#> 1772122_206_A12     1   0.000      0.981 1.00 0.00
#> 1772122_262_A09     1   0.000      0.981 1.00 0.00
#> 1772122_205_E10     2   0.000      0.974 0.00 1.00
#> 1772122_206_A08     2   0.000      0.974 0.00 1.00
#> 1772122_205_A12     1   0.000      0.981 1.00 0.00
#> 1772122_204_B03     1   0.000      0.981 1.00 0.00
#> 1772122_262_G07     2   0.000      0.974 0.00 1.00
#> 1772122_262_B05     1   0.000      0.981 1.00 0.00
#> 1772122_262_A04     1   0.000      0.981 1.00 0.00
#> 1772122_262_H03     1   0.000      0.981 1.00 0.00
#> 1772122_206_B08     2   0.000      0.974 0.00 1.00
#> 1772122_204_D12     1   0.000      0.981 1.00 0.00
#> 1772122_206_G03     1   0.000      0.981 1.00 0.00
#> 1772122_205_H12     1   0.000      0.981 1.00 0.00
#> 1772122_262_F12     1   0.000      0.981 1.00 0.00
#> 1772122_204_F02     2   0.000      0.974 0.00 1.00
#> 1772122_206_C10     2   0.000      0.974 0.00 1.00
#> 1772122_204_D01     1   0.000      0.981 1.00 0.00
#> 1772122_206_C07     1   0.000      0.981 1.00 0.00
#> 1772122_262_C08     1   0.000      0.981 1.00 0.00
#> 1772122_206_G01     1   0.000      0.981 1.00 0.00
#> 1772122_205_E02     2   0.000      0.974 0.00 1.00
#> 1772122_262_H08     1   0.000      0.981 1.00 0.00
#> 1772122_326_D09     2   0.000      0.974 0.00 1.00
#> 1772122_204_F01     2   0.000      0.974 0.00 1.00
#> 1772122_206_F04     2   0.000      0.974 0.00 1.00
#> 1772122_206_E09     2   0.000      0.974 0.00 1.00
#> 1772122_206_E10     2   0.000      0.974 0.00 1.00
#> 1772122_205_H09     1   0.000      0.981 1.00 0.00
#> 1772122_206_C06     2   0.000      0.974 0.00 1.00
#> 1772122_204_D03     1   0.881      0.572 0.70 0.30
#> 1772122_206_C04     2   0.000      0.974 0.00 1.00
#> 1772122_262_A11     1   0.000      0.981 1.00 0.00
#> 1772122_205_H06     2   0.000      0.974 0.00 1.00
#> 1772122_262_F11     1   0.000      0.981 1.00 0.00
#> 1772122_204_D09     1   0.000      0.981 1.00 0.00
#> 1772122_205_H05     2   0.000      0.974 0.00 1.00
#> 1772122_206_B12     1   0.000      0.981 1.00 0.00
#> 1772122_204_B02     2   0.000      0.974 0.00 1.00
#> 1772122_204_B07     2   0.000      0.974 0.00 1.00
#> 1772122_205_C07     2   0.000      0.974 0.00 1.00
#> 1772122_262_F03     1   0.000      0.981 1.00 0.00
#> 1772122_206_D11     2   0.000      0.974 0.00 1.00
#> 1772122_205_A04     1   0.760      0.714 0.78 0.22
#> 1772122_205_F05     1   0.000      0.981 1.00 0.00
#> 1772122_205_B04     1   0.000      0.981 1.00 0.00
#> 1772122_206_C03     1   0.000      0.981 1.00 0.00
#> 1772122_204_A11     2   0.000      0.974 0.00 1.00
#> 1772122_262_E08     1   0.000      0.981 1.00 0.00
#> 1772122_262_B10     1   0.000      0.981 1.00 0.00
#> 1772122_206_G06     2   0.981      0.285 0.42 0.58
#> 1772122_205_G04     1   0.000      0.981 1.00 0.00
#> 1772122_262_D05     1   0.000      0.981 1.00 0.00
#> 1772122_206_F06     1   0.000      0.981 1.00 0.00
#> 1772122_206_E12     1   0.000      0.981 1.00 0.00
#> 1772122_204_C11     2   0.000      0.974 0.00 1.00
#> 1772122_262_B07     2   0.000      0.974 0.00 1.00
#> 1772122_204_C03     2   0.000      0.974 0.00 1.00
#> 1772122_204_A04     2   0.000      0.974 0.00 1.00
#> 1772122_205_H03     1   0.000      0.981 1.00 0.00
#> 1772122_205_B09     1   0.000      0.981 1.00 0.00
#> 1772122_205_F09     1   0.000      0.981 1.00 0.00
#> 1772122_205_A09     2   0.000      0.974 0.00 1.00
#> 1772122_205_E08     1   0.000      0.981 1.00 0.00
#> 1772122_262_C05     1   0.000      0.981 1.00 0.00
#> 1772122_262_G06     1   0.000      0.981 1.00 0.00
#> 1772122_262_F10     2   0.000      0.974 0.00 1.00
#> 1772122_204_B10     1   0.000      0.981 1.00 0.00
#> 1772122_205_G03     2   0.000      0.974 0.00 1.00
#> 1772122_206_A05     2   0.925      0.498 0.34 0.66
#> 1772122_205_D06     2   0.000      0.974 0.00 1.00
#> 1772122_206_E03     1   0.000      0.981 1.00 0.00
#> 1772122_206_B07     1   0.000      0.981 1.00 0.00
#> 1772122_204_A03     1   0.000      0.981 1.00 0.00
#> 1772122_262_B08     1   0.760      0.716 0.78 0.22
#> 1772122_206_E04     1   0.327      0.924 0.94 0.06
#> 1772122_205_D04     2   0.000      0.974 0.00 1.00
#> 1772122_262_D09     1   0.000      0.981 1.00 0.00
#> 1772122_205_A01     1   0.000      0.981 1.00 0.00
#> 1772122_204_B01     1   0.000      0.981 1.00 0.00
#> 1772122_206_H09     2   0.584      0.832 0.14 0.86
#> 1772122_206_D05     1   0.000      0.981 1.00 0.00
#> 1772122_205_B03     1   0.000      0.981 1.00 0.00
#> 1772122_205_G12     1   0.000      0.981 1.00 0.00
#> 1772122_262_G12     2   0.327      0.920 0.06 0.94
#> 1772122_204_C02     2   0.000      0.974 0.00 1.00
#> 1772122_262_A01     1   0.000      0.981 1.00 0.00
#> 1772122_206_B02     2   0.000      0.974 0.00 1.00
#> 1772122_205_C10     1   0.000      0.981 1.00 0.00
#> 1772122_205_D11     2   0.000      0.974 0.00 1.00
#> 1772122_204_E01     1   0.000      0.981 1.00 0.00
#> 1772122_262_B06     2   0.000      0.974 0.00 1.00
#> 1772122_262_E05     2   0.634      0.807 0.16 0.84
#> 1772122_206_C11     2   0.000      0.974 0.00 1.00
#> 1772122_204_D08     1   0.000      0.981 1.00 0.00
#> 1772122_205_A11     2   0.000      0.974 0.00 1.00
#> 1772122_205_D07     2   0.000      0.974 0.00 1.00
#> 1772122_262_F08     1   0.000      0.981 1.00 0.00
#> 1772122_262_G11     1   0.000      0.981 1.00 0.00
#> 1772122_205_H10     1   0.000      0.981 1.00 0.00
#> 1772122_204_B12     1   0.000      0.981 1.00 0.00
#> 1772122_205_A10     1   0.000      0.981 1.00 0.00
#> 1772122_262_D07     2   0.827      0.657 0.26 0.74
#> 1772122_205_F10     1   0.000      0.981 1.00 0.00
#> 1772122_204_G06     1   0.000      0.981 1.00 0.00
#> 1772122_205_E12     1   0.000      0.981 1.00 0.00
#> 1772122_206_E05     1   0.904      0.530 0.68 0.32
#> 1772122_206_C05     2   0.000      0.974 0.00 1.00
#> 1772122_205_C12     1   0.000      0.981 1.00 0.00
#> 1772122_204_E07     2   0.000      0.974 0.00 1.00
#> 1772122_205_F06     2   0.000      0.974 0.00 1.00
#> 1772122_262_A12     1   0.000      0.981 1.00 0.00
#> 1772122_204_E06     2   0.000      0.974 0.00 1.00
#> 1772122_205_B06     2   0.000      0.974 0.00 1.00
#> 1772122_262_A08     1   0.327      0.923 0.94 0.06
#> 1772122_206_G08     1   0.402      0.902 0.92 0.08
#> 1772122_206_D12     2   0.000      0.974 0.00 1.00
#> 1772122_262_D01     1   0.000      0.981 1.00 0.00
#> 1772122_326_A09     2   0.469      0.878 0.10 0.90
#> 1772122_326_E06     2   0.000      0.974 0.00 1.00
#> 1772122_263_B07     1   0.000      0.981 1.00 0.00
#> 1772122_324_E04     2   0.000      0.974 0.00 1.00
#> 1772122_325_D02     2   0.000      0.974 0.00 1.00
#> 1772122_326_E11     2   0.000      0.974 0.00 1.00
#> 1772122_325_D07     2   0.000      0.974 0.00 1.00
#> 1772122_324_A09     2   0.000      0.974 0.00 1.00
#> 1772122_324_B04     2   0.000      0.974 0.00 1.00
#> 1772122_326_H05     2   0.000      0.974 0.00 1.00
#> 1772122_326_H12     2   0.000      0.974 0.00 1.00
#> 1772122_263_D11     2   0.000      0.974 0.00 1.00
#> 1772122_324_A10     2   0.141      0.956 0.02 0.98
#> 1772122_324_C07     2   0.000      0.974 0.00 1.00
#> 1772122_324_A11     2   0.000      0.974 0.00 1.00
#> 1772122_324_E07     2   0.000      0.974 0.00 1.00
#> 1772122_324_C01     2   0.000      0.974 0.00 1.00
#> 1772122_326_H04     2   0.000      0.974 0.00 1.00
#> 1772122_324_C02     2   0.000      0.974 0.00 1.00
#> 1772122_324_B09     2   0.958      0.399 0.38 0.62
#> 1772122_324_B06     2   0.000      0.974 0.00 1.00
#> 1772122_324_D06     2   0.000      0.974 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_205_E06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_D11     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_A03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_F08     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_D01     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_C01     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_A07     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_B06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_A06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_E05     3  0.0892      0.940 0.02 0.00 0.98
#> 1772122_306_H05     3  0.4002      0.771 0.00 0.16 0.84
#> 1772122_315_C06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_315_F05     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_315_G05     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_315_F06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_315_E04     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_305_D09     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_305_F04     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_305_F02     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_D02     2  0.3686      0.863 0.00 0.86 0.14
#> 1772122_206_B03     2  0.2537      0.904 0.00 0.92 0.08
#> 1772122_206_G04     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_H04     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_206_A02     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_204_G07     2  0.2066      0.914 0.00 0.94 0.06
#> 1772122_205_C06     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_D08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_G01     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_E11     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_H11     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_E04     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_204_B09     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_204_B05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_B04     2  0.2959      0.891 0.00 0.90 0.10
#> 1772122_206_B11     2  0.5016      0.758 0.00 0.76 0.24
#> 1772122_204_A06     2  0.8953      0.500 0.26 0.56 0.18
#> 1772122_205_G05     1  0.0892      0.972 0.98 0.02 0.00
#> 1772122_205_C01     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_B09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_H11     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_D09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_C10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_F01     2  0.4555      0.807 0.00 0.80 0.20
#> 1772122_205_A07     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_E08     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_F03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_C10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_C09     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_206_G12     1  0.1529      0.949 0.96 0.04 0.00
#> 1772122_205_A08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_H04     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_204_E04     1  0.5560      0.556 0.70 0.00 0.30
#> 1772122_205_G08     3  0.1529      0.923 0.00 0.04 0.96
#> 1772122_204_A02     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_206_H07     2  0.3686      0.863 0.00 0.86 0.14
#> 1772122_205_C11     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_A09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_C02     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_C08     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_F07     3  0.6045      0.286 0.00 0.38 0.62
#> 1772122_204_B06     2  0.4796      0.784 0.00 0.78 0.22
#> 1772122_206_D02     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_C07     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_D05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_A05     3  0.3686      0.826 0.14 0.00 0.86
#> 1772122_206_G10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_A12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_A09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_E10     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_206_A08     2  0.4796      0.784 0.00 0.78 0.22
#> 1772122_205_A12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_B03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_G07     2  0.2959      0.891 0.00 0.90 0.10
#> 1772122_262_B05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_A04     3  0.0892      0.940 0.02 0.00 0.98
#> 1772122_262_H03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_B08     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_D12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_G03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_H12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_F12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_F02     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_C10     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_D01     3  0.5397      0.627 0.28 0.00 0.72
#> 1772122_206_C07     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_C08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_G01     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_E02     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_H08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_326_D09     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_204_F01     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_F04     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_E09     2  0.4796      0.784 0.00 0.78 0.22
#> 1772122_206_E10     2  0.5397      0.697 0.00 0.72 0.28
#> 1772122_205_H09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_C06     2  0.4555      0.807 0.00 0.80 0.20
#> 1772122_204_D03     2  0.2537      0.875 0.08 0.92 0.00
#> 1772122_206_C04     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_A11     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_H06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_F11     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_D09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_H05     2  0.4796      0.784 0.00 0.78 0.22
#> 1772122_206_B12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_B02     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_204_B07     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_205_C07     2  0.1529      0.923 0.00 0.96 0.04
#> 1772122_262_F03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_D11     2  0.4002      0.845 0.00 0.84 0.16
#> 1772122_205_A04     2  0.5835      0.500 0.34 0.66 0.00
#> 1772122_205_F05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_B04     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_C03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_A11     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_E08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_B10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_G06     2  0.6530      0.781 0.12 0.76 0.12
#> 1772122_205_G04     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_D05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_F06     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_E12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_C11     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_B07     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_204_C03     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_204_A04     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_205_H03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_B09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_F09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_A09     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_205_E08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_C05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_G06     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_F10     3  0.0892      0.939 0.00 0.02 0.98
#> 1772122_204_B10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_G03     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_206_A05     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_205_D06     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_E03     3  0.2066      0.906 0.06 0.00 0.94
#> 1772122_206_B07     3  0.4796      0.727 0.22 0.00 0.78
#> 1772122_204_A03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_B08     3  0.6387      0.572 0.30 0.02 0.68
#> 1772122_206_E04     1  0.5397      0.601 0.72 0.00 0.28
#> 1772122_205_D04     2  0.4796      0.784 0.00 0.78 0.22
#> 1772122_262_D09     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_A01     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_B01     3  0.2959      0.867 0.10 0.00 0.90
#> 1772122_206_H09     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_206_D05     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_B03     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_G12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_G12     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_204_C02     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_A01     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_B02     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_C10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_D11     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_204_E01     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_B06     2  0.3340      0.878 0.00 0.88 0.12
#> 1772122_262_E05     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_206_C11     2  0.3340      0.878 0.00 0.88 0.12
#> 1772122_204_D08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_A11     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_D07     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_262_F08     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_262_G11     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_H10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_B12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_A10     3  0.5016      0.695 0.24 0.00 0.76
#> 1772122_262_D07     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_F10     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_G06     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_205_E12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_206_E05     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_206_C05     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_C12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_E07     3  0.0000      0.956 0.00 0.00 1.00
#> 1772122_205_F06     2  0.1529      0.922 0.00 0.96 0.04
#> 1772122_262_A12     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_204_E06     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_205_B06     2  0.0892      0.930 0.00 0.98 0.02
#> 1772122_262_A08     3  0.1529      0.924 0.04 0.00 0.96
#> 1772122_206_G08     2  0.0892      0.922 0.02 0.98 0.00
#> 1772122_206_D12     2  0.3340      0.878 0.00 0.88 0.12
#> 1772122_262_D01     1  0.0000      0.991 1.00 0.00 0.00
#> 1772122_326_A09     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_326_E06     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_263_B07     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_E04     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_325_D02     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_326_E11     3  0.4002      0.804 0.00 0.16 0.84
#> 1772122_325_D07     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_A09     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_B04     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_326_H05     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_326_H12     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_263_D11     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_A10     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_C07     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_A11     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_E07     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_C01     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_326_H04     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_C02     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_B09     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_B06     2  0.0000      0.934 0.00 1.00 0.00
#> 1772122_324_D06     2  0.0000      0.934 0.00 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_205_E06     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_204_D11     3  0.0707     0.4218 0.00 0.00 0.98 0.02
#> 1772122_206_A03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_F08     3  0.3172     0.5558 0.00 0.00 0.84 0.16
#> 1772122_206_D01     3  0.4855    -0.4981 0.00 0.00 0.60 0.40
#> 1772122_204_C01     4  0.4948     0.7417 0.00 0.00 0.44 0.56
#> 1772122_262_A07     3  0.4406    -0.3099 0.00 0.00 0.70 0.30
#> 1772122_206_B06     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_205_A06     3  0.1637     0.3538 0.00 0.00 0.94 0.06
#> 1772122_205_E05     4  0.5860     0.7453 0.04 0.00 0.38 0.58
#> 1772122_306_H05     4  0.3853     0.1669 0.00 0.02 0.16 0.82
#> 1772122_315_C06     3  0.4907    -0.5362 0.00 0.00 0.58 0.42
#> 1772122_315_F05     4  0.4948     0.7245 0.00 0.00 0.44 0.56
#> 1772122_315_G05     4  0.4977     0.7168 0.00 0.00 0.46 0.54
#> 1772122_315_F06     4  0.4977     0.7168 0.00 0.00 0.46 0.54
#> 1772122_315_E04     3  0.4907    -0.5362 0.00 0.00 0.58 0.42
#> 1772122_305_D09     3  0.4907    -0.5362 0.00 0.00 0.58 0.42
#> 1772122_305_F04     3  0.4907    -0.5362 0.00 0.00 0.58 0.42
#> 1772122_305_F02     4  0.4907     0.7142 0.00 0.00 0.42 0.58
#> 1772122_204_D02     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_206_B03     3  0.6510     0.5946 0.00 0.08 0.54 0.38
#> 1772122_206_G04     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_H04     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_206_A02     3  0.6212     0.6064 0.00 0.06 0.56 0.38
#> 1772122_204_G07     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_205_C06     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_D08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_G01     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_E11     3  0.0707     0.4218 0.00 0.00 0.98 0.02
#> 1772122_205_H11     3  0.1637     0.3721 0.00 0.00 0.94 0.06
#> 1772122_205_E04     2  0.7250     0.5170 0.02 0.58 0.12 0.28
#> 1772122_204_B09     3  0.6941     0.5690 0.00 0.12 0.52 0.36
#> 1772122_204_B05     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_206_B04     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_206_B11     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_204_A06     4  0.6336    -0.0605 0.14 0.02 0.14 0.70
#> 1772122_205_G05     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_205_C01     4  0.4907     0.7423 0.00 0.00 0.42 0.58
#> 1772122_262_B09     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_262_H11     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_D09     1  0.1637     0.9366 0.94 0.00 0.00 0.06
#> 1772122_204_C10     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_206_F01     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_205_A07     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_206_E08     4  0.4977     0.7273 0.00 0.00 0.46 0.54
#> 1772122_206_F03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_C10     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_C09     3  0.6941     0.5690 0.00 0.12 0.52 0.36
#> 1772122_206_G12     1  0.3611     0.8560 0.86 0.08 0.00 0.06
#> 1772122_205_A08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_H04     2  0.5428     0.5386 0.00 0.60 0.02 0.38
#> 1772122_204_E04     1  0.7707    -0.2444 0.44 0.00 0.24 0.32
#> 1772122_205_G08     3  0.4977    -0.1416 0.00 0.00 0.54 0.46
#> 1772122_204_A02     2  0.7904    -0.1176 0.00 0.36 0.34 0.30
#> 1772122_206_H07     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_205_C11     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_A09     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_C02     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_204_C08     3  0.4907    -0.5592 0.00 0.00 0.58 0.42
#> 1772122_204_F07     3  0.4855     0.6207 0.00 0.00 0.60 0.40
#> 1772122_204_B06     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_206_D02     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_204_C07     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_D05     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_A05     4  0.6382     0.7193 0.08 0.00 0.34 0.58
#> 1772122_206_G10     1  0.0707     0.9662 0.98 0.00 0.00 0.02
#> 1772122_206_A12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_A09     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_E10     2  0.1211     0.8422 0.00 0.96 0.00 0.04
#> 1772122_206_A08     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_205_A12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_B03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_G07     3  0.5487     0.6133 0.00 0.02 0.58 0.40
#> 1772122_262_B05     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_A04     4  0.5915     0.7455 0.04 0.00 0.40 0.56
#> 1772122_262_H03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_B08     4  0.4948     0.7417 0.00 0.00 0.44 0.56
#> 1772122_204_D12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_G03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_H12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_F12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_F02     3  0.3610     0.5734 0.00 0.00 0.80 0.20
#> 1772122_206_C10     3  0.3975    -0.1067 0.00 0.00 0.76 0.24
#> 1772122_204_D01     4  0.6649     0.7022 0.10 0.00 0.34 0.56
#> 1772122_206_C07     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_C08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_G01     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_E02     4  0.4948     0.7417 0.00 0.00 0.44 0.56
#> 1772122_262_H08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_326_D09     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_204_F01     3  0.5535    -0.5842 0.00 0.02 0.56 0.42
#> 1772122_206_F04     3  0.4977    -0.6339 0.00 0.00 0.54 0.46
#> 1772122_206_E09     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_206_E10     3  0.5793     0.6247 0.00 0.04 0.60 0.36
#> 1772122_205_H09     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_C06     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_204_D03     2  0.6853     0.5117 0.04 0.56 0.04 0.36
#> 1772122_206_C04     3  0.0707     0.4218 0.00 0.00 0.98 0.02
#> 1772122_262_A11     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_H06     3  0.0707     0.4218 0.00 0.00 0.98 0.02
#> 1772122_262_F11     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_D09     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_205_H05     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_206_B12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_B02     2  0.6766     0.4001 0.00 0.52 0.10 0.38
#> 1772122_204_B07     3  0.7179     0.5343 0.00 0.14 0.48 0.38
#> 1772122_205_C07     3  0.5793     0.6242 0.00 0.04 0.60 0.36
#> 1772122_262_F03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_D11     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_205_A04     4  0.9728    -0.2309 0.20 0.26 0.18 0.36
#> 1772122_205_F05     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_B04     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_C03     1  0.1637     0.9368 0.94 0.00 0.00 0.06
#> 1772122_204_A11     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_262_E08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_B10     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_G06     3  0.5535     0.6035 0.00 0.02 0.56 0.42
#> 1772122_205_G04     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_262_D05     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_F06     1  0.4079     0.7707 0.80 0.00 0.02 0.18
#> 1772122_206_E12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_C11     3  0.2345     0.5194 0.00 0.00 0.90 0.10
#> 1772122_262_B07     3  0.1211     0.3911 0.00 0.00 0.96 0.04
#> 1772122_204_C03     3  0.6988     0.5594 0.00 0.12 0.50 0.38
#> 1772122_204_A04     3  0.6805     0.5660 0.00 0.10 0.50 0.40
#> 1772122_205_H03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_B09     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_F09     1  0.3400     0.7747 0.82 0.00 0.00 0.18
#> 1772122_205_A09     3  0.7179     0.5320 0.00 0.14 0.48 0.38
#> 1772122_205_E08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_C05     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_G06     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_F10     4  0.5487     0.3330 0.00 0.02 0.40 0.58
#> 1772122_204_B10     1  0.1211     0.9530 0.96 0.00 0.00 0.04
#> 1772122_205_G03     2  0.7179     0.3189 0.00 0.48 0.14 0.38
#> 1772122_206_A05     2  0.6262     0.4606 0.00 0.54 0.06 0.40
#> 1772122_205_D06     3  0.2647     0.5328 0.00 0.00 0.88 0.12
#> 1772122_206_E03     4  0.5915     0.7455 0.04 0.00 0.40 0.56
#> 1772122_206_B07     4  0.6941     0.6818 0.12 0.00 0.36 0.52
#> 1772122_204_A03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_B08     4  0.7084     0.3885 0.14 0.00 0.34 0.52
#> 1772122_206_E04     3  0.7768     0.3374 0.24 0.00 0.40 0.36
#> 1772122_205_D04     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_262_D09     1  0.0707     0.9662 0.98 0.00 0.00 0.02
#> 1772122_205_A01     1  0.1211     0.9529 0.96 0.00 0.00 0.04
#> 1772122_204_B01     4  0.6150     0.7347 0.06 0.00 0.36 0.58
#> 1772122_206_H09     4  0.7745    -0.3344 0.00 0.34 0.24 0.42
#> 1772122_206_D05     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_B03     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_G12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_G12     2  0.2011     0.8088 0.00 0.92 0.00 0.08
#> 1772122_204_C02     4  0.4948     0.7417 0.00 0.00 0.44 0.56
#> 1772122_262_A01     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_B02     3  0.1211     0.3896 0.00 0.00 0.96 0.04
#> 1772122_205_C10     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_D11     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_204_E01     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_B06     3  0.5355     0.6311 0.00 0.02 0.62 0.36
#> 1772122_262_E05     4  0.4907     0.7142 0.00 0.00 0.42 0.58
#> 1772122_206_C11     3  0.5793     0.6242 0.00 0.04 0.60 0.36
#> 1772122_204_D08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_A11     3  0.2345     0.4561 0.00 0.00 0.90 0.10
#> 1772122_205_D07     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_262_F08     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_262_G11     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_H10     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_B12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_A10     4  0.6212     0.7357 0.06 0.00 0.38 0.56
#> 1772122_262_D07     4  0.4948     0.7417 0.00 0.00 0.44 0.56
#> 1772122_205_F10     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_G06     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_205_E12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_206_E05     2  0.1637     0.8358 0.00 0.94 0.00 0.06
#> 1772122_206_C05     3  0.2011     0.3113 0.00 0.00 0.92 0.08
#> 1772122_205_C12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_E07     3  0.0000     0.4469 0.00 0.00 1.00 0.00
#> 1772122_205_F06     3  0.5793     0.6242 0.00 0.04 0.60 0.36
#> 1772122_262_A12     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_204_E06     2  0.5986     0.5329 0.00 0.62 0.06 0.32
#> 1772122_205_B06     2  0.7775    -0.0244 0.00 0.38 0.24 0.38
#> 1772122_262_A08     4  0.5915     0.7457 0.04 0.00 0.40 0.56
#> 1772122_206_G08     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_206_D12     3  0.6714     0.5921 0.00 0.10 0.54 0.36
#> 1772122_262_D01     1  0.0000     0.9789 1.00 0.00 0.00 0.00
#> 1772122_326_A09     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_326_E06     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_263_B07     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_E04     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_325_D02     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_326_E11     2  0.4134     0.6169 0.00 0.74 0.26 0.00
#> 1772122_325_D07     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_A09     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_B04     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_326_H05     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_326_H12     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_263_D11     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_A10     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_C07     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_A11     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_E07     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_C01     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_326_H04     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_C02     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_B09     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_B06     2  0.0000     0.8639 0.00 1.00 0.00 0.00
#> 1772122_324_D06     2  0.0000     0.8639 0.00 1.00 0.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-021-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-021-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-021-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-021-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-021-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-021-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-021-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-021-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-021-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-021-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-021-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-021-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-021-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-021-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-021-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-021-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-021-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      201           8.11e-05           1.91e-02 2
#> ATC:skmeans      205           4.11e-14           4.93e-06 3
#> ATC:skmeans      165           1.62e-20           3.44e-06 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0212

Parent node: Node021. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0212"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 9514 rows and 111 columns.
#>   Top rows (826) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 2.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0212-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0212-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.979           0.957       0.982          0.503 0.496   0.496
#> 3 3 0.882           0.913       0.963          0.331 0.703   0.472
#> 4 4 0.644           0.571       0.762          0.119 0.902   0.717

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 2

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_205_E06     2   0.000     0.9905 0.00 1.00
#> 1772122_204_D11     2   0.000     0.9905 0.00 1.00
#> 1772122_204_F08     2   0.402     0.9108 0.08 0.92
#> 1772122_206_D01     2   0.000     0.9905 0.00 1.00
#> 1772122_204_C01     2   0.000     0.9905 0.00 1.00
#> 1772122_262_A07     2   0.000     0.9905 0.00 1.00
#> 1772122_206_B06     2   0.000     0.9905 0.00 1.00
#> 1772122_205_A06     2   0.000     0.9905 0.00 1.00
#> 1772122_306_H05     2   0.000     0.9905 0.00 1.00
#> 1772122_315_C06     2   0.000     0.9905 0.00 1.00
#> 1772122_315_F05     2   0.000     0.9905 0.00 1.00
#> 1772122_315_G05     2   0.000     0.9905 0.00 1.00
#> 1772122_315_F06     2   0.000     0.9905 0.00 1.00
#> 1772122_315_E04     2   0.000     0.9905 0.00 1.00
#> 1772122_305_D09     2   0.000     0.9905 0.00 1.00
#> 1772122_305_F04     2   0.000     0.9905 0.00 1.00
#> 1772122_305_F02     2   0.000     0.9905 0.00 1.00
#> 1772122_204_D02     2   0.000     0.9905 0.00 1.00
#> 1772122_206_B03     1   0.000     0.9707 1.00 0.00
#> 1772122_205_H04     1   0.000     0.9707 1.00 0.00
#> 1772122_206_A02     1   0.000     0.9707 1.00 0.00
#> 1772122_204_G07     1   0.904     0.5450 0.68 0.32
#> 1772122_262_E11     2   0.000     0.9905 0.00 1.00
#> 1772122_205_H11     2   0.000     0.9905 0.00 1.00
#> 1772122_204_B09     1   0.000     0.9707 1.00 0.00
#> 1772122_206_B04     1   0.634     0.8099 0.84 0.16
#> 1772122_206_B11     2   0.000     0.9905 0.00 1.00
#> 1772122_204_A06     1   0.000     0.9707 1.00 0.00
#> 1772122_205_C01     2   0.000     0.9905 0.00 1.00
#> 1772122_206_F01     2   0.000     0.9905 0.00 1.00
#> 1772122_205_A07     2   0.000     0.9905 0.00 1.00
#> 1772122_206_E08     2   0.000     0.9905 0.00 1.00
#> 1772122_204_C09     1   0.000     0.9707 1.00 0.00
#> 1772122_206_H04     1   0.000     0.9707 1.00 0.00
#> 1772122_205_G08     2   0.827     0.6397 0.26 0.74
#> 1772122_204_A02     1   0.000     0.9707 1.00 0.00
#> 1772122_206_H07     2   0.000     0.9905 0.00 1.00
#> 1772122_204_C08     2   0.000     0.9905 0.00 1.00
#> 1772122_204_F07     2   0.000     0.9905 0.00 1.00
#> 1772122_204_B06     2   0.402     0.9089 0.08 0.92
#> 1772122_206_D02     2   0.000     0.9905 0.00 1.00
#> 1772122_205_E10     1   0.000     0.9707 1.00 0.00
#> 1772122_206_A08     2   0.141     0.9726 0.02 0.98
#> 1772122_262_G07     1   0.327     0.9193 0.94 0.06
#> 1772122_206_B08     2   0.000     0.9905 0.00 1.00
#> 1772122_204_F02     2   0.000     0.9905 0.00 1.00
#> 1772122_206_C10     2   0.000     0.9905 0.00 1.00
#> 1772122_205_E02     2   0.000     0.9905 0.00 1.00
#> 1772122_326_D09     1   0.000     0.9707 1.00 0.00
#> 1772122_204_F01     1   0.529     0.8572 0.88 0.12
#> 1772122_206_F04     2   0.000     0.9905 0.00 1.00
#> 1772122_206_E09     2   0.000     0.9905 0.00 1.00
#> 1772122_206_E10     2   0.327     0.9329 0.06 0.94
#> 1772122_206_C06     2   0.000     0.9905 0.00 1.00
#> 1772122_206_C04     2   0.000     0.9905 0.00 1.00
#> 1772122_205_H06     2   0.000     0.9905 0.00 1.00
#> 1772122_205_H05     2   0.000     0.9905 0.00 1.00
#> 1772122_204_B02     1   0.000     0.9707 1.00 0.00
#> 1772122_204_B07     1   0.000     0.9707 1.00 0.00
#> 1772122_205_C07     1   0.000     0.9707 1.00 0.00
#> 1772122_206_D11     2   0.000     0.9905 0.00 1.00
#> 1772122_204_A11     2   0.000     0.9905 0.00 1.00
#> 1772122_206_G06     1   0.827     0.6606 0.74 0.26
#> 1772122_204_C11     2   0.000     0.9905 0.00 1.00
#> 1772122_262_B07     2   0.000     0.9905 0.00 1.00
#> 1772122_204_C03     1   0.469     0.8802 0.90 0.10
#> 1772122_204_A04     1   0.000     0.9707 1.00 0.00
#> 1772122_205_A09     1   0.000     0.9707 1.00 0.00
#> 1772122_262_F10     2   0.141     0.9726 0.02 0.98
#> 1772122_205_G03     1   0.000     0.9707 1.00 0.00
#> 1772122_206_A05     1   0.000     0.9707 1.00 0.00
#> 1772122_205_D06     2   0.000     0.9905 0.00 1.00
#> 1772122_205_D04     2   0.000     0.9905 0.00 1.00
#> 1772122_206_H09     1   0.000     0.9707 1.00 0.00
#> 1772122_262_G12     1   0.000     0.9707 1.00 0.00
#> 1772122_204_C02     2   0.000     0.9905 0.00 1.00
#> 1772122_206_B02     2   0.000     0.9905 0.00 1.00
#> 1772122_205_D11     1   0.000     0.9707 1.00 0.00
#> 1772122_262_B06     1   0.000     0.9707 1.00 0.00
#> 1772122_262_E05     2   0.000     0.9905 0.00 1.00
#> 1772122_206_C11     1   0.999     0.0977 0.52 0.48
#> 1772122_205_A11     2   0.000     0.9905 0.00 1.00
#> 1772122_205_D07     2   0.000     0.9905 0.00 1.00
#> 1772122_262_D07     2   0.000     0.9905 0.00 1.00
#> 1772122_206_C05     2   0.000     0.9905 0.00 1.00
#> 1772122_204_E07     2   0.000     0.9905 0.00 1.00
#> 1772122_205_F06     1   0.000     0.9707 1.00 0.00
#> 1772122_204_E06     1   0.000     0.9707 1.00 0.00
#> 1772122_205_B06     1   0.000     0.9707 1.00 0.00
#> 1772122_206_D12     1   0.000     0.9707 1.00 0.00
#> 1772122_326_A09     1   0.000     0.9707 1.00 0.00
#> 1772122_326_E06     1   0.000     0.9707 1.00 0.00
#> 1772122_324_E04     1   0.000     0.9707 1.00 0.00
#> 1772122_325_D02     1   0.000     0.9707 1.00 0.00
#> 1772122_326_E11     1   0.000     0.9707 1.00 0.00
#> 1772122_325_D07     1   0.000     0.9707 1.00 0.00
#> 1772122_324_A09     1   0.000     0.9707 1.00 0.00
#> 1772122_324_B04     1   0.000     0.9707 1.00 0.00
#> 1772122_326_H05     1   0.000     0.9707 1.00 0.00
#> 1772122_326_H12     1   0.000     0.9707 1.00 0.00
#> 1772122_263_D11     1   0.000     0.9707 1.00 0.00
#> 1772122_324_A10     1   0.000     0.9707 1.00 0.00
#> 1772122_324_C07     1   0.000     0.9707 1.00 0.00
#> 1772122_324_A11     1   0.000     0.9707 1.00 0.00
#> 1772122_324_E07     1   0.000     0.9707 1.00 0.00
#> 1772122_324_C01     1   0.000     0.9707 1.00 0.00
#> 1772122_326_H04     1   0.000     0.9707 1.00 0.00
#> 1772122_324_C02     1   0.000     0.9707 1.00 0.00
#> 1772122_324_B09     1   0.000     0.9707 1.00 0.00
#> 1772122_324_B06     1   0.000     0.9707 1.00 0.00
#> 1772122_324_D06     1   0.000     0.9707 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_205_E06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_D11     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_F08     2  0.9267     0.0854 0.16 0.46 0.38
#> 1772122_206_D01     2  0.3340     0.8501 0.00 0.88 0.12
#> 1772122_204_C01     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_262_A07     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_206_B06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_A06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_306_H05     3  0.2066     0.9023 0.00 0.06 0.94
#> 1772122_315_C06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_315_F05     3  0.6309     0.0241 0.00 0.50 0.50
#> 1772122_315_G05     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_315_F06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_315_E04     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_305_D09     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_305_F04     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_305_F02     3  0.6280     0.1721 0.00 0.46 0.54
#> 1772122_204_D02     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_B03     3  0.2537     0.8808 0.08 0.00 0.92
#> 1772122_205_H04     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_206_A02     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_204_G07     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_262_E11     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_H11     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_B09     1  0.5397     0.6004 0.72 0.00 0.28
#> 1772122_206_B04     3  0.3415     0.8720 0.08 0.02 0.90
#> 1772122_206_B11     3  0.3340     0.8504 0.00 0.12 0.88
#> 1772122_204_A06     3  0.1529     0.9143 0.04 0.00 0.96
#> 1772122_205_C01     2  0.3340     0.8531 0.00 0.88 0.12
#> 1772122_206_F01     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_205_A07     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_206_E08     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_C09     1  0.0892     0.9539 0.98 0.00 0.02
#> 1772122_206_H04     3  0.4002     0.7934 0.16 0.00 0.84
#> 1772122_205_G08     3  0.1529     0.9165 0.00 0.04 0.96
#> 1772122_204_A02     1  0.2959     0.8723 0.90 0.00 0.10
#> 1772122_206_H07     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_204_C08     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_F07     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_204_B06     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_D02     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_E10     1  0.0892     0.9542 0.98 0.00 0.02
#> 1772122_206_A08     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_262_G07     3  0.2414     0.9060 0.04 0.02 0.94
#> 1772122_206_B08     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_F02     2  0.2959     0.8773 0.00 0.90 0.10
#> 1772122_206_C10     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_E02     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_326_D09     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_204_F01     1  0.6244     0.2082 0.56 0.44 0.00
#> 1772122_206_F04     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_206_E09     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_E10     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_C06     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_C04     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_H06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_H05     3  0.0892     0.9266 0.00 0.02 0.98
#> 1772122_204_B02     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_204_B07     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_205_C07     3  0.0892     0.9254 0.02 0.00 0.98
#> 1772122_206_D11     3  0.4796     0.7236 0.00 0.22 0.78
#> 1772122_204_A11     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_206_G06     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_204_C11     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_262_B07     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_C03     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_204_A04     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_205_A09     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_262_F10     3  0.4002     0.8003 0.00 0.16 0.84
#> 1772122_205_G03     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_A05     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_205_D06     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_D04     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_H09     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_262_G12     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_204_C02     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_206_B02     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_D11     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_262_B06     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_262_E05     3  0.2959     0.8693 0.00 0.10 0.90
#> 1772122_206_C11     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_205_A11     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_D07     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_262_D07     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_206_C05     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_204_E07     2  0.0000     0.9772 0.00 1.00 0.00
#> 1772122_205_F06     3  0.4555     0.7368 0.20 0.00 0.80
#> 1772122_204_E06     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_205_B06     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_206_D12     3  0.0000     0.9358 0.00 0.00 1.00
#> 1772122_326_A09     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_326_E06     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_E04     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_325_D02     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_326_E11     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_325_D07     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_A09     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_B04     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_326_H05     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_326_H12     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_263_D11     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_A10     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_C07     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_A11     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_E07     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_C01     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_326_H04     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_C02     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_B09     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_B06     1  0.0000     0.9709 1.00 0.00 0.00
#> 1772122_324_D06     1  0.0000     0.9709 1.00 0.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_205_E06     2  0.4841     0.6370 0.00 0.78 0.08 0.14
#> 1772122_204_D11     2  0.4939     0.6511 0.00 0.74 0.04 0.22
#> 1772122_204_F08     2  0.8854     0.1625 0.06 0.42 0.22 0.30
#> 1772122_206_D01     2  0.6336     0.4198 0.00 0.48 0.06 0.46
#> 1772122_204_C01     2  0.5106     0.6379 0.00 0.72 0.04 0.24
#> 1772122_262_A07     2  0.4755     0.6523 0.00 0.76 0.04 0.20
#> 1772122_206_B06     2  0.5151     0.6215 0.00 0.76 0.10 0.14
#> 1772122_205_A06     2  0.4713     0.6217 0.00 0.64 0.00 0.36
#> 1772122_306_H05     4  0.1913     0.4659 0.00 0.04 0.02 0.94
#> 1772122_315_C06     2  0.4994     0.5010 0.00 0.52 0.00 0.48
#> 1772122_315_F05     4  0.1211     0.4540 0.00 0.04 0.00 0.96
#> 1772122_315_G05     4  0.4994    -0.5003 0.00 0.48 0.00 0.52
#> 1772122_315_F06     4  0.4994    -0.5003 0.00 0.48 0.00 0.52
#> 1772122_315_E04     4  0.4994    -0.5003 0.00 0.48 0.00 0.52
#> 1772122_305_D09     2  0.4994     0.5010 0.00 0.52 0.00 0.48
#> 1772122_305_F04     2  0.4994     0.5010 0.00 0.52 0.00 0.48
#> 1772122_305_F02     4  0.1211     0.4540 0.00 0.04 0.00 0.96
#> 1772122_204_D02     3  0.4088     0.6293 0.00 0.04 0.82 0.14
#> 1772122_206_B03     4  0.7493    -0.1449 0.20 0.00 0.32 0.48
#> 1772122_205_H04     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_206_A02     3  0.4713     0.5168 0.00 0.00 0.64 0.36
#> 1772122_204_G07     3  0.0707     0.6454 0.00 0.02 0.98 0.00
#> 1772122_262_E11     2  0.2921     0.6940 0.00 0.86 0.00 0.14
#> 1772122_205_H11     2  0.1211     0.6687 0.00 0.96 0.04 0.00
#> 1772122_204_B09     3  0.4332     0.5777 0.04 0.16 0.80 0.00
#> 1772122_206_B04     3  0.2335     0.6408 0.00 0.06 0.92 0.02
#> 1772122_206_B11     3  0.3400     0.5721 0.00 0.18 0.82 0.00
#> 1772122_204_A06     4  0.7028    -0.0260 0.16 0.00 0.28 0.56
#> 1772122_205_C01     4  0.3400     0.2023 0.00 0.18 0.00 0.82
#> 1772122_206_F01     3  0.3853     0.6342 0.00 0.02 0.82 0.16
#> 1772122_205_A07     2  0.4292     0.6619 0.00 0.82 0.10 0.08
#> 1772122_206_E08     2  0.4977     0.4442 0.00 0.54 0.00 0.46
#> 1772122_204_C09     1  0.4907     0.3345 0.58 0.00 0.42 0.00
#> 1772122_206_H04     3  0.6370     0.4174 0.28 0.00 0.62 0.10
#> 1772122_205_G08     4  0.7021    -0.1598 0.00 0.12 0.40 0.48
#> 1772122_204_A02     1  0.5487     0.3222 0.58 0.00 0.40 0.02
#> 1772122_206_H07     3  0.2921     0.6036 0.00 0.14 0.86 0.00
#> 1772122_204_C08     2  0.2921     0.6880 0.00 0.86 0.00 0.14
#> 1772122_204_F07     3  0.1211     0.6468 0.00 0.00 0.96 0.04
#> 1772122_204_B06     3  0.3801     0.6058 0.00 0.00 0.78 0.22
#> 1772122_206_D02     2  0.1211     0.6687 0.00 0.96 0.04 0.00
#> 1772122_205_E10     1  0.1913     0.8856 0.94 0.00 0.02 0.04
#> 1772122_206_A08     3  0.4948     0.4358 0.00 0.00 0.56 0.44
#> 1772122_262_G07     3  0.3172     0.5906 0.00 0.16 0.84 0.00
#> 1772122_206_B08     2  0.4977     0.5060 0.00 0.54 0.00 0.46
#> 1772122_204_F02     2  0.6840     0.4857 0.00 0.60 0.22 0.18
#> 1772122_206_C10     2  0.3172     0.6877 0.00 0.84 0.00 0.16
#> 1772122_205_E02     2  0.3610     0.6788 0.00 0.80 0.00 0.20
#> 1772122_326_D09     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_204_F01     1  0.7220    -0.1264 0.44 0.42 0.00 0.14
#> 1772122_206_F04     2  0.4977     0.5013 0.00 0.54 0.00 0.46
#> 1772122_206_E09     3  0.3525     0.6318 0.00 0.10 0.86 0.04
#> 1772122_206_E10     4  0.6011    -0.4050 0.00 0.04 0.48 0.48
#> 1772122_206_C06     3  0.2921     0.6036 0.00 0.14 0.86 0.00
#> 1772122_206_C04     2  0.1211     0.6687 0.00 0.96 0.04 0.00
#> 1772122_205_H06     2  0.1913     0.6727 0.00 0.94 0.04 0.02
#> 1772122_205_H05     4  0.4790    -0.0671 0.00 0.00 0.38 0.62
#> 1772122_204_B02     3  0.4284     0.6110 0.02 0.00 0.78 0.20
#> 1772122_204_B07     3  0.5594     0.4003 0.02 0.00 0.52 0.46
#> 1772122_205_C07     3  0.1913     0.6484 0.02 0.00 0.94 0.04
#> 1772122_206_D11     3  0.3610     0.5516 0.00 0.20 0.80 0.00
#> 1772122_204_A11     2  0.3610     0.5367 0.00 0.80 0.20 0.00
#> 1772122_206_G06     3  0.3172     0.6326 0.00 0.00 0.84 0.16
#> 1772122_204_C11     2  0.4624     0.6149 0.00 0.66 0.00 0.34
#> 1772122_262_B07     2  0.4948     0.5510 0.00 0.56 0.00 0.44
#> 1772122_204_C03     3  0.4977     0.4288 0.00 0.00 0.54 0.46
#> 1772122_204_A04     3  0.4994     0.4002 0.00 0.00 0.52 0.48
#> 1772122_205_A09     3  0.4907     0.4709 0.00 0.00 0.58 0.42
#> 1772122_262_F10     4  0.5383     0.3132 0.00 0.10 0.16 0.74
#> 1772122_205_G03     3  0.5000     0.3656 0.00 0.00 0.50 0.50
#> 1772122_206_A05     3  0.4790     0.5031 0.00 0.00 0.62 0.38
#> 1772122_205_D06     2  0.4797     0.4574 0.00 0.72 0.26 0.02
#> 1772122_205_D04     3  0.4894     0.6097 0.00 0.10 0.78 0.12
#> 1772122_206_H09     3  0.4977     0.4261 0.00 0.00 0.54 0.46
#> 1772122_262_G12     1  0.4088     0.7496 0.82 0.00 0.04 0.14
#> 1772122_204_C02     2  0.3975     0.6611 0.00 0.76 0.00 0.24
#> 1772122_206_B02     2  0.2706     0.6908 0.00 0.90 0.02 0.08
#> 1772122_205_D11     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_262_B06     3  0.7206     0.0719 0.40 0.14 0.46 0.00
#> 1772122_262_E05     4  0.0707     0.4826 0.00 0.00 0.02 0.98
#> 1772122_206_C11     3  0.2647     0.6136 0.00 0.12 0.88 0.00
#> 1772122_205_A11     2  0.4406     0.6424 0.00 0.70 0.00 0.30
#> 1772122_205_D07     2  0.1913     0.6727 0.00 0.94 0.04 0.02
#> 1772122_262_D07     2  0.4522     0.6379 0.00 0.68 0.00 0.32
#> 1772122_206_C05     2  0.3801     0.6752 0.00 0.78 0.00 0.22
#> 1772122_204_E07     2  0.1211     0.6687 0.00 0.96 0.04 0.00
#> 1772122_205_F06     3  0.3935     0.6380 0.06 0.02 0.86 0.06
#> 1772122_204_E06     1  0.0707     0.9212 0.98 0.00 0.02 0.00
#> 1772122_205_B06     3  0.4948     0.4517 0.00 0.00 0.56 0.44
#> 1772122_206_D12     3  0.4948     0.4489 0.00 0.00 0.56 0.44
#> 1772122_326_A09     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_326_E06     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_E04     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_325_D02     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_326_E11     1  0.1211     0.9038 0.96 0.04 0.00 0.00
#> 1772122_325_D07     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_A09     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_B04     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_326_H05     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_326_H12     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_263_D11     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_A10     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_C07     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_A11     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_E07     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_C01     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_326_H04     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_C02     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_B09     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_B06     1  0.0000     0.9371 1.00 0.00 0.00 0.00
#> 1772122_324_D06     1  0.0000     0.9371 1.00 0.00 0.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0212-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0212-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0212-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0212-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0212-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0212-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0212-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0212-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0212-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0212-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0212-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0212-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0212-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0212-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0212-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0212-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0212-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      110           1.19e-07            0.00889 2
#> ATC:skmeans      107           1.26e-12            0.01473 3
#> ATC:skmeans       78           2.34e-10            0.08241 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node022

Parent node: Node02. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["022"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 9614 rows and 156 columns.
#>   Top rows (961) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-022-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-022-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.965       0.985          0.503 0.497   0.497
#> 3 3 0.982           0.953       0.981          0.300 0.795   0.609
#> 4 4 0.821           0.902       0.936          0.119 0.875   0.664

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_311_D04     1   0.000      0.982 1.00 0.00
#> 1772122_311_A03     2   0.000      0.988 0.00 1.00
#> 1772122_312_E02     2   0.000      0.988 0.00 1.00
#> 1772122_311_E12     1   0.000      0.982 1.00 0.00
#> 1772122_311_C02     1   0.000      0.982 1.00 0.00
#> 1772122_310_F11     1   0.000      0.982 1.00 0.00
#> 1772122_312_B03     2   0.000      0.988 0.00 1.00
#> 1772122_312_C09     2   0.000      0.988 0.00 1.00
#> 1772122_311_F07     2   0.000      0.988 0.00 1.00
#> 1772122_312_A06     1   0.000      0.982 1.00 0.00
#> 1772122_312_A09     1   0.000      0.982 1.00 0.00
#> 1772122_310_B06     2   0.000      0.988 0.00 1.00
#> 1772122_314_D10     2   0.000      0.988 0.00 1.00
#> 1772122_310_F02     1   0.000      0.982 1.00 0.00
#> 1772122_312_E06     2   0.000      0.988 0.00 1.00
#> 1772122_314_A07     2   0.000      0.988 0.00 1.00
#> 1772122_312_D06     2   0.000      0.988 0.00 1.00
#> 1772122_314_A05     2   0.242      0.951 0.04 0.96
#> 1772122_311_F11     1   0.000      0.982 1.00 0.00
#> 1772122_314_A06     1   0.981      0.288 0.58 0.42
#> 1772122_314_G09     2   0.000      0.988 0.00 1.00
#> 1772122_312_B11     2   0.000      0.988 0.00 1.00
#> 1772122_314_B07     1   0.000      0.982 1.00 0.00
#> 1772122_312_D05     1   0.000      0.982 1.00 0.00
#> 1772122_314_G06     1   0.000      0.982 1.00 0.00
#> 1772122_314_D11     2   0.000      0.988 0.00 1.00
#> 1772122_312_H02     1   0.000      0.982 1.00 0.00
#> 1772122_312_C01     2   0.000      0.988 0.00 1.00
#> 1772122_314_A04     2   0.000      0.988 0.00 1.00
#> 1772122_312_F12     2   0.000      0.988 0.00 1.00
#> 1772122_312_C08     2   0.000      0.988 0.00 1.00
#> 1772122_314_F04     2   0.000      0.988 0.00 1.00
#> 1772122_312_B04     2   0.000      0.988 0.00 1.00
#> 1772122_314_C10     2   0.000      0.988 0.00 1.00
#> 1772122_312_E12     2   0.000      0.988 0.00 1.00
#> 1772122_314_F05     2   0.000      0.988 0.00 1.00
#> 1772122_314_G11     2   0.000      0.988 0.00 1.00
#> 1772122_311_C01     1   0.000      0.982 1.00 0.00
#> 1772122_314_E02     2   0.000      0.988 0.00 1.00
#> 1772122_312_B06     2   0.000      0.988 0.00 1.00
#> 1772122_312_F06     1   0.000      0.982 1.00 0.00
#> 1772122_314_G02     2   0.000      0.988 0.00 1.00
#> 1772122_310_A05     2   0.000      0.988 0.00 1.00
#> 1772122_312_A12     2   0.000      0.988 0.00 1.00
#> 1772122_310_E04     1   0.000      0.982 1.00 0.00
#> 1772122_311_D09     1   0.000      0.982 1.00 0.00
#> 1772122_311_H06     1   0.000      0.982 1.00 0.00
#> 1772122_311_G04     1   0.000      0.982 1.00 0.00
#> 1772122_311_H04     1   0.000      0.982 1.00 0.00
#> 1772122_311_C09     1   0.000      0.982 1.00 0.00
#> 1772122_311_E09     1   0.000      0.982 1.00 0.00
#> 1772122_311_G10     1   0.000      0.982 1.00 0.00
#> 1772122_311_D06     1   0.000      0.982 1.00 0.00
#> 1772122_310_D12     2   0.000      0.988 0.00 1.00
#> 1772122_311_B05     1   0.000      0.982 1.00 0.00
#> 1772122_310_F05     1   0.584      0.834 0.86 0.14
#> 1772122_310_A02     1   0.000      0.982 1.00 0.00
#> 1772122_310_D09     2   0.855      0.617 0.28 0.72
#> 1772122_311_D03     2   0.327      0.931 0.06 0.94
#> 1772122_310_E11     2   0.000      0.988 0.00 1.00
#> 1772122_311_H05     2   0.000      0.988 0.00 1.00
#> 1772122_311_E04     1   0.000      0.982 1.00 0.00
#> 1772122_311_G11     1   0.000      0.982 1.00 0.00
#> 1772122_311_G12     2   0.141      0.971 0.02 0.98
#> 1772122_311_A10     1   0.000      0.982 1.00 0.00
#> 1772122_311_A07     1   0.000      0.982 1.00 0.00
#> 1772122_310_A07     2   0.000      0.988 0.00 1.00
#> 1772122_310_D06     1   0.000      0.982 1.00 0.00
#> 1772122_311_B11     1   0.000      0.982 1.00 0.00
#> 1772122_310_A01     2   0.000      0.988 0.00 1.00
#> 1772122_311_D11     1   0.141      0.963 0.98 0.02
#> 1772122_310_H02     1   0.000      0.982 1.00 0.00
#> 1772122_310_H12     2   0.000      0.988 0.00 1.00
#> 1772122_311_A12     1   0.000      0.982 1.00 0.00
#> 1772122_310_A09     2   0.000      0.988 0.00 1.00
#> 1772122_311_H11     1   0.000      0.982 1.00 0.00
#> 1772122_311_E05     1   0.000      0.982 1.00 0.00
#> 1772122_311_A09     1   0.000      0.982 1.00 0.00
#> 1772122_312_F05     1   0.000      0.982 1.00 0.00
#> 1772122_312_A07     1   0.000      0.982 1.00 0.00
#> 1772122_310_H04     1   0.000      0.982 1.00 0.00
#> 1772122_310_D11     2   0.000      0.988 0.00 1.00
#> 1772122_310_H10     1   0.000      0.982 1.00 0.00
#> 1772122_310_G05     2   0.000      0.988 0.00 1.00
#> 1772122_310_D10     2   0.242      0.951 0.04 0.96
#> 1772122_312_F02     2   0.000      0.988 0.00 1.00
#> 1772122_310_B09     2   0.000      0.988 0.00 1.00
#> 1772122_310_F06     1   0.000      0.982 1.00 0.00
#> 1772122_310_E06     2   0.855      0.617 0.28 0.72
#> 1772122_311_D10     1   0.000      0.982 1.00 0.00
#> 1772122_311_E03     1   0.000      0.982 1.00 0.00
#> 1772122_310_G04     2   0.000      0.988 0.00 1.00
#> 1772122_311_B07     1   0.000      0.982 1.00 0.00
#> 1772122_311_C11     2   0.000      0.988 0.00 1.00
#> 1772122_314_B04     2   0.000      0.988 0.00 1.00
#> 1772122_312_F04     2   0.000      0.988 0.00 1.00
#> 1772122_312_H11     1   0.000      0.982 1.00 0.00
#> 1772122_312_H12     1   0.000      0.982 1.00 0.00
#> 1772122_312_H08     2   0.000      0.988 0.00 1.00
#> 1772122_314_E04     1   0.000      0.982 1.00 0.00
#> 1772122_312_G06     2   0.000      0.988 0.00 1.00
#> 1772122_314_B08     2   0.000      0.988 0.00 1.00
#> 1772122_314_A10     2   0.141      0.971 0.02 0.98
#> 1772122_312_D08     2   0.000      0.988 0.00 1.00
#> 1772122_312_C07     2   0.000      0.988 0.00 1.00
#> 1772122_312_B02     2   0.000      0.988 0.00 1.00
#> 1772122_312_C06     2   0.000      0.988 0.00 1.00
#> 1772122_312_G04     2   0.000      0.988 0.00 1.00
#> 1772122_314_H04     1   0.000      0.982 1.00 0.00
#> 1772122_314_C09     2   0.000      0.988 0.00 1.00
#> 1772122_314_E11     2   0.000      0.988 0.00 1.00
#> 1772122_312_E04     2   0.000      0.988 0.00 1.00
#> 1772122_312_G12     2   0.000      0.988 0.00 1.00
#> 1772122_314_D04     2   0.000      0.988 0.00 1.00
#> 1772122_310_D04     1   0.000      0.982 1.00 0.00
#> 1772122_311_E08     1   0.000      0.982 1.00 0.00
#> 1772122_310_B11     1   0.000      0.982 1.00 0.00
#> 1772122_311_E10     1   0.000      0.982 1.00 0.00
#> 1772122_310_C04     1   0.000      0.982 1.00 0.00
#> 1772122_311_H07     1   0.000      0.982 1.00 0.00
#> 1772122_312_D03     2   0.000      0.988 0.00 1.00
#> 1772122_314_A03     2   0.000      0.988 0.00 1.00
#> 1772122_312_D04     1   0.000      0.982 1.00 0.00
#> 1772122_312_D02     1   0.722      0.751 0.80 0.20
#> 1772122_314_H11     2   0.000      0.988 0.00 1.00
#> 1772122_311_B06     2   0.634      0.810 0.16 0.84
#> 1772122_314_F06     2   0.000      0.988 0.00 1.00
#> 1772122_311_B12     1   0.000      0.982 1.00 0.00
#> 1772122_312_D11     2   0.000      0.988 0.00 1.00
#> 1772122_310_F01     2   0.000      0.988 0.00 1.00
#> 1772122_314_E05     2   0.000      0.988 0.00 1.00
#> 1772122_312_F09     2   0.000      0.988 0.00 1.00
#> 1772122_311_C08     1   0.000      0.982 1.00 0.00
#> 1772122_314_B10     2   0.000      0.988 0.00 1.00
#> 1772122_311_D08     1   0.000      0.982 1.00 0.00
#> 1772122_310_A11     1   0.584      0.834 0.86 0.14
#> 1772122_311_F02     1   0.000      0.982 1.00 0.00
#> 1772122_311_G06     1   0.000      0.982 1.00 0.00
#> 1772122_312_C02     2   0.000      0.988 0.00 1.00
#> 1772122_314_B01     2   0.000      0.988 0.00 1.00
#> 1772122_311_A08     1   0.000      0.982 1.00 0.00
#> 1772122_314_B09     1   0.000      0.982 1.00 0.00
#> 1772122_311_D12     1   0.000      0.982 1.00 0.00
#> 1772122_310_B04     1   0.000      0.982 1.00 0.00
#> 1772122_310_C02     2   0.000      0.988 0.00 1.00
#> 1772122_311_A02     1   0.000      0.982 1.00 0.00
#> 1772122_311_B02     2   0.000      0.988 0.00 1.00
#> 1772122_311_F08     2   0.000      0.988 0.00 1.00
#> 1772122_312_A02     1   0.000      0.982 1.00 0.00
#> 1772122_311_H10     1   0.000      0.982 1.00 0.00
#> 1772122_312_A10     2   0.000      0.988 0.00 1.00
#> 1772122_314_G08     1   0.995      0.168 0.54 0.46
#> 1772122_311_F06     1   0.000      0.982 1.00 0.00
#> 1772122_312_E11     1   0.000      0.982 1.00 0.00
#> 1772122_310_H11     1   0.000      0.982 1.00 0.00
#> 1772122_311_H02     1   0.000      0.982 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_311_D04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_A03     3  0.4796     0.6967 0.00 0.22 0.78
#> 1772122_312_E02     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_E12     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_C02     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_F11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_B03     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_C09     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_F07     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_312_A06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_A09     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_B06     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_D10     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_F02     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_E06     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_A07     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_D06     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_A05     2  0.6244     0.2229 0.44 0.56 0.00
#> 1772122_311_F11     1  0.0892     0.9713 0.98 0.00 0.02
#> 1772122_314_A06     1  0.1529     0.9463 0.96 0.04 0.00
#> 1772122_314_G09     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_B11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_B07     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_D05     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_G06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_D11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_H02     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_C01     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_A04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_F12     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_C08     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_F04     2  0.2537     0.9032 0.00 0.92 0.08
#> 1772122_312_B04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_C10     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_E12     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_F05     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_G11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_C01     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_E02     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_B06     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_F06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_G02     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_A05     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_A12     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_E04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_D09     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_H06     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_G04     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_H04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_C09     3  0.6280     0.1613 0.46 0.00 0.54
#> 1772122_311_E09     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_G10     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_D06     1  0.4002     0.8074 0.84 0.00 0.16
#> 1772122_310_D12     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_B05     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_F05     1  0.0892     0.9686 0.98 0.02 0.00
#> 1772122_310_A02     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_D09     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_D03     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_E11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_H05     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_E04     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_G11     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_G12     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_A10     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_A07     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_A07     2  0.0892     0.9644 0.00 0.98 0.02
#> 1772122_310_D06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_B11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_A01     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_D11     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_H02     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_H12     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_A12     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_A09     2  0.0892     0.9635 0.02 0.98 0.00
#> 1772122_311_H11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_E05     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_A09     1  0.2537     0.9100 0.92 0.00 0.08
#> 1772122_312_F05     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_A07     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_H04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_D11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_H10     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_G05     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_D10     2  0.2066     0.9226 0.06 0.94 0.00
#> 1772122_312_F02     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_B09     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_F06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_E06     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_D10     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_E03     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_G04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_B07     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_C11     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_314_B04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_F04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_H11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_H12     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_H08     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_E04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_G06     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_B08     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_A10     2  0.4002     0.8047 0.16 0.84 0.00
#> 1772122_312_D08     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_C07     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_B02     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_C06     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_312_G04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_H04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_C09     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_E11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_E04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_G12     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_D04     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_D04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_E08     1  0.2959     0.8870 0.90 0.00 0.10
#> 1772122_310_B11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_E10     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_C04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_H07     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_D03     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_A03     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_D04     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_D02     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_H11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_B06     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_314_F06     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_B12     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_312_D11     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_310_F01     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_314_E05     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_312_F09     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_C08     3  0.6302     0.0916 0.48 0.00 0.52
#> 1772122_314_B10     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_D08     3  0.4002     0.7914 0.16 0.00 0.84
#> 1772122_310_A11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_F02     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_G06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_C02     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_B01     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_311_A08     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_314_B09     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_D12     1  0.0892     0.9713 0.98 0.00 0.02
#> 1772122_310_B04     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_310_C02     2  0.5397     0.6093 0.00 0.72 0.28
#> 1772122_311_A02     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_B02     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_F08     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_312_A02     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_311_H10     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_A10     2  0.0000     0.9823 0.00 1.00 0.00
#> 1772122_314_G08     1  0.3340     0.8479 0.88 0.12 0.00
#> 1772122_311_F06     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_312_E11     1  0.0000     0.9884 1.00 0.00 0.00
#> 1772122_310_H11     3  0.0000     0.9622 0.00 0.00 1.00
#> 1772122_311_H02     3  0.0000     0.9622 0.00 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_311_D04     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_A03     3  0.3172     0.7903 0.00 0.16 0.84 0.00
#> 1772122_312_E02     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_311_E12     3  0.4522     0.5115 0.00 0.00 0.68 0.32
#> 1772122_311_C02     4  0.4406     0.5931 0.00 0.00 0.30 0.70
#> 1772122_310_F11     1  0.2647     0.9013 0.88 0.00 0.00 0.12
#> 1772122_312_B03     2  0.1211     0.9386 0.04 0.96 0.00 0.00
#> 1772122_312_C09     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_311_F07     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_312_A06     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_312_A09     1  0.3610     0.8727 0.80 0.00 0.00 0.20
#> 1772122_310_B06     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_D10     2  0.3172     0.8793 0.16 0.84 0.00 0.00
#> 1772122_310_F02     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_312_E06     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_A07     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_D06     2  0.1211     0.9240 0.04 0.96 0.00 0.00
#> 1772122_314_A05     1  0.1637     0.8606 0.94 0.06 0.00 0.00
#> 1772122_311_F11     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_314_A06     1  0.3611     0.8656 0.86 0.08 0.00 0.06
#> 1772122_314_G09     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_B11     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_B07     4  0.0707     0.9248 0.02 0.00 0.00 0.98
#> 1772122_312_D05     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_314_G06     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_314_D11     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_H02     1  0.4134     0.8103 0.74 0.00 0.00 0.26
#> 1772122_312_C01     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_A04     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_F12     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_C08     2  0.2647     0.9064 0.12 0.88 0.00 0.00
#> 1772122_314_F04     2  0.2921     0.8249 0.00 0.86 0.14 0.00
#> 1772122_312_B04     2  0.1211     0.9394 0.04 0.96 0.00 0.00
#> 1772122_314_C10     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_E12     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_F05     2  0.0707     0.9435 0.02 0.98 0.00 0.00
#> 1772122_314_G11     2  0.0707     0.9432 0.02 0.98 0.00 0.00
#> 1772122_311_C01     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_314_E02     2  0.2921     0.8935 0.14 0.86 0.00 0.00
#> 1772122_312_B06     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_312_F06     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_314_G02     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_310_A05     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_312_A12     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_310_E04     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_311_D09     3  0.2921     0.8277 0.00 0.00 0.86 0.14
#> 1772122_311_H06     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_G04     3  0.2921     0.8262 0.00 0.00 0.86 0.14
#> 1772122_311_H04     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_C09     4  0.0707     0.9299 0.00 0.00 0.02 0.98
#> 1772122_311_E09     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_G10     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_D06     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_310_D12     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_311_B05     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_310_F05     1  0.0000     0.8682 1.00 0.00 0.00 0.00
#> 1772122_310_A02     3  0.1913     0.9255 0.02 0.00 0.94 0.04
#> 1772122_310_D09     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_D03     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_310_E11     2  0.3172     0.8795 0.16 0.84 0.00 0.00
#> 1772122_311_H05     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_E04     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_G11     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_G12     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_A10     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_A07     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_310_A07     2  0.3172     0.8002 0.00 0.84 0.16 0.00
#> 1772122_310_D06     1  0.2345     0.8997 0.90 0.00 0.00 0.10
#> 1772122_311_B11     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_310_A01     2  0.3172     0.8795 0.16 0.84 0.00 0.00
#> 1772122_311_D11     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_310_H02     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_310_H12     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_311_A12     4  0.3610     0.7397 0.00 0.00 0.20 0.80
#> 1772122_310_A09     1  0.0707     0.8563 0.98 0.02 0.00 0.00
#> 1772122_311_H11     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_E05     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_A09     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_312_F05     1  0.3610     0.8733 0.80 0.00 0.00 0.20
#> 1772122_312_A07     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_310_H04     1  0.0707     0.8787 0.98 0.00 0.00 0.02
#> 1772122_310_D11     2  0.2921     0.8935 0.14 0.86 0.00 0.00
#> 1772122_310_H10     1  0.0707     0.8787 0.98 0.00 0.00 0.02
#> 1772122_310_G05     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_310_D10     1  0.1211     0.8392 0.96 0.04 0.00 0.00
#> 1772122_312_F02     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_310_B09     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_310_F06     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_310_E06     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_D10     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_E03     4  0.3400     0.7698 0.00 0.00 0.18 0.82
#> 1772122_310_G04     2  0.2647     0.9057 0.12 0.88 0.00 0.00
#> 1772122_311_B07     4  0.4624     0.5100 0.00 0.00 0.34 0.66
#> 1772122_311_C11     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_314_B04     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_F04     2  0.2921     0.8935 0.14 0.86 0.00 0.00
#> 1772122_312_H11     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_312_H12     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_312_H08     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_314_E04     1  0.3172     0.8998 0.84 0.00 0.00 0.16
#> 1772122_312_G06     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_B08     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_A10     1  0.0000     0.8682 1.00 0.00 0.00 0.00
#> 1772122_312_D08     2  0.1211     0.9386 0.04 0.96 0.00 0.00
#> 1772122_312_C07     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_B02     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_C06     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_312_G04     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_H04     1  0.3610     0.8727 0.80 0.00 0.00 0.20
#> 1772122_314_C09     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_314_E11     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_E04     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_312_G12     2  0.2921     0.8935 0.14 0.86 0.00 0.00
#> 1772122_314_D04     2  0.0000     0.9456 0.00 1.00 0.00 0.00
#> 1772122_310_D04     1  0.4277     0.7848 0.72 0.00 0.00 0.28
#> 1772122_311_E08     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_310_B11     1  0.2011     0.8919 0.92 0.00 0.00 0.08
#> 1772122_311_E10     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_310_C04     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_311_H07     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_312_D03     2  0.4713     0.5986 0.36 0.64 0.00 0.00
#> 1772122_314_A03     2  0.2011     0.9247 0.08 0.92 0.00 0.00
#> 1772122_312_D04     1  0.0707     0.8787 0.98 0.00 0.00 0.02
#> 1772122_312_D02     1  0.0000     0.8682 1.00 0.00 0.00 0.00
#> 1772122_314_H11     2  0.2647     0.9057 0.12 0.88 0.00 0.00
#> 1772122_311_B06     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_314_F06     2  0.0707     0.9432 0.02 0.98 0.00 0.00
#> 1772122_311_B12     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_312_D11     2  0.3172     0.8795 0.16 0.84 0.00 0.00
#> 1772122_310_F01     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_314_E05     2  0.0707     0.9440 0.02 0.98 0.00 0.00
#> 1772122_312_F09     2  0.2647     0.9057 0.12 0.88 0.00 0.00
#> 1772122_311_C08     4  0.0707     0.9299 0.00 0.00 0.02 0.98
#> 1772122_314_B10     2  0.1211     0.9394 0.04 0.96 0.00 0.00
#> 1772122_311_D08     4  0.1637     0.8971 0.00 0.00 0.06 0.94
#> 1772122_310_A11     1  0.0000     0.8682 1.00 0.00 0.00 0.00
#> 1772122_311_F02     3  0.0707     0.9516 0.00 0.00 0.98 0.02
#> 1772122_311_G06     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_312_C02     2  0.3172     0.8795 0.16 0.84 0.00 0.00
#> 1772122_314_B01     2  0.1211     0.9394 0.04 0.96 0.00 0.00
#> 1772122_311_A08     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_314_B09     1  0.2647     0.9019 0.88 0.00 0.00 0.12
#> 1772122_311_D12     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_310_B04     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_310_C02     2  0.5606     0.0943 0.02 0.50 0.48 0.00
#> 1772122_311_A02     4  0.4522     0.5491 0.00 0.00 0.32 0.68
#> 1772122_311_B02     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_F08     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_312_A02     1  0.1211     0.8861 0.96 0.00 0.00 0.04
#> 1772122_311_H10     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_312_A10     2  0.2647     0.9057 0.12 0.88 0.00 0.00
#> 1772122_314_G08     1  0.0000     0.8682 1.00 0.00 0.00 0.00
#> 1772122_311_F06     4  0.0000     0.9442 0.00 0.00 0.00 1.00
#> 1772122_312_E11     1  0.4713     0.6551 0.64 0.00 0.00 0.36
#> 1772122_310_H11     3  0.0000     0.9673 0.00 0.00 1.00 0.00
#> 1772122_311_H02     3  0.0000     0.9673 0.00 0.00 1.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-022-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-022-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-022-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-022-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-022-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-022-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-022-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-022-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-022-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-022-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-022-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-022-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-022-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-022-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-022-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-022-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-022-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      154             0.0419                 NA 2
#> ATC:skmeans      153             0.0237                 NA 3
#> ATC:skmeans      155             0.0308                 NA 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node023

Parent node: Node02. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["023"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 9726 rows and 198 columns.
#>   Top rows (926) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-023-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-023-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.977       0.991          0.500 0.499   0.499
#> 3 3 0.945           0.946       0.973          0.288 0.780   0.590
#> 4 4 0.686           0.743       0.852          0.109 0.908   0.753

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3
#> attr(,"optional")
#> [1] 2

There is also optional best \(k\) = 2 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_305_D11     2   0.000     0.9971 0.00 1.00
#> 1772122_303_B02     1   0.000     0.9836 1.00 0.00
#> 1772122_315_F04     1   0.000     0.9836 1.00 0.00
#> 1772122_205_C02     1   0.141     0.9662 0.98 0.02
#> 1772122_205_E01     2   0.000     0.9971 0.00 1.00
#> 1772122_315_G09     1   0.000     0.9836 1.00 0.00
#> 1772122_306_B03     2   0.000     0.9971 0.00 1.00
#> 1772122_205_G06     1   0.000     0.9836 1.00 0.00
#> 1772122_305_C05     2   0.000     0.9971 0.00 1.00
#> 1772122_305_G06     1   0.000     0.9836 1.00 0.00
#> 1772122_306_H11     1   0.000     0.9836 1.00 0.00
#> 1772122_315_A11     2   0.000     0.9971 0.00 1.00
#> 1772122_306_G01     2   0.000     0.9971 0.00 1.00
#> 1772122_306_F05     1   0.000     0.9836 1.00 0.00
#> 1772122_306_B12     2   0.000     0.9971 0.00 1.00
#> 1772122_306_B07     1   0.000     0.9836 1.00 0.00
#> 1772122_306_A12     2   0.000     0.9971 0.00 1.00
#> 1772122_315_E08     1   0.000     0.9836 1.00 0.00
#> 1772122_315_H08     2   0.000     0.9971 0.00 1.00
#> 1772122_298_B07     1   0.000     0.9836 1.00 0.00
#> 1772122_306_A11     2   0.000     0.9971 0.00 1.00
#> 1772122_315_C10     2   0.000     0.9971 0.00 1.00
#> 1772122_315_F03     1   0.000     0.9836 1.00 0.00
#> 1772122_306_H10     1   0.000     0.9836 1.00 0.00
#> 1772122_305_F05     2   0.000     0.9971 0.00 1.00
#> 1772122_306_H04     2   0.000     0.9971 0.00 1.00
#> 1772122_303_D10     2   0.000     0.9971 0.00 1.00
#> 1772122_315_C01     2   0.000     0.9971 0.00 1.00
#> 1772122_305_E08     1   0.000     0.9836 1.00 0.00
#> 1772122_305_E03     2   0.141     0.9773 0.02 0.98
#> 1772122_306_A04     1   0.000     0.9836 1.00 0.00
#> 1772122_305_C02     1   0.000     0.9836 1.00 0.00
#> 1772122_303_H08     2   0.000     0.9971 0.00 1.00
#> 1772122_305_E06     1   0.000     0.9836 1.00 0.00
#> 1772122_306_A10     1   0.760     0.7192 0.78 0.22
#> 1772122_315_H03     2   0.000     0.9971 0.00 1.00
#> 1772122_306_G06     1   0.000     0.9836 1.00 0.00
#> 1772122_303_B09     1   0.000     0.9836 1.00 0.00
#> 1772122_315_H07     1   0.000     0.9836 1.00 0.00
#> 1772122_305_E04     1   0.000     0.9836 1.00 0.00
#> 1772122_306_H06     1   0.000     0.9836 1.00 0.00
#> 1772122_305_D04     1   0.000     0.9836 1.00 0.00
#> 1772122_315_G10     1   0.000     0.9836 1.00 0.00
#> 1772122_315_D06     1   0.000     0.9836 1.00 0.00
#> 1772122_306_F01     1   0.141     0.9662 0.98 0.02
#> 1772122_315_H06     1   0.000     0.9836 1.00 0.00
#> 1772122_315_A05     2   0.000     0.9971 0.00 1.00
#> 1772122_315_E10     2   0.000     0.9971 0.00 1.00
#> 1772122_306_G04     1   0.000     0.9836 1.00 0.00
#> 1772122_315_G06     2   0.000     0.9971 0.00 1.00
#> 1772122_315_H10     2   0.141     0.9773 0.02 0.98
#> 1772122_315_E05     2   0.000     0.9971 0.00 1.00
#> 1772122_305_C11     2   0.000     0.9971 0.00 1.00
#> 1772122_306_A08     2   0.000     0.9971 0.00 1.00
#> 1772122_305_E05     2   0.000     0.9971 0.00 1.00
#> 1772122_306_E12     1   0.000     0.9836 1.00 0.00
#> 1772122_315_A06     2   0.000     0.9971 0.00 1.00
#> 1772122_305_E01     2   0.000     0.9971 0.00 1.00
#> 1772122_306_G05     2   0.000     0.9971 0.00 1.00
#> 1772122_315_A10     2   0.000     0.9971 0.00 1.00
#> 1772122_306_G03     1   0.000     0.9836 1.00 0.00
#> 1772122_305_D08     2   0.000     0.9971 0.00 1.00
#> 1772122_315_D05     2   0.000     0.9971 0.00 1.00
#> 1772122_306_H03     2   0.000     0.9971 0.00 1.00
#> 1772122_306_F08     2   0.000     0.9971 0.00 1.00
#> 1772122_306_D03     2   0.000     0.9971 0.00 1.00
#> 1772122_306_B04     1   0.000     0.9836 1.00 0.00
#> 1772122_306_G07     1   0.000     0.9836 1.00 0.00
#> 1772122_315_H11     1   0.000     0.9836 1.00 0.00
#> 1772122_306_A03     1   0.000     0.9836 1.00 0.00
#> 1772122_315_H02     1   0.402     0.9062 0.92 0.08
#> 1772122_306_F12     1   0.000     0.9836 1.00 0.00
#> 1772122_306_B11     1   0.000     0.9836 1.00 0.00
#> 1772122_315_F11     2   0.000     0.9971 0.00 1.00
#> 1772122_306_B09     2   0.000     0.9971 0.00 1.00
#> 1772122_315_D12     1   0.000     0.9836 1.00 0.00
#> 1772122_306_D02     2   0.000     0.9971 0.00 1.00
#> 1772122_306_E08     2   0.000     0.9971 0.00 1.00
#> 1772122_315_D09     1   0.000     0.9836 1.00 0.00
#> 1772122_306_G12     2   0.000     0.9971 0.00 1.00
#> 1772122_315_E01     1   0.000     0.9836 1.00 0.00
#> 1772122_315_H09     1   0.000     0.9836 1.00 0.00
#> 1772122_306_F06     1   0.000     0.9836 1.00 0.00
#> 1772122_315_B07     1   0.000     0.9836 1.00 0.00
#> 1772122_315_E11     1   0.000     0.9836 1.00 0.00
#> 1772122_315_C03     2   0.000     0.9971 0.00 1.00
#> 1772122_315_D10     2   0.000     0.9971 0.00 1.00
#> 1772122_315_A12     2   0.000     0.9971 0.00 1.00
#> 1772122_315_G07     1   0.000     0.9836 1.00 0.00
#> 1772122_306_F02     2   0.000     0.9971 0.00 1.00
#> 1772122_306_G02     2   0.000     0.9971 0.00 1.00
#> 1772122_315_F09     1   0.000     0.9836 1.00 0.00
#> 1772122_306_D08     2   0.000     0.9971 0.00 1.00
#> 1772122_315_F12     2   0.000     0.9971 0.00 1.00
#> 1772122_303_C07     2   0.000     0.9971 0.00 1.00
#> 1772122_305_D02     2   0.000     0.9971 0.00 1.00
#> 1772122_305_E07     1   0.000     0.9836 1.00 0.00
#> 1772122_305_B09     1   0.000     0.9836 1.00 0.00
#> 1772122_303_C04     1   0.000     0.9836 1.00 0.00
#> 1772122_303_G03     2   0.000     0.9971 0.00 1.00
#> 1772122_305_F11     1   0.000     0.9836 1.00 0.00
#> 1772122_315_F07     1   0.000     0.9836 1.00 0.00
#> 1772122_306_F09     2   0.000     0.9971 0.00 1.00
#> 1772122_305_B12     2   0.000     0.9971 0.00 1.00
#> 1772122_305_H03     2   0.000     0.9971 0.00 1.00
#> 1772122_305_A06     2   0.000     0.9971 0.00 1.00
#> 1772122_303_C08     1   0.995     0.1635 0.54 0.46
#> 1772122_303_C01     1   0.000     0.9836 1.00 0.00
#> 1772122_303_G02     2   0.000     0.9971 0.00 1.00
#> 1772122_303_A06     2   0.000     0.9971 0.00 1.00
#> 1772122_315_E06     1   0.000     0.9836 1.00 0.00
#> 1772122_303_C10     2   0.000     0.9971 0.00 1.00
#> 1772122_303_B07     1   0.327     0.9274 0.94 0.06
#> 1772122_306_D10     1   0.000     0.9836 1.00 0.00
#> 1772122_303_H02     2   0.000     0.9971 0.00 1.00
#> 1772122_305_C06     1   0.000     0.9836 1.00 0.00
#> 1772122_303_D02     2   0.000     0.9971 0.00 1.00
#> 1772122_303_E08     2   0.000     0.9971 0.00 1.00
#> 1772122_305_G11     1   0.000     0.9836 1.00 0.00
#> 1772122_306_A01     2   0.000     0.9971 0.00 1.00
#> 1772122_305_F10     2   0.000     0.9971 0.00 1.00
#> 1772122_305_G08     2   0.000     0.9971 0.00 1.00
#> 1772122_305_A03     2   0.000     0.9971 0.00 1.00
#> 1772122_303_A07     2   0.000     0.9971 0.00 1.00
#> 1772122_305_H12     1   0.000     0.9836 1.00 0.00
#> 1772122_305_A12     2   0.000     0.9971 0.00 1.00
#> 1772122_303_F03     2   0.000     0.9971 0.00 1.00
#> 1772122_305_H10     1   0.000     0.9836 1.00 0.00
#> 1772122_305_H08     2   0.000     0.9971 0.00 1.00
#> 1772122_305_C10     2   0.000     0.9971 0.00 1.00
#> 1772122_315_D11     2   0.000     0.9971 0.00 1.00
#> 1772122_305_C01     2   0.000     0.9971 0.00 1.00
#> 1772122_305_B07     1   0.000     0.9836 1.00 0.00
#> 1772122_305_B02     2   0.000     0.9971 0.00 1.00
#> 1772122_303_E09     2   0.000     0.9971 0.00 1.00
#> 1772122_306_A09     1   0.000     0.9836 1.00 0.00
#> 1772122_303_B05     2   0.000     0.9971 0.00 1.00
#> 1772122_306_C04     1   0.000     0.9836 1.00 0.00
#> 1772122_305_H06     1   0.529     0.8597 0.88 0.12
#> 1772122_306_C02     1   0.000     0.9836 1.00 0.00
#> 1772122_315_E02     1   0.000     0.9836 1.00 0.00
#> 1772122_315_A04     1   0.000     0.9836 1.00 0.00
#> 1772122_306_E11     1   0.000     0.9836 1.00 0.00
#> 1772122_306_G11     2   0.000     0.9971 0.00 1.00
#> 1772122_315_B09     2   0.000     0.9971 0.00 1.00
#> 1772122_303_G07     1   0.000     0.9836 1.00 0.00
#> 1772122_306_B06     1   0.000     0.9836 1.00 0.00
#> 1772122_305_E09     2   0.327     0.9342 0.06 0.94
#> 1772122_306_E05     1   0.000     0.9836 1.00 0.00
#> 1772122_306_F07     1   0.000     0.9836 1.00 0.00
#> 1772122_315_B12     2   0.000     0.9971 0.00 1.00
#> 1772122_306_C08     1   0.000     0.9836 1.00 0.00
#> 1772122_315_D07     1   0.000     0.9836 1.00 0.00
#> 1772122_303_F09     1   0.000     0.9836 1.00 0.00
#> 1772122_315_E12     2   0.000     0.9971 0.00 1.00
#> 1772122_303_F08     1   0.000     0.9836 1.00 0.00
#> 1772122_315_F08     2   0.722     0.7456 0.20 0.80
#> 1772122_305_A11     1   0.000     0.9836 1.00 0.00
#> 1772122_315_C05     1   0.000     0.9836 1.00 0.00
#> 1772122_303_G01     2   0.000     0.9971 0.00 1.00
#> 1772122_303_H03     1   0.000     0.9836 1.00 0.00
#> 1772122_315_B08     1   0.000     0.9836 1.00 0.00
#> 1772122_305_D10     2   0.000     0.9971 0.00 1.00
#> 1772122_315_H12     1   0.000     0.9836 1.00 0.00
#> 1772122_315_G08     1   0.000     0.9836 1.00 0.00
#> 1772122_305_A07     2   0.000     0.9971 0.00 1.00
#> 1772122_315_B10     1   0.999     0.0903 0.52 0.48
#> 1772122_306_F10     2   0.000     0.9971 0.00 1.00
#> 1772122_306_C01     1   0.000     0.9836 1.00 0.00
#> 1772122_315_G01     2   0.000     0.9971 0.00 1.00
#> 1772122_306_D01     2   0.000     0.9971 0.00 1.00
#> 1772122_306_D07     2   0.000     0.9971 0.00 1.00
#> 1772122_306_C12     1   0.000     0.9836 1.00 0.00
#> 1772122_305_B06     2   0.000     0.9971 0.00 1.00
#> 1772122_305_H01     1   0.000     0.9836 1.00 0.00
#> 1772122_315_G04     1   0.000     0.9836 1.00 0.00
#> 1772122_303_A04     2   0.000     0.9971 0.00 1.00
#> 1772122_301_H11     1   0.000     0.9836 1.00 0.00
#> 1772122_299_G02     1   0.000     0.9836 1.00 0.00
#> 1772122_180_D11     1   0.000     0.9836 1.00 0.00
#> 1772122_300_G02     2   0.000     0.9971 0.00 1.00
#> 1772122_298_A02     2   0.000     0.9971 0.00 1.00
#> 1772122_205_A03     2   0.000     0.9971 0.00 1.00
#> 1772122_262_H01     2   0.000     0.9971 0.00 1.00
#> 1772122_204_F11     2   0.000     0.9971 0.00 1.00
#> 1772122_262_D03     2   0.000     0.9971 0.00 1.00
#> 1772122_262_E03     2   0.000     0.9971 0.00 1.00
#> 1772122_206_F02     2   0.000     0.9971 0.00 1.00
#> 1772122_206_F05     2   0.000     0.9971 0.00 1.00
#> 1772122_262_C12     1   0.000     0.9836 1.00 0.00
#> 1772122_206_A10     2   0.000     0.9971 0.00 1.00
#> 1772122_204_A12     1   0.242     0.9474 0.96 0.04
#> 1772122_262_G04     2   0.000     0.9971 0.00 1.00
#> 1772122_205_G10     2   0.000     0.9971 0.00 1.00
#> 1772122_206_H11     2   0.000     0.9971 0.00 1.00
#> 1772122_205_C04     2   0.000     0.9971 0.00 1.00
#> 1772122_262_E06     2   0.000     0.9971 0.00 1.00
#> 1772122_262_F06     2   0.000     0.9971 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_305_D11     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_303_B02     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_315_F04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_205_C02     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_205_E01     2  0.0892      0.961 0.00 0.98 0.02
#> 1772122_315_G09     1  0.0892      0.953 0.98 0.00 0.02
#> 1772122_306_B03     2  0.5406      0.741 0.20 0.78 0.02
#> 1772122_205_G06     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_305_C05     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_305_G06     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_H11     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_A11     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_G01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_F05     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_B12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_B07     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_A12     2  0.3686      0.854 0.00 0.86 0.14
#> 1772122_315_E08     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_H08     2  0.3340      0.875 0.00 0.88 0.12
#> 1772122_298_B07     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_A11     2  0.4796      0.748 0.00 0.78 0.22
#> 1772122_315_C10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_F03     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_H10     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_F05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_H04     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_D10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_C01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_E08     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_E03     1  0.6126      0.353 0.60 0.40 0.00
#> 1772122_306_A04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_C02     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_H08     2  0.2537      0.902 0.08 0.92 0.00
#> 1772122_305_E06     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_306_A10     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_H03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_G06     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_B09     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_315_H07     1  0.2066      0.914 0.94 0.00 0.06
#> 1772122_305_E04     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_306_H06     1  0.0892      0.952 0.98 0.00 0.02
#> 1772122_305_D04     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_315_G10     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_D06     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_F01     1  0.0892      0.952 0.98 0.02 0.00
#> 1772122_315_H06     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_A05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_E10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_G04     3  0.0892      0.958 0.02 0.00 0.98
#> 1772122_315_G06     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_315_H10     1  0.2537      0.888 0.92 0.08 0.00
#> 1772122_315_E05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_C11     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_A08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_E05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_E12     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_A06     2  0.0892      0.961 0.00 0.98 0.02
#> 1772122_305_E01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_G05     1  0.2537      0.888 0.92 0.08 0.00
#> 1772122_315_A10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_G03     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_D08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_D05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_H03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_F08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_D03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_B04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_G07     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_315_H11     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_A03     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_H02     1  0.0892      0.952 0.98 0.02 0.00
#> 1772122_306_F12     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_B11     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_315_F11     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_B09     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_D12     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_D02     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_E08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_D09     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_G12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_E01     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_H09     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_306_F06     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_B07     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_E11     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_315_C03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_D10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_A12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_G07     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_F02     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_G02     1  0.5397      0.627 0.72 0.28 0.00
#> 1772122_315_F09     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_D08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_F12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_C07     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_D02     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_E07     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_B09     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_303_C04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_G03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_F11     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_315_F07     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_F09     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_305_B12     2  0.4555      0.750 0.20 0.80 0.00
#> 1772122_305_H03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_A06     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_C08     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_303_C01     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_G02     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_A06     2  0.4291      0.805 0.00 0.82 0.18
#> 1772122_315_E06     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_303_C10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_B07     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_D10     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_H02     2  0.3686      0.836 0.14 0.86 0.00
#> 1772122_305_C06     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_D02     2  0.2959      0.895 0.00 0.90 0.10
#> 1772122_303_E08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_G11     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_A01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_F10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_G08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_A03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_A07     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_305_H12     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_A12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_F03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_H10     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_H08     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_C10     2  0.5216      0.645 0.26 0.74 0.00
#> 1772122_315_D11     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_C01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_B07     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_B02     1  0.4555      0.747 0.80 0.20 0.00
#> 1772122_303_E09     2  0.2537      0.912 0.00 0.92 0.08
#> 1772122_306_A09     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_303_B05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_C04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_H06     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_306_C02     3  0.3686      0.877 0.14 0.00 0.86
#> 1772122_315_E02     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_A04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_E11     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_G11     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_B09     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_G07     1  0.2959      0.868 0.90 0.00 0.10
#> 1772122_306_B06     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_305_E09     3  0.1529      0.934 0.00 0.04 0.96
#> 1772122_306_E05     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_306_F07     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_B12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_C08     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_D07     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_303_F09     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_E12     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_F08     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_F08     1  0.1529      0.932 0.96 0.04 0.00
#> 1772122_305_A11     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_315_C05     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_303_G01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_303_H03     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_B08     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_D10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_H12     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_G08     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_A07     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_315_B10     1  0.0892      0.952 0.98 0.02 0.00
#> 1772122_306_F10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_C01     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_G01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_D01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_306_D07     1  0.5835      0.509 0.66 0.34 0.00
#> 1772122_306_C12     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_305_B06     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_305_H01     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_315_G04     1  0.0000      0.969 1.00 0.00 0.00
#> 1772122_303_A04     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_301_H11     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_299_G02     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_180_D11     3  0.0000      0.962 0.00 0.00 1.00
#> 1772122_300_G02     3  0.0892      0.949 0.00 0.02 0.98
#> 1772122_298_A02     2  0.3340      0.875 0.00 0.88 0.12
#> 1772122_205_A03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_262_H01     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_204_F11     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_262_D03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_262_E03     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_206_F02     2  0.0892      0.961 0.00 0.98 0.02
#> 1772122_206_F05     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_262_C12     3  0.2537      0.940 0.08 0.00 0.92
#> 1772122_206_A10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_204_A12     1  0.1781      0.939 0.96 0.02 0.02
#> 1772122_262_G04     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_205_G10     2  0.0000      0.975 0.00 1.00 0.00
#> 1772122_206_H11     2  0.4291      0.804 0.00 0.82 0.18
#> 1772122_205_C04     2  0.1529      0.946 0.00 0.96 0.04
#> 1772122_262_E06     3  0.2959      0.874 0.00 0.10 0.90
#> 1772122_262_F06     2  0.0000      0.975 0.00 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_305_D11     4  0.3400     0.5910 0.00 0.00 0.18 0.82
#> 1772122_303_B02     4  0.3801     0.5345 0.00 0.00 0.22 0.78
#> 1772122_315_F04     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_205_C02     4  0.2345     0.6499 0.00 0.00 0.10 0.90
#> 1772122_205_E01     4  0.4713     0.4309 0.00 0.36 0.00 0.64
#> 1772122_315_G09     4  0.4977     0.1943 0.46 0.00 0.00 0.54
#> 1772122_306_B03     4  0.6047     0.5786 0.02 0.10 0.16 0.72
#> 1772122_205_G06     4  0.2647     0.6509 0.00 0.00 0.12 0.88
#> 1772122_305_C05     4  0.2647     0.6509 0.00 0.00 0.12 0.88
#> 1772122_305_G06     4  0.3172     0.6149 0.00 0.00 0.16 0.84
#> 1772122_306_H11     4  0.4790     0.3811 0.38 0.00 0.00 0.62
#> 1772122_315_A11     4  0.2647     0.6509 0.00 0.00 0.12 0.88
#> 1772122_306_G01     4  0.4994     0.2359 0.00 0.48 0.00 0.52
#> 1772122_306_F05     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_306_B12     4  0.5428     0.4404 0.00 0.38 0.02 0.60
#> 1772122_306_B07     4  0.2647     0.6509 0.00 0.00 0.12 0.88
#> 1772122_306_A12     4  0.2345     0.6824 0.00 0.10 0.00 0.90
#> 1772122_315_E08     4  0.4907     0.3029 0.42 0.00 0.00 0.58
#> 1772122_315_H08     4  0.2345     0.6824 0.00 0.10 0.00 0.90
#> 1772122_298_B07     4  0.2647     0.6509 0.00 0.00 0.12 0.88
#> 1772122_306_A11     4  0.2647     0.6763 0.00 0.12 0.00 0.88
#> 1772122_315_C10     2  0.1211     0.8835 0.00 0.96 0.00 0.04
#> 1772122_315_F03     1  0.4755     0.7242 0.76 0.00 0.20 0.04
#> 1772122_306_H10     1  0.1637     0.8380 0.94 0.00 0.06 0.00
#> 1772122_305_F05     2  0.3525     0.8257 0.00 0.86 0.10 0.04
#> 1772122_306_H04     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_D10     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_C01     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_E08     1  0.4284     0.7390 0.78 0.00 0.20 0.02
#> 1772122_305_E03     1  0.8829     0.1574 0.40 0.34 0.20 0.06
#> 1772122_306_A04     1  0.3801     0.6293 0.78 0.00 0.22 0.00
#> 1772122_305_C02     1  0.4134     0.5502 0.74 0.00 0.26 0.00
#> 1772122_303_H08     4  0.7593     0.5155 0.04 0.18 0.18 0.60
#> 1772122_305_E06     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_306_A10     1  0.6049     0.6524 0.68 0.00 0.20 0.12
#> 1772122_315_H03     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_306_G06     1  0.2011     0.8306 0.92 0.00 0.08 0.00
#> 1772122_303_B09     3  0.4134     0.6572 0.00 0.00 0.74 0.26
#> 1772122_315_H07     3  0.4713     0.5918 0.36 0.00 0.64 0.00
#> 1772122_305_E04     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_306_H06     1  0.3400     0.6802 0.82 0.00 0.18 0.00
#> 1772122_305_D04     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_G10     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_D06     1  0.1637     0.8385 0.94 0.00 0.06 0.00
#> 1772122_306_F01     1  0.5147     0.7073 0.74 0.00 0.20 0.06
#> 1772122_315_H06     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_A05     2  0.0707     0.8895 0.00 0.98 0.00 0.02
#> 1772122_315_E10     2  0.5810     0.6917 0.02 0.72 0.20 0.06
#> 1772122_306_G04     3  0.4332     0.7848 0.16 0.00 0.80 0.04
#> 1772122_315_G06     3  0.4277     0.6437 0.00 0.00 0.72 0.28
#> 1772122_315_H10     1  0.5147     0.7073 0.74 0.00 0.20 0.06
#> 1772122_315_E05     2  0.4731     0.7593 0.00 0.78 0.16 0.06
#> 1772122_305_C11     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_306_A08     2  0.1913     0.8749 0.00 0.94 0.02 0.04
#> 1772122_305_E05     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_306_E12     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_A06     2  0.1637     0.8734 0.00 0.94 0.00 0.06
#> 1772122_305_E01     2  0.0707     0.8895 0.00 0.98 0.00 0.02
#> 1772122_306_G05     1  0.6269     0.6658 0.70 0.04 0.20 0.06
#> 1772122_315_A10     2  0.2411     0.8643 0.00 0.92 0.04 0.04
#> 1772122_306_G03     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_D08     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_D05     2  0.0707     0.8895 0.00 0.98 0.00 0.02
#> 1772122_306_H03     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_306_F08     2  0.4227     0.7959 0.00 0.82 0.12 0.06
#> 1772122_306_D03     2  0.4731     0.7598 0.00 0.78 0.16 0.06
#> 1772122_306_B04     1  0.3606     0.7856 0.84 0.00 0.14 0.02
#> 1772122_306_G07     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_H11     1  0.1211     0.8280 0.96 0.00 0.04 0.00
#> 1772122_306_A03     1  0.4284     0.7391 0.78 0.00 0.20 0.02
#> 1772122_315_H02     1  0.4755     0.7243 0.76 0.00 0.20 0.04
#> 1772122_306_F12     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_306_B11     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_F11     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_306_B09     2  0.3525     0.8483 0.00 0.86 0.04 0.10
#> 1772122_315_D12     1  0.2345     0.8204 0.90 0.00 0.10 0.00
#> 1772122_306_D02     2  0.7957     0.2874 0.02 0.50 0.20 0.28
#> 1772122_306_E08     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_D09     3  0.4277     0.6437 0.00 0.00 0.72 0.28
#> 1772122_306_G12     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_E01     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_H09     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_306_F06     1  0.2921     0.7970 0.86 0.00 0.14 0.00
#> 1772122_315_B07     1  0.5713     0.3836 0.62 0.00 0.34 0.04
#> 1772122_315_E11     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_C03     2  0.5147     0.7155 0.00 0.74 0.20 0.06
#> 1772122_315_D10     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_A12     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_G07     3  0.4277     0.6437 0.00 0.00 0.72 0.28
#> 1772122_306_F02     3  0.4277     0.6437 0.00 0.00 0.72 0.28
#> 1772122_306_G02     1  0.8395     0.3867 0.52 0.22 0.20 0.06
#> 1772122_315_F09     1  0.0707     0.8403 0.98 0.00 0.02 0.00
#> 1772122_306_D08     2  0.4553     0.7584 0.00 0.78 0.18 0.04
#> 1772122_315_F12     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_C07     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_D02     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_E07     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_B09     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_303_C04     1  0.3610     0.6558 0.80 0.00 0.20 0.00
#> 1772122_303_G03     2  0.6122     0.6464 0.00 0.68 0.16 0.16
#> 1772122_305_F11     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_F07     1  0.2345     0.7799 0.90 0.00 0.10 0.00
#> 1772122_306_F09     3  0.5883     0.5430 0.00 0.06 0.64 0.30
#> 1772122_305_B12     2  0.8607     0.2727 0.26 0.48 0.20 0.06
#> 1772122_305_H03     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_A06     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_C08     4  0.4522     0.3245 0.00 0.00 0.32 0.68
#> 1772122_303_C01     1  0.4277     0.5035 0.72 0.00 0.28 0.00
#> 1772122_303_G02     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_A06     2  0.4522     0.5236 0.00 0.68 0.00 0.32
#> 1772122_315_E06     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_303_C10     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_B07     3  0.4948     0.3893 0.00 0.00 0.56 0.44
#> 1772122_306_D10     1  0.2647     0.8091 0.88 0.00 0.12 0.00
#> 1772122_303_H02     4  0.7815     0.3935 0.02 0.28 0.18 0.52
#> 1772122_305_C06     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_303_D02     2  0.4277     0.5774 0.00 0.72 0.00 0.28
#> 1772122_303_E08     2  0.4227     0.7964 0.00 0.82 0.12 0.06
#> 1772122_305_G11     1  0.2647     0.7590 0.88 0.00 0.12 0.00
#> 1772122_306_A01     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_F10     2  0.4731     0.7592 0.00 0.78 0.16 0.06
#> 1772122_305_G08     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_A03     2  0.4841     0.7759 0.00 0.78 0.14 0.08
#> 1772122_303_A07     3  0.4277     0.6437 0.00 0.00 0.72 0.28
#> 1772122_305_H12     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_A12     2  0.3935     0.8114 0.00 0.84 0.10 0.06
#> 1772122_303_F03     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_H10     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_H08     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_C10     2  0.8108     0.4352 0.18 0.56 0.20 0.06
#> 1772122_315_D11     2  0.1211     0.8835 0.00 0.96 0.00 0.04
#> 1772122_305_C01     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_305_B07     1  0.0707     0.8410 0.98 0.00 0.02 0.00
#> 1772122_305_B02     1  0.7297     0.5961 0.64 0.08 0.20 0.08
#> 1772122_303_E09     2  0.2011     0.8431 0.00 0.92 0.00 0.08
#> 1772122_306_A09     3  0.4610     0.7551 0.10 0.00 0.80 0.10
#> 1772122_303_B05     2  0.0707     0.8875 0.00 0.98 0.00 0.02
#> 1772122_306_C04     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_H06     3  0.4134     0.6577 0.00 0.00 0.74 0.26
#> 1772122_306_C02     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_E02     1  0.3610     0.6580 0.80 0.00 0.20 0.00
#> 1772122_315_A04     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_306_E11     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_306_G11     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_315_B09     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_G07     3  0.4855     0.5049 0.40 0.00 0.60 0.00
#> 1772122_306_B06     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_305_E09     3  0.6551     0.6018 0.04 0.12 0.70 0.14
#> 1772122_306_E05     1  0.0707     0.8470 0.98 0.00 0.02 0.00
#> 1772122_306_F07     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_B12     2  0.6439     0.6771 0.02 0.68 0.20 0.10
#> 1772122_306_C08     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_D07     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_303_F09     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_E12     2  0.0707     0.8895 0.00 0.98 0.00 0.02
#> 1772122_303_F08     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_F08     1  0.5147     0.7073 0.74 0.00 0.20 0.06
#> 1772122_305_A11     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_315_C05     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_303_G01     2  0.0000     0.8924 0.00 1.00 0.00 0.00
#> 1772122_303_H03     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_B08     1  0.1637     0.8385 0.94 0.00 0.06 0.00
#> 1772122_305_D10     2  0.0707     0.8895 0.00 0.98 0.00 0.02
#> 1772122_315_H12     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_G08     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_A07     2  0.1637     0.8830 0.00 0.94 0.00 0.06
#> 1772122_315_B10     1  0.5147     0.7073 0.74 0.00 0.20 0.06
#> 1772122_306_F10     2  0.0707     0.8895 0.00 0.98 0.00 0.02
#> 1772122_306_C01     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_315_G01     2  0.5151     0.7737 0.00 0.76 0.14 0.10
#> 1772122_306_D01     2  0.1211     0.8841 0.00 0.96 0.00 0.04
#> 1772122_306_D07     1  0.8687     0.2805 0.46 0.28 0.20 0.06
#> 1772122_306_C12     1  0.0000     0.8506 1.00 0.00 0.00 0.00
#> 1772122_305_B06     2  0.1637     0.8830 0.00 0.94 0.00 0.06
#> 1772122_305_H01     1  0.1637     0.8384 0.94 0.00 0.06 0.00
#> 1772122_315_G04     1  0.0707     0.8403 0.98 0.00 0.02 0.00
#> 1772122_303_A04     2  0.4894     0.7906 0.00 0.78 0.12 0.10
#> 1772122_301_H11     3  0.4277     0.6437 0.00 0.00 0.72 0.28
#> 1772122_299_G02     3  0.4977     0.3411 0.00 0.00 0.54 0.46
#> 1772122_180_D11     3  0.4790     0.4927 0.00 0.00 0.62 0.38
#> 1772122_300_G02     4  0.3037     0.6804 0.00 0.10 0.02 0.88
#> 1772122_298_A02     4  0.2345     0.6824 0.00 0.10 0.00 0.90
#> 1772122_205_A03     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_262_H01     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_204_F11     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_262_D03     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_262_E03     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_206_F02     2  0.2011     0.8613 0.00 0.92 0.00 0.08
#> 1772122_206_F05     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_262_C12     3  0.3610     0.7990 0.20 0.00 0.80 0.00
#> 1772122_206_A10     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_204_A12     1  0.5445     0.7331 0.78 0.04 0.08 0.10
#> 1772122_262_G04     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_205_G10     2  0.1637     0.8719 0.00 0.94 0.00 0.06
#> 1772122_206_H11     2  0.4227     0.7665 0.00 0.82 0.06 0.12
#> 1772122_205_C04     2  0.2011     0.8613 0.00 0.92 0.00 0.08
#> 1772122_262_E06     2  0.7047    -0.0891 0.00 0.44 0.44 0.12
#> 1772122_262_F06     2  0.1637     0.8719 0.00 0.94 0.00 0.06

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-023-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-023-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-023-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-023-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-023-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-023-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-023-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-023-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-023-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-023-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-023-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-023-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-023-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-023-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-023-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-023-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-023-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      196           8.56e-02           0.044758 2
#> ATC:skmeans      197           1.90e-02           0.000124 3
#> ATC:skmeans      179           1.40e-20           0.000006 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node0231

Parent node: Node023. Child nodes: Node01121-leaf , Node01122-leaf , Node01211-leaf , Node01212-leaf , Node01221-leaf , Node01222-leaf , Node01223-leaf , Node01311-leaf , Node01312-leaf , Node01321-leaf , Node01322-leaf , Node02121-leaf , Node02122-leaf , Node02311-leaf , Node02312-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["0231"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 8055 rows and 93 columns.
#>   Top rows (806) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 2.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-0231-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-0231-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.977       0.991          0.496 0.504   0.504
#> 3 3 0.765           0.852       0.932          0.322 0.805   0.628
#> 4 4 0.757           0.807       0.909          0.116 0.878   0.671

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 2

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_303_B02     2   0.000     0.9916 0.00 1.00
#> 1772122_315_F04     1   0.000     0.9903 1.00 0.00
#> 1772122_205_C02     2   0.000     0.9916 0.00 1.00
#> 1772122_315_G09     2   0.141     0.9751 0.02 0.98
#> 1772122_205_G06     2   0.000     0.9916 0.00 1.00
#> 1772122_305_G06     2   0.000     0.9916 0.00 1.00
#> 1772122_306_H11     1   0.000     0.9903 1.00 0.00
#> 1772122_306_F05     1   0.000     0.9903 1.00 0.00
#> 1772122_306_B07     2   0.000     0.9916 0.00 1.00
#> 1772122_315_E08     1   0.000     0.9903 1.00 0.00
#> 1772122_298_B07     2   0.000     0.9916 0.00 1.00
#> 1772122_315_F03     1   0.000     0.9903 1.00 0.00
#> 1772122_306_H10     1   0.000     0.9903 1.00 0.00
#> 1772122_305_E08     1   0.000     0.9903 1.00 0.00
#> 1772122_306_A04     2   0.000     0.9916 0.00 1.00
#> 1772122_305_C02     2   0.469     0.8919 0.10 0.90
#> 1772122_305_E06     2   0.000     0.9916 0.00 1.00
#> 1772122_306_A10     1   0.000     0.9903 1.00 0.00
#> 1772122_306_G06     1   0.000     0.9903 1.00 0.00
#> 1772122_303_B09     2   0.000     0.9916 0.00 1.00
#> 1772122_315_H07     2   0.141     0.9751 0.02 0.98
#> 1772122_305_E04     2   0.000     0.9916 0.00 1.00
#> 1772122_306_H06     2   0.469     0.8914 0.10 0.90
#> 1772122_305_D04     2   0.000     0.9916 0.00 1.00
#> 1772122_315_G10     1   0.000     0.9903 1.00 0.00
#> 1772122_315_D06     1   0.000     0.9903 1.00 0.00
#> 1772122_306_F01     1   0.000     0.9903 1.00 0.00
#> 1772122_315_H06     1   0.000     0.9903 1.00 0.00
#> 1772122_306_G04     2   0.000     0.9916 0.00 1.00
#> 1772122_306_E12     1   0.000     0.9903 1.00 0.00
#> 1772122_306_G03     1   0.000     0.9903 1.00 0.00
#> 1772122_306_B04     1   0.000     0.9903 1.00 0.00
#> 1772122_306_G07     2   0.000     0.9916 0.00 1.00
#> 1772122_315_H11     1   0.000     0.9903 1.00 0.00
#> 1772122_306_A03     1   0.000     0.9903 1.00 0.00
#> 1772122_315_H02     1   0.000     0.9903 1.00 0.00
#> 1772122_306_F12     1   0.000     0.9903 1.00 0.00
#> 1772122_306_B11     2   0.000     0.9916 0.00 1.00
#> 1772122_315_D12     1   0.000     0.9903 1.00 0.00
#> 1772122_315_D09     2   0.000     0.9916 0.00 1.00
#> 1772122_315_E01     1   0.000     0.9903 1.00 0.00
#> 1772122_315_H09     2   0.000     0.9916 0.00 1.00
#> 1772122_306_F06     1   0.000     0.9903 1.00 0.00
#> 1772122_315_B07     1   1.000    -0.0155 0.50 0.50
#> 1772122_315_E11     2   0.000     0.9916 0.00 1.00
#> 1772122_315_G07     2   0.000     0.9916 0.00 1.00
#> 1772122_315_F09     1   0.000     0.9903 1.00 0.00
#> 1772122_305_E07     1   0.000     0.9903 1.00 0.00
#> 1772122_305_B09     2   0.000     0.9916 0.00 1.00
#> 1772122_303_C04     1   0.000     0.9903 1.00 0.00
#> 1772122_305_F11     2   0.000     0.9916 0.00 1.00
#> 1772122_315_F07     1   0.000     0.9903 1.00 0.00
#> 1772122_303_C08     2   0.000     0.9916 0.00 1.00
#> 1772122_303_C01     1   0.000     0.9903 1.00 0.00
#> 1772122_315_E06     2   0.000     0.9916 0.00 1.00
#> 1772122_303_B07     2   0.000     0.9916 0.00 1.00
#> 1772122_306_D10     1   0.000     0.9903 1.00 0.00
#> 1772122_305_C06     1   0.000     0.9903 1.00 0.00
#> 1772122_305_G11     1   0.000     0.9903 1.00 0.00
#> 1772122_305_H12     1   0.000     0.9903 1.00 0.00
#> 1772122_305_H10     1   0.000     0.9903 1.00 0.00
#> 1772122_305_B07     1   0.000     0.9903 1.00 0.00
#> 1772122_306_A09     2   0.000     0.9916 0.00 1.00
#> 1772122_306_C04     1   0.000     0.9903 1.00 0.00
#> 1772122_305_H06     2   0.000     0.9916 0.00 1.00
#> 1772122_306_C02     2   0.000     0.9916 0.00 1.00
#> 1772122_315_E02     1   0.000     0.9903 1.00 0.00
#> 1772122_315_A04     1   0.000     0.9903 1.00 0.00
#> 1772122_306_E11     1   0.000     0.9903 1.00 0.00
#> 1772122_303_G07     2   0.000     0.9916 0.00 1.00
#> 1772122_306_B06     2   0.000     0.9916 0.00 1.00
#> 1772122_306_E05     1   0.000     0.9903 1.00 0.00
#> 1772122_306_F07     1   0.000     0.9903 1.00 0.00
#> 1772122_306_C08     1   0.000     0.9903 1.00 0.00
#> 1772122_315_D07     2   0.000     0.9916 0.00 1.00
#> 1772122_303_F09     1   0.000     0.9903 1.00 0.00
#> 1772122_303_F08     1   0.000     0.9903 1.00 0.00
#> 1772122_305_A11     2   0.000     0.9916 0.00 1.00
#> 1772122_315_C05     2   0.000     0.9916 0.00 1.00
#> 1772122_303_H03     1   0.000     0.9903 1.00 0.00
#> 1772122_315_B08     1   0.000     0.9903 1.00 0.00
#> 1772122_315_H12     1   0.000     0.9903 1.00 0.00
#> 1772122_315_G08     1   0.000     0.9903 1.00 0.00
#> 1772122_315_B10     1   0.000     0.9903 1.00 0.00
#> 1772122_306_C01     1   0.000     0.9903 1.00 0.00
#> 1772122_306_C12     1   0.000     0.9903 1.00 0.00
#> 1772122_305_H01     1   0.000     0.9903 1.00 0.00
#> 1772122_315_G04     1   0.000     0.9903 1.00 0.00
#> 1772122_301_H11     2   0.000     0.9916 0.00 1.00
#> 1772122_299_G02     2   0.000     0.9916 0.00 1.00
#> 1772122_180_D11     2   0.000     0.9916 0.00 1.00
#> 1772122_262_C12     2   0.000     0.9916 0.00 1.00
#> 1772122_204_A12     2   0.402     0.9153 0.08 0.92

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_303_B02     2  0.4291      0.815 0.00 0.82 0.18
#> 1772122_315_F04     1  0.1529      0.905 0.96 0.00 0.04
#> 1772122_205_C02     2  0.5216      0.719 0.00 0.74 0.26
#> 1772122_315_G09     3  0.0000      0.885 0.00 0.00 1.00
#> 1772122_205_G06     3  0.5835      0.355 0.00 0.34 0.66
#> 1772122_305_G06     2  0.4291      0.815 0.00 0.82 0.18
#> 1772122_306_H11     3  0.5835      0.490 0.34 0.00 0.66
#> 1772122_306_F05     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_B07     3  0.1529      0.861 0.00 0.04 0.96
#> 1772122_315_E08     3  0.3340      0.826 0.12 0.00 0.88
#> 1772122_298_B07     2  0.5835      0.588 0.00 0.66 0.34
#> 1772122_315_F03     3  0.0000      0.885 0.00 0.00 1.00
#> 1772122_306_H10     3  0.0000      0.885 0.00 0.00 1.00
#> 1772122_305_E08     1  0.5948      0.430 0.64 0.00 0.36
#> 1772122_306_A04     3  0.0000      0.885 0.00 0.00 1.00
#> 1772122_305_C02     2  0.6443      0.625 0.24 0.72 0.04
#> 1772122_305_E06     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_A10     3  0.0000      0.885 0.00 0.00 1.00
#> 1772122_306_G06     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_303_B09     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_H07     2  0.2959      0.840 0.10 0.90 0.00
#> 1772122_305_E04     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_H06     3  0.0000      0.885 0.00 0.00 1.00
#> 1772122_305_D04     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_G10     3  0.5016      0.684 0.24 0.00 0.76
#> 1772122_315_D06     3  0.2537      0.866 0.08 0.00 0.92
#> 1772122_306_F01     3  0.2066      0.876 0.06 0.00 0.94
#> 1772122_315_H06     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_G04     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_E12     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_G03     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_B04     3  0.0892      0.887 0.02 0.00 0.98
#> 1772122_306_G07     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_H11     3  0.2066      0.877 0.06 0.00 0.94
#> 1772122_306_A03     1  0.6280      0.140 0.54 0.00 0.46
#> 1772122_315_H02     3  0.3686      0.817 0.14 0.00 0.86
#> 1772122_306_F12     3  0.4002      0.795 0.16 0.00 0.84
#> 1772122_306_B11     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_D12     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_D09     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_E01     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_H09     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_F06     3  0.4555      0.746 0.20 0.00 0.80
#> 1772122_315_B07     3  0.2414      0.867 0.02 0.04 0.94
#> 1772122_315_E11     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_G07     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_F09     1  0.6280      0.139 0.54 0.00 0.46
#> 1772122_305_E07     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_305_B09     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_303_C04     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_305_F11     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_F07     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_303_C08     2  0.4291      0.815 0.00 0.82 0.18
#> 1772122_303_C01     1  0.1529      0.897 0.96 0.04 0.00
#> 1772122_315_E06     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_303_B07     2  0.4555      0.795 0.00 0.80 0.20
#> 1772122_306_D10     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_305_C06     1  0.2537      0.874 0.92 0.00 0.08
#> 1772122_305_G11     1  0.5706      0.503 0.68 0.00 0.32
#> 1772122_305_H12     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_305_H10     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_305_B07     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_A09     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_C04     1  0.2959      0.855 0.90 0.00 0.10
#> 1772122_305_H06     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_C02     2  0.1529      0.912 0.00 0.96 0.04
#> 1772122_315_E02     1  0.1529      0.896 0.96 0.04 0.00
#> 1772122_315_A04     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_E11     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_303_G07     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_B06     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_306_E05     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_F07     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_C08     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_D07     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_303_F09     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_303_F08     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_305_A11     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_315_C05     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_303_H03     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_B08     1  0.2959      0.854 0.90 0.00 0.10
#> 1772122_315_H12     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_G08     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_B10     1  0.5397      0.601 0.72 0.00 0.28
#> 1772122_306_C01     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_306_C12     1  0.2066      0.890 0.94 0.00 0.06
#> 1772122_305_H01     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_315_G04     1  0.0000      0.931 1.00 0.00 0.00
#> 1772122_301_H11     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_299_G02     2  0.3686      0.847 0.00 0.86 0.14
#> 1772122_180_D11     2  0.5016      0.749 0.00 0.76 0.24
#> 1772122_262_C12     2  0.0000      0.932 0.00 1.00 0.00
#> 1772122_204_A12     3  0.0000      0.885 0.00 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_303_B02     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_315_F04     1  0.2345     0.8689 0.90 0.00 0.10 0.00
#> 1772122_205_C02     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_315_G09     4  0.3172     0.7519 0.00 0.00 0.16 0.84
#> 1772122_205_G06     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_305_G06     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_306_H11     4  0.3400     0.7167 0.18 0.00 0.00 0.82
#> 1772122_306_F05     1  0.0707     0.9134 0.98 0.00 0.02 0.00
#> 1772122_306_B07     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_315_E08     4  0.4949     0.6625 0.18 0.00 0.06 0.76
#> 1772122_298_B07     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_315_F03     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_306_H10     3  0.0707     0.8230 0.00 0.00 0.98 0.02
#> 1772122_305_E08     3  0.4790     0.3489 0.38 0.00 0.62 0.00
#> 1772122_306_A04     3  0.2011     0.7869 0.00 0.00 0.92 0.08
#> 1772122_305_C02     2  0.8376     0.3229 0.16 0.54 0.22 0.08
#> 1772122_305_E06     2  0.2647     0.8532 0.00 0.88 0.00 0.12
#> 1772122_306_A10     3  0.4522     0.5061 0.00 0.00 0.68 0.32
#> 1772122_306_G06     1  0.1211     0.9057 0.96 0.00 0.04 0.00
#> 1772122_303_B09     2  0.3801     0.7775 0.00 0.78 0.00 0.22
#> 1772122_315_H07     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_305_E04     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_306_H06     3  0.0707     0.8252 0.00 0.00 0.98 0.02
#> 1772122_305_D04     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_315_G10     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_315_D06     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_306_F01     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_315_H06     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_G04     2  0.1637     0.8799 0.00 0.94 0.00 0.06
#> 1772122_306_E12     1  0.2921     0.8324 0.86 0.00 0.14 0.00
#> 1772122_306_G03     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_B04     3  0.2706     0.7923 0.02 0.00 0.90 0.08
#> 1772122_306_G07     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_315_H11     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_306_A03     3  0.3975     0.6357 0.24 0.00 0.76 0.00
#> 1772122_315_H02     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_306_F12     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_306_B11     2  0.2647     0.8538 0.00 0.88 0.00 0.12
#> 1772122_315_D12     1  0.2011     0.8837 0.92 0.00 0.08 0.00
#> 1772122_315_D09     2  0.3801     0.7762 0.00 0.78 0.00 0.22
#> 1772122_315_E01     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_315_H09     2  0.2345     0.8632 0.00 0.90 0.00 0.10
#> 1772122_306_F06     3  0.0000     0.8324 0.00 0.00 1.00 0.00
#> 1772122_315_B07     3  0.6145     0.5999 0.02 0.08 0.70 0.20
#> 1772122_315_E11     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_315_G07     2  0.3801     0.7775 0.00 0.78 0.00 0.22
#> 1772122_315_F09     3  0.2647     0.7599 0.12 0.00 0.88 0.00
#> 1772122_305_E07     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_305_B09     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_303_C04     1  0.2011     0.8688 0.92 0.08 0.00 0.00
#> 1772122_305_F11     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_315_F07     1  0.2011     0.8694 0.92 0.08 0.00 0.00
#> 1772122_303_C08     4  0.0000     0.8997 0.00 0.00 0.00 1.00
#> 1772122_303_C01     1  0.2335     0.8745 0.92 0.06 0.00 0.02
#> 1772122_315_E06     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_303_B07     4  0.4284     0.6806 0.00 0.20 0.02 0.78
#> 1772122_306_D10     1  0.1211     0.9057 0.96 0.00 0.04 0.00
#> 1772122_305_C06     1  0.3610     0.7637 0.80 0.00 0.20 0.00
#> 1772122_305_G11     3  0.6879     0.2377 0.40 0.06 0.52 0.02
#> 1772122_305_H12     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_305_H10     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_305_B07     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_A09     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_306_C04     1  0.4491     0.7666 0.80 0.00 0.14 0.06
#> 1772122_305_H06     2  0.3801     0.7762 0.00 0.78 0.00 0.22
#> 1772122_306_C02     2  0.4948     0.3115 0.00 0.56 0.00 0.44
#> 1772122_315_E02     1  0.3975     0.6806 0.76 0.24 0.00 0.00
#> 1772122_315_A04     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_E11     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_303_G07     2  0.0707     0.8871 0.00 0.98 0.00 0.02
#> 1772122_306_B06     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_306_E05     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_F07     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_C08     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_315_D07     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_303_F09     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_303_F08     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_305_A11     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_315_C05     2  0.2706     0.8660 0.00 0.90 0.02 0.08
#> 1772122_303_H03     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_315_B08     1  0.4277     0.6155 0.72 0.00 0.28 0.00
#> 1772122_315_H12     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_315_G08     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_315_B10     1  0.4948     0.2067 0.56 0.00 0.44 0.00
#> 1772122_306_C01     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_306_C12     1  0.4624     0.4962 0.66 0.00 0.34 0.00
#> 1772122_305_H01     1  0.1637     0.8944 0.94 0.00 0.06 0.00
#> 1772122_315_G04     1  0.0000     0.9220 1.00 0.00 0.00 0.00
#> 1772122_301_H11     2  0.3801     0.7775 0.00 0.78 0.00 0.22
#> 1772122_299_G02     4  0.2011     0.8507 0.00 0.08 0.00 0.92
#> 1772122_180_D11     4  0.1637     0.8666 0.00 0.06 0.00 0.94
#> 1772122_262_C12     2  0.0000     0.8951 0.00 1.00 0.00 0.00
#> 1772122_204_A12     3  0.5000    -0.0203 0.00 0.00 0.50 0.50

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-0231-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-0231-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-0231-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-0231-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-0231-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-0231-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-0231-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-0231-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-0231-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-0231-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-0231-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-0231-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-0231-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-0231-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-0231-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-0231-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-0231-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans       92           1.06e-01            0.00336 2
#> ATC:skmeans       88           3.61e-04            0.06012 3
#> ATC:skmeans       86           6.52e-11            0.00230 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node024

Parent node: Node02. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["024"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 8139 rows and 121 columns.
#>   Top rows (814) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 3.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-024-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-024-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 0.566           0.747       0.891          0.503 0.496   0.496
#> 3 3 0.923           0.929       0.970          0.328 0.694   0.460
#> 4 4 0.683           0.613       0.791          0.116 0.872   0.640

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 3

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_310_B10     1   0.141    0.87236 0.98 0.02
#> 1772122_311_B04     2   0.000    0.85794 0.00 1.00
#> 1772122_310_D05     2   0.327    0.85849 0.06 0.94
#> 1772122_314_F11     1   0.634    0.74637 0.84 0.16
#> 1772122_312_G11     2   0.327    0.85849 0.06 0.94
#> 1772122_310_B07     2   0.000    0.85794 0.00 1.00
#> 1772122_314_H06     2   0.990    0.21173 0.44 0.56
#> 1772122_312_C04     2   1.000   -0.00207 0.50 0.50
#> 1772122_314_F12     2   0.402    0.84600 0.08 0.92
#> 1772122_312_H09     2   0.242    0.83877 0.04 0.96
#> 1772122_310_H06     2   0.000    0.85794 0.00 1.00
#> 1772122_310_C12     1   0.529    0.78673 0.88 0.12
#> 1772122_314_D07     1   0.722    0.69358 0.80 0.20
#> 1772122_314_B03     2   0.680    0.74715 0.18 0.82
#> 1772122_312_C10     1   0.943    0.40260 0.64 0.36
#> 1772122_314_B12     1   0.000    0.87531 1.00 0.00
#> 1772122_310_E07     2   0.990    0.19319 0.44 0.56
#> 1772122_310_E03     1   0.242    0.86647 0.96 0.04
#> 1772122_314_G10     1   0.981    0.24477 0.58 0.42
#> 1772122_314_C04     1   0.760    0.66532 0.78 0.22
#> 1772122_310_B05     1   0.242    0.86647 0.96 0.04
#> 1772122_310_A03     1   0.000    0.87531 1.00 0.00
#> 1772122_310_F09     2   0.327    0.85849 0.06 0.94
#> 1772122_311_A06     2   0.827    0.57730 0.26 0.74
#> 1772122_312_E09     2   0.981    0.27587 0.42 0.58
#> 1772122_314_D12     2   0.327    0.85849 0.06 0.94
#> 1772122_311_B09     1   0.327    0.85452 0.94 0.06
#> 1772122_312_D12     1   0.827    0.60235 0.74 0.26
#> 1772122_314_F10     2   0.327    0.85849 0.06 0.94
#> 1772122_310_G06     2   0.000    0.85794 0.00 1.00
#> 1772122_312_F10     2   0.327    0.85849 0.06 0.94
#> 1772122_310_H05     1   0.634    0.77725 0.84 0.16
#> 1772122_310_G10     1   0.000    0.87531 1.00 0.00
#> 1772122_311_F01     2   0.000    0.85794 0.00 1.00
#> 1772122_314_E12     1   0.999    0.04770 0.52 0.48
#> 1772122_312_F01     2   0.469    0.83074 0.10 0.90
#> 1772122_311_G08     2   0.242    0.83811 0.04 0.96
#> 1772122_312_A11     2   0.327    0.85849 0.06 0.94
#> 1772122_310_E10     2   0.327    0.85849 0.06 0.94
#> 1772122_312_F07     2   0.327    0.85849 0.06 0.94
#> 1772122_314_E07     1   0.000    0.87531 1.00 0.00
#> 1772122_314_C08     2   0.327    0.85849 0.06 0.94
#> 1772122_314_A12     1   0.000    0.87531 1.00 0.00
#> 1772122_314_D08     2   0.327    0.85849 0.06 0.94
#> 1772122_310_A04     2   0.327    0.85849 0.06 0.94
#> 1772122_312_D07     1   0.827    0.60263 0.74 0.26
#> 1772122_312_B01     2   0.327    0.85849 0.06 0.94
#> 1772122_311_F09     2   0.680    0.69457 0.18 0.82
#> 1772122_312_B07     1   0.000    0.87531 1.00 0.00
#> 1772122_310_G01     1   0.529    0.81668 0.88 0.12
#> 1772122_314_A02     1   0.000    0.87531 1.00 0.00
#> 1772122_312_E08     2   0.795    0.66397 0.24 0.76
#> 1772122_310_H09     2   0.000    0.85794 0.00 1.00
#> 1772122_310_G02     2   0.000    0.85794 0.00 1.00
#> 1772122_310_E05     2   0.000    0.85794 0.00 1.00
#> 1772122_310_G07     2   0.995    0.13333 0.46 0.54
#> 1772122_310_F12     1   0.242    0.86647 0.96 0.04
#> 1772122_310_F04     1   1.000   -0.01939 0.50 0.50
#> 1772122_311_D02     2   0.000    0.85794 0.00 1.00
#> 1772122_310_E02     1   0.469    0.84434 0.90 0.10
#> 1772122_310_C10     2   0.242    0.85826 0.04 0.96
#> 1772122_311_G07     2   0.000    0.85794 0.00 1.00
#> 1772122_311_E06     1   0.327    0.85452 0.94 0.06
#> 1772122_310_D02     2   0.141    0.85008 0.02 0.98
#> 1772122_311_H03     2   0.000    0.85794 0.00 1.00
#> 1772122_311_A01     1   0.327    0.85452 0.94 0.06
#> 1772122_311_B01     2   0.000    0.85794 0.00 1.00
#> 1772122_310_H01     2   0.242    0.85826 0.04 0.96
#> 1772122_310_A12     1   0.242    0.86647 0.96 0.04
#> 1772122_311_F05     2   0.971    0.29916 0.40 0.60
#> 1772122_314_H08     1   0.000    0.87531 1.00 0.00
#> 1772122_310_A10     2   0.327    0.85849 0.06 0.94
#> 1772122_314_C05     1   0.000    0.87531 1.00 0.00
#> 1772122_314_D03     1   0.000    0.87531 1.00 0.00
#> 1772122_314_B06     1   0.000    0.87531 1.00 0.00
#> 1772122_314_H07     1   0.000    0.87531 1.00 0.00
#> 1772122_314_C12     1   0.943    0.40311 0.64 0.36
#> 1772122_314_C06     2   0.000    0.85794 0.00 1.00
#> 1772122_312_H05     1   0.000    0.87531 1.00 0.00
#> 1772122_310_C06     1   0.958    0.37223 0.62 0.38
#> 1772122_314_E08     1   0.000    0.87531 1.00 0.00
#> 1772122_314_G05     1   0.000    0.87531 1.00 0.00
#> 1772122_314_D09     2   0.000    0.85794 0.00 1.00
#> 1772122_314_B05     1   0.000    0.87531 1.00 0.00
#> 1772122_312_D10     2   0.327    0.85849 0.06 0.94
#> 1772122_312_A03     1   0.000    0.87531 1.00 0.00
#> 1772122_314_H03     2   0.000    0.85794 0.00 1.00
#> 1772122_314_H12     1   0.000    0.87531 1.00 0.00
#> 1772122_314_H05     1   0.000    0.87531 1.00 0.00
#> 1772122_312_F11     2   0.971    0.29608 0.40 0.60
#> 1772122_312_E10     1   0.141    0.87236 0.98 0.02
#> 1772122_314_G04     2   0.327    0.85849 0.06 0.94
#> 1772122_312_E05     2   0.327    0.85849 0.06 0.94
#> 1772122_314_B11     1   0.795    0.66739 0.76 0.24
#> 1772122_312_G02     1   0.242    0.86647 0.96 0.04
#> 1772122_312_C05     1   0.881    0.52820 0.70 0.30
#> 1772122_311_F10     2   0.000    0.85794 0.00 1.00
#> 1772122_314_E06     1   0.990    0.18256 0.56 0.44
#> 1772122_314_C01     2   0.327    0.85849 0.06 0.94
#> 1772122_312_H10     1   0.141    0.86640 0.98 0.02
#> 1772122_311_G01     2   0.000    0.85794 0.00 1.00
#> 1772122_310_C03     1   0.242    0.86647 0.96 0.04
#> 1772122_310_B03     2   0.141    0.85065 0.02 0.98
#> 1772122_310_G12     1   0.327    0.85452 0.94 0.06
#> 1772122_311_H01     2   0.995    0.13333 0.46 0.54
#> 1772122_311_A04     2   0.990    0.19319 0.44 0.56
#> 1772122_312_G09     2   0.327    0.85849 0.06 0.94
#> 1772122_314_C11     1   0.000    0.87531 1.00 0.00
#> 1772122_312_B12     1   0.000    0.87531 1.00 0.00
#> 1772122_311_D07     1   0.760    0.69696 0.78 0.22
#> 1772122_312_D09     2   0.680    0.75453 0.18 0.82
#> 1772122_311_B10     2   0.995    0.13333 0.46 0.54
#> 1772122_310_G08     1   0.327    0.85452 0.94 0.06
#> 1772122_311_H12     1   0.584    0.79571 0.86 0.14
#> 1772122_310_A08     1   0.242    0.86647 0.96 0.04
#> 1772122_310_B08     1   0.242    0.86647 0.96 0.04
#> 1772122_310_F08     1   0.242    0.86647 0.96 0.04
#> 1772122_314_F08     1   0.000    0.87531 1.00 0.00
#> 1772122_311_C04     2   0.000    0.85794 0.00 1.00
#> 1772122_314_E01     1   0.000    0.87531 1.00 0.00
#> 1772122_314_G12     1   0.141    0.87236 0.98 0.02

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_310_B10     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_B04     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_D05     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_F11     2  0.9267     0.1353 0.16 0.46 0.38
#> 1772122_312_G11     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_B07     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_H06     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_C04     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_F12     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_H09     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_H06     3  0.0892     0.9595 0.00 0.02 0.98
#> 1772122_310_C12     2  0.6302     0.0821 0.48 0.52 0.00
#> 1772122_314_D07     2  0.1529     0.9185 0.04 0.96 0.00
#> 1772122_314_B03     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_C10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_B12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_E07     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_E03     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_G10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_C04     2  0.2066     0.9022 0.06 0.94 0.00
#> 1772122_310_B05     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_A03     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_F09     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_311_A06     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_E09     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_D12     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_311_B09     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_312_D12     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_F10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_G06     2  0.6126     0.3309 0.00 0.60 0.40
#> 1772122_312_F10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_H05     1  0.3686     0.8388 0.86 0.00 0.14
#> 1772122_310_G10     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_F01     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_E12     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_F01     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_311_G08     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_A11     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_E10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_F07     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_E07     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_C08     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_A12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_D08     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_A04     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_D07     2  0.2959     0.8638 0.10 0.90 0.00
#> 1772122_312_B01     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_311_F09     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_B07     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_G01     1  0.3686     0.8375 0.86 0.00 0.14
#> 1772122_314_A02     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_312_E08     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_H09     3  0.2066     0.9187 0.00 0.06 0.94
#> 1772122_310_G02     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_E05     2  0.3415     0.8691 0.02 0.90 0.08
#> 1772122_310_G07     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_F12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_F04     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_311_D02     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_E02     1  0.2537     0.9078 0.92 0.08 0.00
#> 1772122_310_C10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_311_G07     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_311_E06     1  0.2066     0.9282 0.94 0.00 0.06
#> 1772122_310_D02     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_311_H03     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_311_A01     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_B01     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_H01     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_310_A12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_F05     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_H08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_A10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_C05     1  0.2959     0.8851 0.90 0.10 0.00
#> 1772122_314_D03     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_B06     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_H07     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_C12     2  0.0892     0.9340 0.02 0.98 0.00
#> 1772122_314_C06     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_H05     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_C06     3  0.4291     0.7704 0.18 0.00 0.82
#> 1772122_314_E08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_G05     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_D09     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_B05     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_312_D10     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_A03     1  0.2066     0.9284 0.94 0.06 0.00
#> 1772122_314_H03     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_H12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_H05     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_312_F11     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_E10     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_G04     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_E05     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_B11     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_G02     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_312_C05     2  0.4002     0.7948 0.16 0.84 0.00
#> 1772122_311_F10     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_E06     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_C01     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_312_H10     1  0.4796     0.7138 0.78 0.22 0.00
#> 1772122_311_G01     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_C03     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_B03     3  0.7901     0.2159 0.06 0.40 0.54
#> 1772122_310_G12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_H01     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_311_A04     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_G09     2  0.0000     0.9484 0.00 1.00 0.00
#> 1772122_314_C11     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_312_B12     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_D07     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_312_D09     2  0.5406     0.7205 0.02 0.78 0.20
#> 1772122_311_B10     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_G08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_H12     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_310_A08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_B08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_310_F08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_F08     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_311_C04     3  0.0000     0.9779 0.00 0.00 1.00
#> 1772122_314_E01     1  0.0000     0.9806 1.00 0.00 0.00
#> 1772122_314_G12     1  0.0000     0.9806 1.00 0.00 0.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_310_B10     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_311_B04     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_D05     2  0.4790    -0.2478 0.00 0.62 0.00 0.38
#> 1772122_314_F11     2  0.7091     0.4922 0.02 0.62 0.14 0.22
#> 1772122_312_G11     2  0.2345     0.4556 0.00 0.90 0.00 0.10
#> 1772122_310_B07     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_314_H06     2  0.3400     0.5751 0.00 0.82 0.00 0.18
#> 1772122_312_C04     2  0.1637     0.5516 0.00 0.94 0.00 0.06
#> 1772122_314_F12     2  0.2647     0.4120 0.00 0.88 0.00 0.12
#> 1772122_312_H09     3  0.3801     0.7185 0.00 0.22 0.78 0.00
#> 1772122_310_H06     3  0.4522     0.5541 0.00 0.32 0.68 0.00
#> 1772122_310_C12     2  0.4790     0.4617 0.00 0.62 0.00 0.38
#> 1772122_314_D07     2  0.4522     0.5573 0.00 0.68 0.00 0.32
#> 1772122_314_B03     2  0.1211     0.5079 0.00 0.96 0.00 0.04
#> 1772122_312_C10     2  0.3975     0.5750 0.00 0.76 0.00 0.24
#> 1772122_314_B12     2  0.6262     0.3386 0.06 0.54 0.00 0.40
#> 1772122_310_E07     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_E03     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_314_G10     2  0.4277     0.5625 0.00 0.72 0.00 0.28
#> 1772122_314_C04     2  0.4713     0.4905 0.00 0.64 0.00 0.36
#> 1772122_310_B05     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_310_A03     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_310_F09     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_311_A06     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_312_E09     4  0.6074     0.6011 0.06 0.34 0.00 0.60
#> 1772122_314_D12     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_311_B09     1  0.5487     0.7709 0.58 0.00 0.02 0.40
#> 1772122_312_D12     2  0.1637     0.5240 0.00 0.94 0.00 0.06
#> 1772122_314_F10     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_310_G06     4  0.7179     0.4529 0.00 0.38 0.14 0.48
#> 1772122_312_F10     2  0.5000    -0.4997 0.00 0.50 0.00 0.50
#> 1772122_310_H05     1  0.6253     0.6669 0.70 0.02 0.10 0.18
#> 1772122_310_G10     1  0.7206     0.6378 0.46 0.14 0.00 0.40
#> 1772122_311_F01     3  0.4134     0.6336 0.00 0.00 0.74 0.26
#> 1772122_314_E12     2  0.0707     0.5161 0.00 0.98 0.00 0.02
#> 1772122_312_F01     2  0.2011     0.4785 0.00 0.92 0.00 0.08
#> 1772122_311_G08     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_312_A11     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_310_E10     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_312_F07     2  0.5000    -0.4910 0.00 0.50 0.00 0.50
#> 1772122_314_E07     1  0.5355     0.7748 0.62 0.02 0.00 0.36
#> 1772122_314_C08     2  0.3610     0.2646 0.00 0.80 0.00 0.20
#> 1772122_314_A12     1  0.5487     0.7684 0.58 0.02 0.00 0.40
#> 1772122_314_D08     2  0.2921     0.4060 0.00 0.86 0.00 0.14
#> 1772122_310_A04     2  0.4977    -0.4426 0.00 0.54 0.00 0.46
#> 1772122_312_D07     2  0.4522     0.5564 0.00 0.68 0.00 0.32
#> 1772122_312_B01     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_311_F09     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_312_B07     2  0.6554     0.2939 0.08 0.52 0.00 0.40
#> 1772122_310_G01     1  0.1637     0.6578 0.94 0.00 0.06 0.00
#> 1772122_314_A02     1  0.5915     0.7516 0.56 0.04 0.00 0.40
#> 1772122_312_E08     2  0.0707     0.5205 0.00 0.98 0.00 0.02
#> 1772122_310_H09     4  0.6714     0.2996 0.00 0.10 0.36 0.54
#> 1772122_310_G02     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_E05     4  0.6074     0.4248 0.34 0.06 0.00 0.60
#> 1772122_310_G07     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_F12     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_310_F04     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_311_D02     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_E02     4  0.6831    -0.3181 0.42 0.10 0.00 0.48
#> 1772122_310_C10     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_311_G07     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_311_E06     1  0.6797     0.6732 0.60 0.00 0.16 0.24
#> 1772122_310_D02     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_311_H03     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_311_A01     1  0.4624     0.7800 0.66 0.00 0.00 0.34
#> 1772122_311_B01     3  0.5606     0.0663 0.00 0.02 0.50 0.48
#> 1772122_310_H01     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_310_A12     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_311_F05     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_314_H08     1  0.5487     0.7680 0.58 0.02 0.00 0.40
#> 1772122_310_A10     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_314_C05     2  0.7499     0.0246 0.18 0.42 0.00 0.40
#> 1772122_314_D03     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_314_B06     1  0.5487     0.7684 0.58 0.02 0.00 0.40
#> 1772122_314_H07     1  0.2921     0.7456 0.86 0.00 0.00 0.14
#> 1772122_314_C12     2  0.3975     0.5747 0.00 0.76 0.00 0.24
#> 1772122_314_C06     3  0.2335     0.8700 0.00 0.02 0.92 0.06
#> 1772122_312_H05     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_310_C06     3  0.5106     0.6446 0.24 0.00 0.72 0.04
#> 1772122_314_E08     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_314_G05     4  0.7768    -0.5936 0.36 0.24 0.00 0.40
#> 1772122_314_D09     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_314_B05     1  0.5487     0.7684 0.58 0.02 0.00 0.40
#> 1772122_312_D10     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_312_A03     4  0.7816    -0.5673 0.34 0.26 0.00 0.40
#> 1772122_314_H03     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_314_H12     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_314_H05     1  0.4855     0.7792 0.60 0.00 0.00 0.40
#> 1772122_312_F11     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_312_E10     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_314_G04     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_312_E05     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_314_B11     3  0.3400     0.7823 0.18 0.00 0.82 0.00
#> 1772122_312_G02     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_312_C05     4  0.7084     0.4043 0.34 0.14 0.00 0.52
#> 1772122_311_F10     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_314_E06     2  0.4134     0.1583 0.00 0.74 0.00 0.26
#> 1772122_314_C01     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_312_H10     1  0.7499     0.3894 0.42 0.18 0.00 0.40
#> 1772122_311_G01     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_C03     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_310_B03     4  0.5487     0.3712 0.40 0.00 0.02 0.58
#> 1772122_310_G12     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_311_H01     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_311_A04     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_312_G09     4  0.4855     0.6389 0.00 0.40 0.00 0.60
#> 1772122_314_C11     1  0.5487     0.7684 0.58 0.02 0.00 0.40
#> 1772122_312_B12     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_311_D07     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_312_D09     4  0.8240     0.3667 0.34 0.12 0.06 0.48
#> 1772122_311_B10     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_310_G08     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_311_H12     3  0.3172     0.8048 0.16 0.00 0.84 0.00
#> 1772122_310_A08     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_310_B08     1  0.4277     0.7734 0.72 0.00 0.00 0.28
#> 1772122_310_F08     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_314_F08     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_311_C04     3  0.0000     0.9321 0.00 0.00 1.00 0.00
#> 1772122_314_E01     1  0.0000     0.7075 1.00 0.00 0.00 0.00
#> 1772122_314_G12     1  0.0000     0.7075 1.00 0.00 0.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-024-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-024-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-024-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-024-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-024-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-024-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-024-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-024-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-024-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-024-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-024-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-024-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-024-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-024-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-024-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-024-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-024-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      104            0.13094                 NA 2
#> ATC:skmeans      117            0.00172                 NA 3
#> ATC:skmeans       94            0.01349                 NA 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node03

Parent node: Node0. Child nodes: Node011 , Node012 , Node013 , Node021 , Node022 , Node023 , Node024 , Node031-leaf , Node032-leaf , Node033 .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["03"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 10310 rows and 329 columns.
#>   Top rows (1031) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 4.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-03-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-03-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.990       0.996         0.5020 0.498   0.498
#> 3 3 1.000           0.971       0.988         0.3169 0.742   0.529
#> 4 4 0.966           0.923       0.961         0.0942 0.906   0.735

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 4
#> attr(,"optional")
#> [1] 2 3

There is also optional best \(k\) = 2 3 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_205_D01     1   0.000      0.993 1.00 0.00
#> 1772122_262_E04     1   0.000      0.993 1.00 0.00
#> 1772122_206_F10     1   0.000      0.993 1.00 0.00
#> 1772122_325_B06     1   0.000      0.993 1.00 0.00
#> 1772122_205_A05     2   0.000      0.999 0.00 1.00
#> 1772122_263_H07     1   0.000      0.993 1.00 0.00
#> 1772122_262_F04     2   0.000      0.999 0.00 1.00
#> 1772122_204_C06     1   0.000      0.993 1.00 0.00
#> 1772122_263_F12     2   0.000      0.999 0.00 1.00
#> 1772122_306_H07     2   0.000      0.999 0.00 1.00
#> 1772122_324_D12     1   0.000      0.993 1.00 0.00
#> 1772122_206_A11     2   0.000      0.999 0.00 1.00
#> 1772122_262_D12     1   0.000      0.993 1.00 0.00
#> 1772122_325_D01     2   0.000      0.999 0.00 1.00
#> 1772122_326_E02     1   0.000      0.993 1.00 0.00
#> 1772122_326_G02     2   0.000      0.999 0.00 1.00
#> 1772122_326_C11     1   0.000      0.993 1.00 0.00
#> 1772122_324_D01     1   0.000      0.993 1.00 0.00
#> 1772122_326_D08     1   0.000      0.993 1.00 0.00
#> 1772122_263_A11     1   0.000      0.993 1.00 0.00
#> 1772122_263_C01     1   0.000      0.993 1.00 0.00
#> 1772122_263_H09     2   0.000      0.999 0.00 1.00
#> 1772122_325_E01     1   0.000      0.993 1.00 0.00
#> 1772122_263_B06     1   0.000      0.993 1.00 0.00
#> 1772122_263_D06     2   0.000      0.999 0.00 1.00
#> 1772122_326_F04     1   0.000      0.993 1.00 0.00
#> 1772122_325_H09     1   0.000      0.993 1.00 0.00
#> 1772122_263_D04     1   0.000      0.993 1.00 0.00
#> 1772122_263_B12     2   0.000      0.999 0.00 1.00
#> 1772122_326_H07     1   0.000      0.993 1.00 0.00
#> 1772122_326_H10     1   0.000      0.993 1.00 0.00
#> 1772122_263_A01     2   0.000      0.999 0.00 1.00
#> 1772122_326_F11     1   0.000      0.993 1.00 0.00
#> 1772122_326_G10     2   0.000      0.999 0.00 1.00
#> 1772122_325_F03     1   0.000      0.993 1.00 0.00
#> 1772122_298_H08     2   0.000      0.999 0.00 1.00
#> 1772122_315_F01     2   0.000      0.999 0.00 1.00
#> 1772122_315_D04     2   0.000      0.999 0.00 1.00
#> 1772122_263_E12     2   0.000      0.999 0.00 1.00
#> 1772122_315_B03     2   0.000      0.999 0.00 1.00
#> 1772122_305_C04     2   0.000      0.999 0.00 1.00
#> 1772122_305_F01     2   0.000      0.999 0.00 1.00
#> 1772122_303_E02     1   0.000      0.993 1.00 0.00
#> 1772122_305_D06     2   0.000      0.999 0.00 1.00
#> 1772122_299_E04     2   0.000      0.999 0.00 1.00
#> 1772122_180_E04     2   0.000      0.999 0.00 1.00
#> 1772122_298_A06     2   0.000      0.999 0.00 1.00
#> 1772122_298_G05     2   0.000      0.999 0.00 1.00
#> 1772122_204_E03     2   0.000      0.999 0.00 1.00
#> 1772122_262_A03     1   0.000      0.993 1.00 0.00
#> 1772122_206_H06     2   0.000      0.999 0.00 1.00
#> 1772122_206_F08     1   0.000      0.993 1.00 0.00
#> 1772122_205_B01     2   0.000      0.999 0.00 1.00
#> 1772122_204_E08     1   0.000      0.993 1.00 0.00
#> 1772122_262_E02     1   0.000      0.993 1.00 0.00
#> 1772122_262_E10     2   0.000      0.999 0.00 1.00
#> 1772122_262_C09     2   0.000      0.999 0.00 1.00
#> 1772122_206_B09     1   0.000      0.993 1.00 0.00
#> 1772122_204_A08     1   0.000      0.993 1.00 0.00
#> 1772122_204_H08     2   0.000      0.999 0.00 1.00
#> 1772122_206_F11     2   0.000      0.999 0.00 1.00
#> 1772122_262_H07     1   0.000      0.993 1.00 0.00
#> 1772122_205_B07     1   0.141      0.973 0.98 0.02
#> 1772122_206_E11     2   0.000      0.999 0.00 1.00
#> 1772122_204_F03     1   0.000      0.993 1.00 0.00
#> 1772122_206_C12     1   0.000      0.993 1.00 0.00
#> 1772122_262_D02     2   0.000      0.999 0.00 1.00
#> 1772122_206_H03     2   0.000      0.999 0.00 1.00
#> 1772122_206_A06     2   0.000      0.999 0.00 1.00
#> 1772122_262_D06     2   0.000      0.999 0.00 1.00
#> 1772122_205_H02     1   0.000      0.993 1.00 0.00
#> 1772122_262_C07     1   0.000      0.993 1.00 0.00
#> 1772122_262_G02     2   0.000      0.999 0.00 1.00
#> 1772122_205_F07     2   0.000      0.999 0.00 1.00
#> 1772122_262_H06     2   0.000      0.999 0.00 1.00
#> 1772122_205_C09     2   0.000      0.999 0.00 1.00
#> 1772122_262_C02     1   0.000      0.993 1.00 0.00
#> 1772122_205_F11     2   0.000      0.999 0.00 1.00
#> 1772122_206_G07     2   0.000      0.999 0.00 1.00
#> 1772122_206_A09     2   0.000      0.999 0.00 1.00
#> 1772122_206_D08     2   0.000      0.999 0.00 1.00
#> 1772122_325_D10     2   0.000      0.999 0.00 1.00
#> 1772122_204_F12     1   0.000      0.993 1.00 0.00
#> 1772122_205_B12     2   0.000      0.999 0.00 1.00
#> 1772122_326_B10     2   0.000      0.999 0.00 1.00
#> 1772122_204_A01     2   0.000      0.999 0.00 1.00
#> 1772122_205_F12     2   0.000      0.999 0.00 1.00
#> 1772122_205_C05     2   0.000      0.999 0.00 1.00
#> 1772122_262_H02     2   0.000      0.999 0.00 1.00
#> 1772122_204_A10     1   0.000      0.993 1.00 0.00
#> 1772122_262_H04     2   0.000      0.999 0.00 1.00
#> 1772122_204_D06     2   0.000      0.999 0.00 1.00
#> 1772122_263_C06     2   0.000      0.999 0.00 1.00
#> 1772122_204_D05     2   0.000      0.999 0.00 1.00
#> 1772122_262_G08     2   0.000      0.999 0.00 1.00
#> 1772122_204_C12     1   0.000      0.993 1.00 0.00
#> 1772122_204_G09     2   0.000      0.999 0.00 1.00
#> 1772122_206_F12     2   0.000      0.999 0.00 1.00
#> 1772122_262_D08     2   0.000      0.999 0.00 1.00
#> 1772122_204_F09     2   0.000      0.999 0.00 1.00
#> 1772122_206_G11     2   0.000      0.999 0.00 1.00
#> 1772122_206_E07     2   0.000      0.999 0.00 1.00
#> 1772122_205_B08     2   0.000      0.999 0.00 1.00
#> 1772122_206_D04     2   0.000      0.999 0.00 1.00
#> 1772122_206_H05     2   0.000      0.999 0.00 1.00
#> 1772122_204_C04     2   0.000      0.999 0.00 1.00
#> 1772122_206_A04     1   0.000      0.993 1.00 0.00
#> 1772122_204_D04     1   0.000      0.993 1.00 0.00
#> 1772122_204_F05     2   0.000      0.999 0.00 1.00
#> 1772122_205_G01     2   0.000      0.999 0.00 1.00
#> 1772122_204_B08     2   0.000      0.999 0.00 1.00
#> 1772122_262_D11     2   0.000      0.999 0.00 1.00
#> 1772122_206_H01     1   0.000      0.993 1.00 0.00
#> 1772122_205_C08     2   0.000      0.999 0.00 1.00
#> 1772122_263_B05     1   0.000      0.993 1.00 0.00
#> 1772122_262_F07     2   0.000      0.999 0.00 1.00
#> 1772122_325_B07     1   0.000      0.993 1.00 0.00
#> 1772122_262_G05     2   0.000      0.999 0.00 1.00
#> 1772122_205_D12     1   0.000      0.993 1.00 0.00
#> 1772122_205_C03     1   0.000      0.993 1.00 0.00
#> 1772122_262_B03     2   0.000      0.999 0.00 1.00
#> 1772122_204_E11     2   0.000      0.999 0.00 1.00
#> 1772122_262_B11     2   0.402      0.913 0.08 0.92
#> 1772122_262_C11     1   0.000      0.993 1.00 0.00
#> 1772122_262_B04     2   0.000      0.999 0.00 1.00
#> 1772122_206_B10     1   0.000      0.993 1.00 0.00
#> 1772122_325_C11     2   0.000      0.999 0.00 1.00
#> 1772122_205_E03     1   0.000      0.993 1.00 0.00
#> 1772122_326_F06     1   0.000      0.993 1.00 0.00
#> 1772122_324_A01     1   0.000      0.993 1.00 0.00
#> 1772122_326_C12     1   0.000      0.993 1.00 0.00
#> 1772122_263_D09     1   0.000      0.993 1.00 0.00
#> 1772122_324_C12     1   0.000      0.993 1.00 0.00
#> 1772122_326_C06     1   0.000      0.993 1.00 0.00
#> 1772122_324_D04     1   0.000      0.993 1.00 0.00
#> 1772122_263_A07     2   0.000      0.999 0.00 1.00
#> 1772122_326_G06     1   0.000      0.993 1.00 0.00
#> 1772122_324_C08     1   0.000      0.993 1.00 0.00
#> 1772122_326_G04     1   0.000      0.993 1.00 0.00
#> 1772122_206_G02     1   0.000      0.993 1.00 0.00
#> 1772122_325_G01     2   0.000      0.999 0.00 1.00
#> 1772122_263_F06     1   0.000      0.993 1.00 0.00
#> 1772122_263_F05     2   0.000      0.999 0.00 1.00
#> 1772122_324_D10     1   0.000      0.993 1.00 0.00
#> 1772122_263_F08     2   0.000      0.999 0.00 1.00
#> 1772122_263_A05     1   0.000      0.993 1.00 0.00
#> 1772122_324_C05     1   0.000      0.993 1.00 0.00
#> 1772122_262_A10     2   0.000      0.999 0.00 1.00
#> 1772122_263_A02     1   0.000      0.993 1.00 0.00
#> 1772122_326_A07     1   0.000      0.993 1.00 0.00
#> 1772122_324_B12     1   0.000      0.993 1.00 0.00
#> 1772122_325_F01     2   0.000      0.999 0.00 1.00
#> 1772122_326_B02     1   0.000      0.993 1.00 0.00
#> 1772122_324_A03     1   0.000      0.993 1.00 0.00
#> 1772122_204_H02     2   0.000      0.999 0.00 1.00
#> 1772122_325_E08     2   0.000      0.999 0.00 1.00
#> 1772122_325_E09     1   0.000      0.993 1.00 0.00
#> 1772122_263_C11     2   0.000      0.999 0.00 1.00
#> 1772122_325_A07     1   0.000      0.993 1.00 0.00
#> 1772122_263_B01     1   0.000      0.993 1.00 0.00
#> 1772122_263_C07     2   0.000      0.999 0.00 1.00
#> 1772122_263_C03     1   0.000      0.993 1.00 0.00
#> 1772122_326_D11     1   0.000      0.993 1.00 0.00
#> 1772122_263_D12     2   0.000      0.999 0.00 1.00
#> 1772122_326_F01     1   0.000      0.993 1.00 0.00
#> 1772122_325_B08     2   0.000      0.999 0.00 1.00
#> 1772122_263_G10     1   0.000      0.993 1.00 0.00
#> 1772122_326_B03     2   0.000      0.999 0.00 1.00
#> 1772122_324_C10     1   0.000      0.993 1.00 0.00
#> 1772122_325_A02     2   0.000      0.999 0.00 1.00
#> 1772122_325_D04     2   0.000      0.999 0.00 1.00
#> 1772122_263_C02     1   0.000      0.993 1.00 0.00
#> 1772122_263_G01     1   0.000      0.993 1.00 0.00
#> 1772122_324_E01     2   0.000      0.999 0.00 1.00
#> 1772122_325_F02     1   0.242      0.953 0.96 0.04
#> 1772122_263_E11     2   0.000      0.999 0.00 1.00
#> 1772122_324_A04     1   0.000      0.993 1.00 0.00
#> 1772122_325_C07     1   0.000      0.993 1.00 0.00
#> 1772122_263_A12     2   0.000      0.999 0.00 1.00
#> 1772122_325_E03     1   0.000      0.993 1.00 0.00
#> 1772122_326_E12     2   0.000      0.999 0.00 1.00
#> 1772122_325_A12     2   0.000      0.999 0.00 1.00
#> 1772122_326_F12     1   0.000      0.993 1.00 0.00
#> 1772122_325_D09     1   0.000      0.993 1.00 0.00
#> 1772122_325_B09     1   0.000      0.993 1.00 0.00
#> 1772122_324_C09     1   0.000      0.993 1.00 0.00
#> 1772122_325_G04     2   0.000      0.999 0.00 1.00
#> 1772122_324_B03     1   0.000      0.993 1.00 0.00
#> 1772122_324_D07     1   0.000      0.993 1.00 0.00
#> 1772122_324_E03     1   0.000      0.993 1.00 0.00
#> 1772122_326_A04     1   0.000      0.993 1.00 0.00
#> 1772122_326_F03     1   0.000      0.993 1.00 0.00
#> 1772122_326_C05     1   0.000      0.993 1.00 0.00
#> 1772122_325_F09     2   0.000      0.999 0.00 1.00
#> 1772122_263_G07     1   0.000      0.993 1.00 0.00
#> 1772122_324_B11     1   0.000      0.993 1.00 0.00
#> 1772122_324_E12     2   0.000      0.999 0.00 1.00
#> 1772122_263_C04     2   0.000      0.999 0.00 1.00
#> 1772122_324_G10     1   0.881      0.576 0.70 0.30
#> 1772122_263_H04     2   0.000      0.999 0.00 1.00
#> 1772122_206_C08     2   0.000      0.999 0.00 1.00
#> 1772122_324_D08     1   0.000      0.993 1.00 0.00
#> 1772122_325_C12     2   0.000      0.999 0.00 1.00
#> 1772122_326_D06     1   0.000      0.993 1.00 0.00
#> 1772122_263_B11     2   0.000      0.999 0.00 1.00
#> 1772122_325_C03     2   0.000      0.999 0.00 1.00
#> 1772122_326_E10     2   0.000      0.999 0.00 1.00
#> 1772122_325_A11     2   0.000      0.999 0.00 1.00
#> 1772122_325_D06     1   0.000      0.993 1.00 0.00
#> 1772122_326_D10     1   0.000      0.993 1.00 0.00
#> 1772122_325_A04     2   0.000      0.999 0.00 1.00
#> 1772122_263_E03     2   0.000      0.999 0.00 1.00
#> 1772122_324_E02     1   0.000      0.993 1.00 0.00
#> 1772122_324_B01     1   0.000      0.993 1.00 0.00
#> 1772122_263_B02     2   0.000      0.999 0.00 1.00
#> 1772122_325_A09     1   0.000      0.993 1.00 0.00
#> 1772122_263_D02     1   0.634      0.810 0.84 0.16
#> 1772122_325_F07     1   0.000      0.993 1.00 0.00
#> 1772122_324_A12     1   0.000      0.993 1.00 0.00
#> 1772122_324_C06     1   0.000      0.993 1.00 0.00
#> 1772122_263_B04     1   0.000      0.993 1.00 0.00
#> 1772122_263_C12     2   0.000      0.999 0.00 1.00
#> 1772122_324_A05     1   0.000      0.993 1.00 0.00
#> 1772122_326_G05     2   0.000      0.999 0.00 1.00
#> 1772122_324_E05     1   0.000      0.993 1.00 0.00
#> 1772122_326_C07     1   0.000      0.993 1.00 0.00
#> 1772122_326_C04     1   0.000      0.993 1.00 0.00
#> 1772122_263_E08     1   0.000      0.993 1.00 0.00
#> 1772122_263_A10     1   0.000      0.993 1.00 0.00
#> 1772122_324_A08     1   0.000      0.993 1.00 0.00
#> 1772122_263_D05     2   0.000      0.999 0.00 1.00
#> 1772122_324_A07     1   0.000      0.993 1.00 0.00
#> 1772122_325_F08     2   0.000      0.999 0.00 1.00
#> 1772122_325_G07     1   0.000      0.993 1.00 0.00
#> 1772122_324_C04     1   0.000      0.993 1.00 0.00
#> 1772122_326_E03     2   0.000      0.999 0.00 1.00
#> 1772122_263_B03     1   0.000      0.993 1.00 0.00
#> 1772122_263_A09     1   0.000      0.993 1.00 0.00
#> 1772122_326_E08     1   0.000      0.993 1.00 0.00
#> 1772122_325_B01     2   0.000      0.999 0.00 1.00
#> 1772122_263_E05     2   0.000      0.999 0.00 1.00
#> 1772122_263_A03     2   0.000      0.999 0.00 1.00
#> 1772122_263_D10     2   0.000      0.999 0.00 1.00
#> 1772122_263_H06     2   0.000      0.999 0.00 1.00
#> 1772122_325_C08     2   0.000      0.999 0.00 1.00
#> 1772122_326_A05     1   0.760      0.721 0.78 0.22
#> 1772122_263_C08     2   0.000      0.999 0.00 1.00
#> 1772122_325_B10     2   0.000      0.999 0.00 1.00
#> 1772122_263_H05     2   0.000      0.999 0.00 1.00
#> 1772122_325_B11     1   0.000      0.993 1.00 0.00
#> 1772122_204_G12     2   0.000      0.999 0.00 1.00
#> 1772122_263_C10     2   0.141      0.979 0.02 0.98
#> 1772122_263_E06     1   0.000      0.993 1.00 0.00
#> 1772122_263_H11     2   0.000      0.999 0.00 1.00
#> 1772122_263_D07     1   0.000      0.993 1.00 0.00
#> 1772122_326_G11     1   0.000      0.993 1.00 0.00
#> 1772122_263_E09     2   0.000      0.999 0.00 1.00
#> 1772122_263_D03     1   0.000      0.993 1.00 0.00
#> 1772122_326_A03     2   0.000      0.999 0.00 1.00
#> 1772122_326_A08     2   0.000      0.999 0.00 1.00
#> 1772122_326_F10     2   0.000      0.999 0.00 1.00
#> 1772122_324_E09     1   0.000      0.993 1.00 0.00
#> 1772122_324_E06     1   0.000      0.993 1.00 0.00
#> 1772122_325_H01     1   0.000      0.993 1.00 0.00
#> 1772122_326_B05     1   0.000      0.993 1.00 0.00
#> 1772122_325_D08     2   0.000      0.999 0.00 1.00
#> 1772122_263_D08     1   0.000      0.993 1.00 0.00
#> 1772122_324_C03     1   0.000      0.993 1.00 0.00
#> 1772122_326_A10     1   0.000      0.993 1.00 0.00
#> 1772122_324_D11     1   0.000      0.993 1.00 0.00
#> 1772122_326_H03     2   0.000      0.999 0.00 1.00
#> 1772122_326_A02     1   0.000      0.993 1.00 0.00
#> 1772122_263_F10     1   0.000      0.993 1.00 0.00
#> 1772122_326_A11     2   0.000      0.999 0.00 1.00
#> 1772122_325_A05     2   0.000      0.999 0.00 1.00
#> 1772122_326_D01     1   0.000      0.993 1.00 0.00
#> 1772122_324_E08     1   0.000      0.993 1.00 0.00
#> 1772122_325_C09     2   0.000      0.999 0.00 1.00
#> 1772122_325_A03     2   0.000      0.999 0.00 1.00
#> 1772122_324_C11     1   0.000      0.993 1.00 0.00
#> 1772122_263_H10     2   0.000      0.999 0.00 1.00
#> 1772122_325_C05     2   0.000      0.999 0.00 1.00
#> 1772122_326_G03     1   0.995      0.156 0.54 0.46
#> 1772122_326_E07     1   0.000      0.993 1.00 0.00
#> 1772122_263_F11     2   0.000      0.999 0.00 1.00
#> 1772122_326_C10     2   0.000      0.999 0.00 1.00
#> 1772122_326_G08     2   0.000      0.999 0.00 1.00
#> 1772122_326_D05     2   0.000      0.999 0.00 1.00
#> 1772122_326_H11     1   0.000      0.993 1.00 0.00
#> 1772122_325_H08     1   0.000      0.993 1.00 0.00
#> 1772122_326_B11     2   0.000      0.999 0.00 1.00
#> 1772122_326_B07     1   0.000      0.993 1.00 0.00
#> 1772122_325_B12     1   0.000      0.993 1.00 0.00
#> 1772122_263_A04     1   0.000      0.993 1.00 0.00
#> 1772122_326_A12     1   0.000      0.993 1.00 0.00
#> 1772122_324_B07     1   0.000      0.993 1.00 0.00
#> 1772122_326_C09     1   0.000      0.993 1.00 0.00
#> 1772122_325_E06     2   0.000      0.999 0.00 1.00
#> 1772122_324_F01     1   0.000      0.993 1.00 0.00
#> 1772122_324_D02     1   0.000      0.993 1.00 0.00
#> 1772122_324_A06     1   0.000      0.993 1.00 0.00
#> 1772122_324_B05     1   0.000      0.993 1.00 0.00
#> 1772122_263_G03     2   0.000      0.999 0.00 1.00
#> 1772122_324_B08     1   0.000      0.993 1.00 0.00
#> 1772122_324_A02     1   0.000      0.993 1.00 0.00
#> 1772122_325_C04     2   0.000      0.999 0.00 1.00
#> 1772122_326_C01     2   0.000      0.999 0.00 1.00
#> 1772122_325_G08     2   0.000      0.999 0.00 1.00
#> 1772122_263_E04     1   0.000      0.993 1.00 0.00
#> 1772122_325_A06     1   0.000      0.993 1.00 0.00
#> 1772122_326_D07     1   0.000      0.993 1.00 0.00
#> 1772122_324_D05     1   0.000      0.993 1.00 0.00
#> 1772122_324_B02     1   0.000      0.993 1.00 0.00
#> 1772122_324_B10     1   0.000      0.993 1.00 0.00
#> 1772122_263_E10     2   0.000      0.999 0.00 1.00
#> 1772122_263_F01     1   0.000      0.993 1.00 0.00
#> 1772122_314_E09     2   0.000      0.999 0.00 1.00
#> 1772122_312_B08     2   0.000      0.999 0.00 1.00
#> 1772122_314_D05     2   0.000      0.999 0.00 1.00
#> 1772122_312_H07     2   0.000      0.999 0.00 1.00
#> 1772122_312_F08     2   0.000      0.999 0.00 1.00
#> 1772122_311_E11     2   0.000      0.999 0.00 1.00
#> 1772122_314_H02     2   0.000      0.999 0.00 1.00
#> 1772122_311_C12     2   0.000      0.999 0.00 1.00
#> 1772122_311_A05     2   0.000      0.999 0.00 1.00
#> 1772122_314_E03     2   0.000      0.999 0.00 1.00
#> 1772122_314_G01     2   0.000      0.999 0.00 1.00
#> 1772122_314_A08     2   0.000      0.999 0.00 1.00
#> 1772122_314_B02     2   0.000      0.999 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_205_D01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_E04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_206_F10     3  0.3340      0.860 0.12 0.00 0.88
#> 1772122_325_B06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_205_A05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_263_H07     1  0.1529      0.952 0.96 0.04 0.00
#> 1772122_262_F04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_C06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_F12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_306_H07     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_324_D12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_206_A11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_D12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_325_D01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_E02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_G02     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_C11     2  0.6045      0.402 0.38 0.62 0.00
#> 1772122_324_D01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_D08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_C01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_H09     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_E01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_B06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_D06     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_F04     1  0.2066      0.931 0.94 0.06 0.00
#> 1772122_325_H09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_D04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_B12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_H07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_H10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_F11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_G10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_F03     1  0.0892      0.973 0.98 0.02 0.00
#> 1772122_298_H08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_315_F01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_315_D04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_263_E12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_315_B03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_305_C04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_305_F01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_303_E02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_305_D06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_299_E04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_180_E04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_298_A06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_298_G05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_E03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_A03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_H06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_F08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_B01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_E08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_E02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_E10     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_C09     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_B09     3  0.1529      0.950 0.04 0.00 0.96
#> 1772122_204_A08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_204_H08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_F11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_H07     3  0.3340      0.860 0.12 0.00 0.88
#> 1772122_205_B07     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_E11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_F03     1  0.2959      0.885 0.90 0.00 0.10
#> 1772122_206_C12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_D02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_H03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_A06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_D06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_H02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_C07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_G02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_F07     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_H06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_C09     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_C02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_F11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_G07     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_A09     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_D08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_325_D10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_204_F12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_205_B12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_326_B10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_204_A01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_F12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_C05     3  0.2066      0.930 0.00 0.06 0.94
#> 1772122_262_H02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_A10     3  0.6126      0.334 0.40 0.00 0.60
#> 1772122_262_H04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_D06     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_263_C06     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_204_D05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_G08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_C12     1  0.5560      0.570 0.70 0.00 0.30
#> 1772122_204_G09     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_F12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_D08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_F09     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_G11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_E07     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_205_B08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_D04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_H05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_C04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_A04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_204_D04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_F05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_G01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_B08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_D11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_H01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_C08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_263_B05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_F07     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_325_B07     1  0.0892      0.973 0.98 0.02 0.00
#> 1772122_262_G05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_D12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_205_C03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_B03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_204_E11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_B11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_262_C11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_B04     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_206_B10     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_325_C11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_205_E03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_F06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_A01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_C12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_D09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_C12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_C06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_D04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A07     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_G06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_C08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_G04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_206_G02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_G01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_F06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_F05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_D10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_F08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_A05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_C05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_262_A10     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_263_A02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_A07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_B12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_F01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_B02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_A03     2  0.3340      0.859 0.12 0.88 0.00
#> 1772122_204_H02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_325_E08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_E09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_C11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_A07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_B01     2  0.5948      0.455 0.36 0.64 0.00
#> 1772122_263_C07     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_C03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_D11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_D12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_F01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_B08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_G10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_B03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_C10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_A02     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_D04     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_C02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_G01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_E01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_F02     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_E11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_A04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_C07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_E03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_E12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_A12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_F12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_D09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_B09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_C09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_G04     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_B03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_D07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_E03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_A04     1  0.5397      0.605 0.72 0.28 0.00
#> 1772122_326_F03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_C05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_F09     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_G07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_B11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_E12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_C04     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_G10     2  0.3340      0.859 0.12 0.88 0.00
#> 1772122_263_H04     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_206_C08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_324_D08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_C12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_D06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_B11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_C03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_E10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_A11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_D06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_D10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_A04     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_E03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_E02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_B01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_B02     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_A09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_D02     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_F07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_A12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_C06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_B04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_C12     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_A05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_G05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_E05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_C07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_C04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_E08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_A08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_D05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_A07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_F08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_G07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_C04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_E03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_B03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_E08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_B01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_E05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_A03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_D10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_H06     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_C08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_A05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_C08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_B10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_H05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_B11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_204_G12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_263_C10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_E06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_H11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_D07     1  0.4796      0.714 0.78 0.22 0.00
#> 1772122_326_G11     2  0.0892      0.957 0.02 0.98 0.00
#> 1772122_263_E09     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_D03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_A03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_A08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_F10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_E09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_E06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_H01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_B05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_D08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_D08     2  0.6045      0.408 0.38 0.62 0.00
#> 1772122_324_C03     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_A10     2  0.3686      0.836 0.14 0.86 0.00
#> 1772122_324_D11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_H03     2  0.5216      0.644 0.00 0.74 0.26
#> 1772122_326_A02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_F10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_A11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_A05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_D01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_E08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_C09     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_A03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_C11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_H10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_C05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_G03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_E07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_F11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_C10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_G08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_D05     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_H11     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_H08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_B11     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_B07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_B12     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_A04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_A12     2  0.5216      0.660 0.26 0.74 0.00
#> 1772122_324_B07     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_C09     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_E06     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_F01     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_D02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_A06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_B05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_G03     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_B08     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_A02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_C04     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_326_C01     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_325_G08     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_E04     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_325_A06     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_326_D07     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_324_D05     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_B02     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_324_B10     1  0.0000      0.992 1.00 0.00 0.00
#> 1772122_263_E10     2  0.0000      0.976 0.00 1.00 0.00
#> 1772122_263_F01     2  0.4291      0.784 0.18 0.82 0.00
#> 1772122_314_E09     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_312_B08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_314_D05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_312_H07     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_312_F08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_311_E11     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_314_H02     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_311_C12     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_311_A05     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_314_E03     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_314_G01     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_314_A08     3  0.0000      0.992 0.00 0.00 1.00
#> 1772122_314_B02     3  0.0000      0.992 0.00 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2   p3   p4
#> 1772122_205_D01     4  0.1211     0.9207 0.00 0.00 0.04 0.96
#> 1772122_262_E04     4  0.1211     0.9049 0.04 0.00 0.00 0.96
#> 1772122_206_F10     4  0.1211     0.9049 0.04 0.00 0.00 0.96
#> 1772122_325_B06     1  0.0707     0.9588 0.98 0.00 0.00 0.02
#> 1772122_205_A05     3  0.2921     0.8204 0.00 0.00 0.86 0.14
#> 1772122_263_H07     1  0.2335     0.9372 0.92 0.02 0.00 0.06
#> 1772122_262_F04     4  0.1211     0.9207 0.00 0.00 0.04 0.96
#> 1772122_204_C06     4  0.0000     0.9002 0.00 0.00 0.00 1.00
#> 1772122_263_F12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_306_H07     3  0.4994    -0.0437 0.00 0.00 0.52 0.48
#> 1772122_324_D12     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_206_A11     4  0.1211     0.9207 0.00 0.00 0.04 0.96
#> 1772122_262_D12     4  0.1211     0.9207 0.00 0.00 0.04 0.96
#> 1772122_325_D01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_E02     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_326_G02     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_C11     2  0.6299     0.1575 0.42 0.52 0.00 0.06
#> 1772122_324_D01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_D08     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_263_A11     1  0.0707     0.9588 0.98 0.00 0.00 0.02
#> 1772122_263_C01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_H09     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_E01     2  0.0707     0.9423 0.02 0.98 0.00 0.00
#> 1772122_263_B06     1  0.0707     0.9588 0.98 0.00 0.00 0.02
#> 1772122_263_D06     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_F04     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_325_H09     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_263_D04     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_263_B12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_H07     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_326_H10     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_263_A01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_F11     1  0.1637     0.9510 0.94 0.00 0.00 0.06
#> 1772122_326_G10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_F03     1  0.0707     0.9588 0.98 0.00 0.00 0.02
#> 1772122_298_H08     4  0.4277     0.6811 0.00 0.00 0.28 0.72
#> 1772122_315_F01     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_315_D04     3  0.2647     0.8469 0.00 0.00 0.88 0.12
#> 1772122_263_E12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_315_B03     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_305_C04     4  0.3172     0.8400 0.00 0.00 0.16 0.84
#> 1772122_305_F01     4  0.3801     0.7714 0.00 0.00 0.22 0.78
#> 1772122_303_E02     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_305_D06     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_299_E04     4  0.4522     0.6073 0.00 0.00 0.32 0.68
#> 1772122_180_E04     4  0.3801     0.7714 0.00 0.00 0.22 0.78
#> 1772122_298_A06     3  0.1637     0.9155 0.00 0.00 0.94 0.06
#> 1772122_298_G05     4  0.3801     0.7714 0.00 0.00 0.22 0.78
#> 1772122_204_E03     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_A03     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_206_H06     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_F08     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_205_B01     4  0.2011     0.9112 0.00 0.00 0.08 0.92
#> 1772122_204_E08     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_262_E02     4  0.2921     0.8224 0.14 0.00 0.00 0.86
#> 1772122_262_E10     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_262_C09     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_206_B09     4  0.1411     0.9152 0.02 0.00 0.02 0.96
#> 1772122_204_A08     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_204_H08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_F11     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_H07     4  0.1211     0.9207 0.00 0.00 0.04 0.96
#> 1772122_205_B07     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_206_E11     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_F03     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_206_C12     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_262_D02     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_H03     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_206_A06     3  0.1211     0.9358 0.00 0.00 0.96 0.04
#> 1772122_262_D06     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_205_H02     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_262_C07     4  0.0707     0.8989 0.02 0.00 0.00 0.98
#> 1772122_262_G02     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_205_F07     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_H06     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_205_C09     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_C02     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_205_F11     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_G07     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_A09     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_D08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_325_D10     2  0.3400     0.7715 0.00 0.82 0.18 0.00
#> 1772122_204_F12     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_205_B12     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_326_B10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_204_A01     3  0.2011     0.8944 0.00 0.00 0.92 0.08
#> 1772122_205_F12     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_205_C05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_H02     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_A10     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_262_H04     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_D06     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_263_C06     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_204_D05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_G08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_C12     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_204_G09     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_F12     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_D08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_F09     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_G11     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_E07     2  0.2921     0.8215 0.00 0.86 0.14 0.00
#> 1772122_205_B08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_D04     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_H05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_C04     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_A04     4  0.0707     0.8989 0.02 0.00 0.00 0.98
#> 1772122_204_D04     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_204_F05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_205_G01     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_204_B08     3  0.3801     0.6982 0.00 0.00 0.78 0.22
#> 1772122_262_D11     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_206_H01     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_205_C08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_263_B05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_262_F07     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_325_B07     1  0.0707     0.9533 0.98 0.02 0.00 0.00
#> 1772122_262_G05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_205_D12     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_205_C03     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_262_B03     3  0.4624     0.4517 0.00 0.00 0.66 0.34
#> 1772122_204_E11     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_262_B11     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_262_C11     4  0.0000     0.9002 0.00 0.00 0.00 1.00
#> 1772122_262_B04     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_206_B10     4  0.1637     0.9231 0.00 0.00 0.06 0.94
#> 1772122_325_C11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_205_E03     4  0.4977     0.1903 0.46 0.00 0.00 0.54
#> 1772122_326_F06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_A01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_C12     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_D09     1  0.0707     0.9647 0.98 0.00 0.00 0.02
#> 1772122_324_C12     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_C06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_D04     1  0.0707     0.9647 0.98 0.00 0.00 0.02
#> 1772122_263_A07     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_G06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_C08     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_G04     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_206_G02     4  0.1637     0.9018 0.06 0.00 0.00 0.94
#> 1772122_325_G01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_F06     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_F05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_D10     1  0.0707     0.9588 0.98 0.00 0.00 0.02
#> 1772122_263_F08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_A05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_C05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_262_A10     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_263_A02     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_326_A07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_B12     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_F01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_B02     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_A03     2  0.4948     0.2178 0.44 0.56 0.00 0.00
#> 1772122_204_H02     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_325_E08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_E09     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_C11     2  0.2011     0.8868 0.00 0.92 0.08 0.00
#> 1772122_325_A07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_B01     1  0.4855     0.3076 0.60 0.40 0.00 0.00
#> 1772122_263_C07     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_C03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_D11     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_D12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_F01     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_B08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_G10     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_B03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_C10     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_A02     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_D04     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_C02     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_G01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_E01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_F02     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_E11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_A04     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_C07     1  0.0707     0.9647 0.98 0.00 0.00 0.02
#> 1772122_263_A12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_E03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_E12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_A12     2  0.2921     0.8223 0.00 0.86 0.14 0.00
#> 1772122_326_F12     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_D09     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_B09     1  0.0707     0.9647 0.98 0.00 0.00 0.02
#> 1772122_324_C09     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_G04     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_B03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_D07     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_E03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_A04     1  0.3198     0.8843 0.88 0.08 0.00 0.04
#> 1772122_326_F03     1  0.4624     0.5522 0.66 0.00 0.00 0.34
#> 1772122_326_C05     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_F09     2  0.1211     0.9285 0.00 0.96 0.00 0.04
#> 1772122_263_G07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_B11     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_E12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_C04     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_G10     2  0.4790     0.4121 0.38 0.62 0.00 0.00
#> 1772122_263_H04     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_206_C08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_324_D08     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_C12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_D06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_B11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_C03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_E10     2  0.0707     0.9458 0.00 0.98 0.00 0.02
#> 1772122_325_A11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_D06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_326_D10     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_A04     2  0.1637     0.9073 0.00 0.94 0.06 0.00
#> 1772122_263_E03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_E02     1  0.0707     0.9647 0.98 0.00 0.00 0.02
#> 1772122_324_B01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_B02     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_A09     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_D02     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_F07     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_A12     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_C06     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_B04     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_C12     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_A05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_G05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_E05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_C07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_326_C04     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_E08     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_A10     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_A08     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_D05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_A07     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_F08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_G07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_C04     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_E03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_B03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_A09     1  0.0707     0.9647 0.98 0.00 0.00 0.02
#> 1772122_326_E08     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_B01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_E05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_A03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_D10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_H06     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_C08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_A05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_C08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_B10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_H05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_B11     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_204_G12     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_263_C10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_E06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_H11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_D07     1  0.3935     0.8467 0.84 0.10 0.00 0.06
#> 1772122_326_G11     2  0.2830     0.8643 0.06 0.90 0.00 0.04
#> 1772122_263_E09     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_D03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_A03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_A08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_F10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_E09     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_E06     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_H01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_B05     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_D08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_D08     1  0.4406     0.5582 0.70 0.30 0.00 0.00
#> 1772122_324_C03     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_A10     2  0.5957     0.1954 0.42 0.54 0.00 0.04
#> 1772122_324_D11     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_326_H03     3  0.3172     0.7634 0.00 0.16 0.84 0.00
#> 1772122_326_A02     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_F10     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_A11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_A05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_D01     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_324_E08     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_C09     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_A03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_C11     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_H10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_C05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_G03     2  0.1211     0.9285 0.00 0.96 0.00 0.04
#> 1772122_326_E07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_263_F11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_C10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_G08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_D05     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_H11     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_H08     1  0.0707     0.9588 0.98 0.00 0.00 0.02
#> 1772122_326_B11     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_B07     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_B12     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_A04     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_326_A12     1  0.5987     0.1658 0.52 0.44 0.00 0.04
#> 1772122_324_B07     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_326_C09     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_E06     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_F01     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_D02     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_A06     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_B05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_G03     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_324_B08     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_A02     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_325_C04     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_326_C01     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_325_G08     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_E04     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_325_A06     1  0.1211     0.9606 0.96 0.00 0.00 0.04
#> 1772122_326_D07     2  0.2411     0.8878 0.04 0.92 0.00 0.04
#> 1772122_324_D05     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_B02     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_324_B10     1  0.0000     0.9668 1.00 0.00 0.00 0.00
#> 1772122_263_E10     2  0.0000     0.9619 0.00 1.00 0.00 0.00
#> 1772122_263_F01     2  0.4713     0.4381 0.36 0.64 0.00 0.00
#> 1772122_314_E09     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_312_B08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_314_D05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_312_H07     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_312_F08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_311_E11     4  0.4277     0.6831 0.00 0.00 0.28 0.72
#> 1772122_314_H02     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_311_C12     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_311_A05     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_314_E03     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_314_G01     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_314_A08     3  0.0000     0.9718 0.00 0.00 1.00 0.00
#> 1772122_314_B02     3  0.0000     0.9718 0.00 0.00 1.00 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-03-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-03-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-03-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-03-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-03-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-03-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-03-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-03-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-03-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-03-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-03-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-03-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-03-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-03-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-03-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-03-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-03-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans      328           4.17e-06           2.39e-05 2
#> ATC:skmeans      325           2.37e-33           2.20e-12 3
#> ATC:skmeans      319           3.33e-40           3.17e-13 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.


Node033

Parent node: Node03. Child nodes: Node0111-leaf , Node0112 , Node0113-leaf , Node0121 , Node0122 , Node0131 , Node0132 , Node0133-leaf , Node0211-leaf , Node0212 , Node0221-leaf , Node0222-leaf , Node0223-leaf , Node0231 , Node0232-leaf , Node0241-leaf , Node0242-leaf , Node0243-leaf , Node0331-leaf , Node0332-leaf , Node0333-leaf , Node0334-leaf .

The object with results only for a single top-value method and a single partitioning method can be extracted as:

res = res_rh["033"]

A summary of res and all the functions that can be applied to it:

res
#> A 'ConsensusPartition' object with k = 2, 3, 4.
#>   On a matrix with 7619 rows and 98 columns.
#>   Top rows (762) are extracted by 'ATC' method.
#>   Subgroups are detected by 'skmeans' method.
#>   Performed in total 150 partitions by row resampling.
#>   Best k for subgroups seems to be 4.
#> 
#> Following methods can be applied to this 'ConsensusPartition' object:
#>  [1] "cola_report"             "collect_classes"         "collect_plots"          
#>  [4] "collect_stats"           "colnames"                "compare_partitions"     
#>  [7] "compare_signatures"      "consensus_heatmap"       "dimension_reduction"    
#> [10] "functional_enrichment"   "get_anno_col"            "get_anno"               
#> [13] "get_classes"             "get_consensus"           "get_matrix"             
#> [16] "get_membership"          "get_param"               "get_signatures"         
#> [19] "get_stats"               "is_best_k"               "is_stable_k"            
#> [22] "membership_heatmap"      "ncol"                    "nrow"                   
#> [25] "plot_ecdf"               "predict_classes"         "rownames"               
#> [28] "select_partition_number" "show"                    "suggest_best_k"         
#> [31] "test_to_known_factors"   "top_rows_heatmap"

collect_plots() function collects all the plots made from res for all k (number of subgroups) into one single page to provide an easy and fast comparison between different k.

collect_plots(res)

plot of chunk node-033-collect-plots

The plots are:

All the plots in panels can be made by individual functions and they are plotted later in this section.

select_partition_number() produces several plots showing different statistics for choosing “optimized” k. There are following statistics:

The detailed explanations of these statistics can be found in the cola vignette.

Generally speaking, higher 1-PAC score, higher mean silhouette score or higher concordance corresponds to better partition. Rand index and Jaccard index measure how similar the current partition is compared to partition with k-1. If they are too similar, we won't accept k is better than k-1.

select_partition_number(res)

plot of chunk node-033-select-partition-number

The numeric values for all these statistics can be obtained by get_stats().

get_stats(res)
#>   k 1-PAC mean_silhouette concordance area_increased  Rand Jaccard
#> 2 2 1.000           0.989       0.995          0.497 0.502   0.502
#> 3 3 0.902           0.905       0.957          0.263 0.822   0.666
#> 4 4 1.000           0.987       0.994          0.119 0.864   0.667

suggest_best_k() suggests the best \(k\) based on these statistics. The rules are as follows:

suggest_best_k(res)
#> [1] 4
#> attr(,"optional")
#> [1] 2 3

There is also optional best \(k\) = 2 3 that is worth to check.

Following is the table of the partitions (You need to click the show/hide code output link to see it). The membership matrix (columns with name p*) is inferred by clue::cl_consensus() function with the SE method. Basically the value in the membership matrix represents the probability to belong to a certain group. The finall subgroup label for an item is determined with the group with highest probability it belongs to.

In get_classes() function, the entropy is calculated from the membership matrix and the silhouette score is calculated from the consensus matrix.

show/hide code output

cbind(get_classes(res, k = 2), get_membership(res, k = 2))
#>                 class entropy silhouette   p1   p2
#> 1772122_205_D01     2   0.000      0.991 0.00 1.00
#> 1772122_206_F10     2   0.000      0.991 0.00 1.00
#> 1772122_205_A05     2   0.000      0.991 0.00 1.00
#> 1772122_262_F04     2   0.000      0.991 0.00 1.00
#> 1772122_306_H07     2   0.000      0.991 0.00 1.00
#> 1772122_206_A11     2   0.000      0.991 0.00 1.00
#> 1772122_262_D12     2   0.000      0.991 0.00 1.00
#> 1772122_298_H08     2   0.000      0.991 0.00 1.00
#> 1772122_315_F01     1   0.000      0.998 1.00 0.00
#> 1772122_315_D04     2   0.000      0.991 0.00 1.00
#> 1772122_315_B03     1   0.000      0.998 1.00 0.00
#> 1772122_305_C04     2   0.000      0.991 0.00 1.00
#> 1772122_305_F01     2   0.000      0.991 0.00 1.00
#> 1772122_303_E02     2   0.000      0.991 0.00 1.00
#> 1772122_305_D06     1   0.000      0.998 1.00 0.00
#> 1772122_299_E04     2   0.000      0.991 0.00 1.00
#> 1772122_180_E04     2   0.000      0.991 0.00 1.00
#> 1772122_298_A06     2   0.000      0.991 0.00 1.00
#> 1772122_298_G05     2   0.000      0.991 0.00 1.00
#> 1772122_204_E03     1   0.000      0.998 1.00 0.00
#> 1772122_262_A03     2   0.000      0.991 0.00 1.00
#> 1772122_206_H06     1   0.000      0.998 1.00 0.00
#> 1772122_206_F08     2   0.000      0.991 0.00 1.00
#> 1772122_205_B01     2   0.000      0.991 0.00 1.00
#> 1772122_262_E10     2   0.000      0.991 0.00 1.00
#> 1772122_262_C09     2   0.000      0.991 0.00 1.00
#> 1772122_206_B09     2   0.000      0.991 0.00 1.00
#> 1772122_204_H08     1   0.000      0.998 1.00 0.00
#> 1772122_206_F11     1   0.000      0.998 1.00 0.00
#> 1772122_262_H07     2   0.000      0.991 0.00 1.00
#> 1772122_205_B07     2   0.000      0.991 0.00 1.00
#> 1772122_206_E11     1   0.000      0.998 1.00 0.00
#> 1772122_262_D02     1   0.000      0.998 1.00 0.00
#> 1772122_206_H03     2   0.000      0.991 0.00 1.00
#> 1772122_206_A06     2   0.402      0.909 0.08 0.92
#> 1772122_262_D06     2   0.000      0.991 0.00 1.00
#> 1772122_205_H02     2   0.000      0.991 0.00 1.00
#> 1772122_262_G02     1   0.000      0.998 1.00 0.00
#> 1772122_205_F07     1   0.000      0.998 1.00 0.00
#> 1772122_262_H06     1   0.000      0.998 1.00 0.00
#> 1772122_205_C09     1   0.000      0.998 1.00 0.00
#> 1772122_262_C02     2   0.000      0.991 0.00 1.00
#> 1772122_205_F11     1   0.000      0.998 1.00 0.00
#> 1772122_206_G07     1   0.000      0.998 1.00 0.00
#> 1772122_206_A09     1   0.000      0.998 1.00 0.00
#> 1772122_206_D08     1   0.000      0.998 1.00 0.00
#> 1772122_205_B12     1   0.000      0.998 1.00 0.00
#> 1772122_204_A01     2   0.000      0.991 0.00 1.00
#> 1772122_205_F12     1   0.402      0.913 0.92 0.08
#> 1772122_205_C05     1   0.000      0.998 1.00 0.00
#> 1772122_262_H02     1   0.000      0.998 1.00 0.00
#> 1772122_204_A10     2   0.000      0.991 0.00 1.00
#> 1772122_262_H04     1   0.000      0.998 1.00 0.00
#> 1772122_204_D06     2   0.855      0.613 0.28 0.72
#> 1772122_204_D05     1   0.000      0.998 1.00 0.00
#> 1772122_262_G08     1   0.242      0.958 0.96 0.04
#> 1772122_204_G09     1   0.000      0.998 1.00 0.00
#> 1772122_206_F12     1   0.000      0.998 1.00 0.00
#> 1772122_262_D08     1   0.000      0.998 1.00 0.00
#> 1772122_204_F09     1   0.000      0.998 1.00 0.00
#> 1772122_206_G11     1   0.000      0.998 1.00 0.00
#> 1772122_205_B08     1   0.000      0.998 1.00 0.00
#> 1772122_206_D04     1   0.000      0.998 1.00 0.00
#> 1772122_206_H05     1   0.000      0.998 1.00 0.00
#> 1772122_204_C04     1   0.000      0.998 1.00 0.00
#> 1772122_204_D04     2   0.000      0.991 0.00 1.00
#> 1772122_204_F05     1   0.000      0.998 1.00 0.00
#> 1772122_205_G01     1   0.000      0.998 1.00 0.00
#> 1772122_204_B08     2   0.000      0.991 0.00 1.00
#> 1772122_262_D11     1   0.000      0.998 1.00 0.00
#> 1772122_206_H01     2   0.000      0.991 0.00 1.00
#> 1772122_205_C08     2   0.000      0.991 0.00 1.00
#> 1772122_262_F07     1   0.000      0.998 1.00 0.00
#> 1772122_262_G05     1   0.000      0.998 1.00 0.00
#> 1772122_205_D12     2   0.000      0.991 0.00 1.00
#> 1772122_205_C03     2   0.000      0.991 0.00 1.00
#> 1772122_262_B03     2   0.000      0.991 0.00 1.00
#> 1772122_204_E11     1   0.000      0.998 1.00 0.00
#> 1772122_262_B11     2   0.000      0.991 0.00 1.00
#> 1772122_262_B04     2   0.000      0.991 0.00 1.00
#> 1772122_206_B10     2   0.000      0.991 0.00 1.00
#> 1772122_262_A10     1   0.000      0.998 1.00 0.00
#> 1772122_204_H02     1   0.000      0.998 1.00 0.00
#> 1772122_206_C08     1   0.000      0.998 1.00 0.00
#> 1772122_204_G12     1   0.000      0.998 1.00 0.00
#> 1772122_314_E09     1   0.000      0.998 1.00 0.00
#> 1772122_312_B08     1   0.000      0.998 1.00 0.00
#> 1772122_314_D05     1   0.000      0.998 1.00 0.00
#> 1772122_312_H07     1   0.000      0.998 1.00 0.00
#> 1772122_312_F08     1   0.000      0.998 1.00 0.00
#> 1772122_311_E11     2   0.000      0.991 0.00 1.00
#> 1772122_314_H02     1   0.000      0.998 1.00 0.00
#> 1772122_311_C12     1   0.000      0.998 1.00 0.00
#> 1772122_311_A05     1   0.000      0.998 1.00 0.00
#> 1772122_314_E03     1   0.000      0.998 1.00 0.00
#> 1772122_314_G01     1   0.000      0.998 1.00 0.00
#> 1772122_314_A08     1   0.000      0.998 1.00 0.00
#> 1772122_314_B02     1   0.000      0.998 1.00 0.00

show/hide code output

cbind(get_classes(res, k = 3), get_membership(res, k = 3))
#>                 class entropy silhouette   p1   p2   p3
#> 1772122_205_D01     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_206_F10     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_A05     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_F04     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_306_H07     2   0.522     0.7095 0.00 0.74 0.26
#> 1772122_206_A11     2   0.254     0.8731 0.00 0.92 0.08
#> 1772122_262_D12     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_298_H08     2   0.522     0.7095 0.00 0.74 0.26
#> 1772122_315_F01     1   0.502     0.6654 0.76 0.00 0.24
#> 1772122_315_D04     2   0.522     0.7095 0.00 0.74 0.26
#> 1772122_315_B03     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_305_C04     2   0.254     0.8732 0.00 0.92 0.08
#> 1772122_305_F01     2   0.429     0.7937 0.00 0.82 0.18
#> 1772122_303_E02     2   0.400     0.8118 0.00 0.84 0.16
#> 1772122_305_D06     1   0.254     0.8837 0.92 0.00 0.08
#> 1772122_299_E04     2   0.604     0.4987 0.00 0.62 0.38
#> 1772122_180_E04     2   0.522     0.7095 0.00 0.74 0.26
#> 1772122_298_A06     2   0.522     0.7095 0.00 0.74 0.26
#> 1772122_298_G05     2   0.522     0.7095 0.00 0.74 0.26
#> 1772122_204_E03     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_A03     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_206_H06     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_F08     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_B01     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_E10     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_C09     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_206_B09     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_204_H08     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_F11     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_H07     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_B07     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_206_E11     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_D02     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_H03     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_206_A06     1   0.613     0.3790 0.60 0.40 0.00
#> 1772122_262_D06     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_H02     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_G02     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_F07     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_H06     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_C09     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_C02     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_F11     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_G07     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_A09     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_D08     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_B12     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_A01     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_F12     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_C05     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_H02     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_A10     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_H04     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_D06     1   0.455     0.7415 0.80 0.20 0.00
#> 1772122_204_D05     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_G08     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_G09     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_F12     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_D08     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_F09     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_G11     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_B08     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_D04     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_H05     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_C04     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_D04     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_204_F05     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_G01     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_B08     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_D11     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_H01     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_C08     1   0.631     0.0625 0.50 0.50 0.00
#> 1772122_262_F07     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_G05     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_205_D12     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_205_C03     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_B03     2   0.571     0.4849 0.32 0.68 0.00
#> 1772122_204_E11     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_262_B11     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_B04     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_206_B10     2   0.000     0.9200 0.00 1.00 0.00
#> 1772122_262_A10     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_H02     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_206_C08     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_204_G12     1   0.000     0.9640 1.00 0.00 0.00
#> 1772122_314_E09     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_312_B08     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_314_D05     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_312_H07     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_312_F08     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_311_E11     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_314_H02     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_311_C12     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_311_A05     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_314_E03     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_314_G01     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_314_A08     3   0.000     1.0000 0.00 0.00 1.00
#> 1772122_314_B02     3   0.000     1.0000 0.00 0.00 1.00

show/hide code output

cbind(get_classes(res, k = 4), get_membership(res, k = 4))
#>                 class entropy silhouette   p1   p2 p3   p4
#> 1772122_205_D01     2  0.0707      0.975 0.00 0.98  0 0.02
#> 1772122_206_F10     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_A05     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_F04     2  0.0707      0.975 0.00 0.98  0 0.02
#> 1772122_306_H07     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_206_A11     4  0.0707      0.974 0.00 0.02  0 0.98
#> 1772122_262_D12     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_298_H08     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_315_F01     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_315_D04     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_315_B03     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_305_C04     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_305_F01     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_303_E02     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_305_D06     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_299_E04     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_180_E04     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_298_A06     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_298_G05     4  0.0000      0.998 0.00 0.00  0 1.00
#> 1772122_204_E03     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_A03     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_206_H06     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_F08     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_B01     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_E10     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_C09     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_206_B09     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_204_H08     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_F11     1  0.0707      0.972 0.98 0.02  0 0.00
#> 1772122_262_H07     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_B07     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_206_E11     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_D02     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_H03     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_206_A06     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_D06     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_H02     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_G02     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_205_F07     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_H06     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_205_C09     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_C02     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_F11     1  0.0707      0.972 0.98 0.02  0 0.00
#> 1772122_206_G07     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_A09     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_D08     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_205_B12     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_A01     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_F12     1  0.2345      0.882 0.90 0.10  0 0.00
#> 1772122_205_C05     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_H02     1  0.0707      0.972 0.98 0.02  0 0.00
#> 1772122_204_A10     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_H04     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_D06     2  0.2921      0.807 0.14 0.86  0 0.00
#> 1772122_204_D05     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_G08     1  0.2011      0.906 0.92 0.08  0 0.00
#> 1772122_204_G09     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_F12     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_D08     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_F09     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_G11     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_205_B08     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_D04     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_H05     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_C04     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_D04     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_204_F05     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_205_G01     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_B08     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_D11     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_H01     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_C08     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_F07     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_262_G05     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_205_D12     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_205_C03     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_B03     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_204_E11     1  0.3247      0.876 0.88 0.06  0 0.06
#> 1772122_262_B11     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_B04     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_206_B10     2  0.0000      0.993 0.00 1.00  0 0.00
#> 1772122_262_A10     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_H02     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_206_C08     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_204_G12     1  0.0000      0.990 1.00 0.00  0 0.00
#> 1772122_314_E09     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_312_B08     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_314_D05     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_312_H07     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_312_F08     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_311_E11     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_314_H02     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_311_C12     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_311_A05     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_314_E03     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_314_G01     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_314_A08     3  0.0000      1.000 0.00 0.00  1 0.00
#> 1772122_314_B02     3  0.0000      1.000 0.00 0.00  1 0.00

Heatmaps for the consensus matrix. It visualizes the probability of two samples to be in a same group.

consensus_heatmap(res, k = 2)

plot of chunk tab-node-033-consensus-heatmap-1

consensus_heatmap(res, k = 3)

plot of chunk tab-node-033-consensus-heatmap-2

consensus_heatmap(res, k = 4)

plot of chunk tab-node-033-consensus-heatmap-3

Heatmaps for the membership of samples in all partitions to see how consistent they are:

membership_heatmap(res, k = 2)

plot of chunk tab-node-033-membership-heatmap-1

membership_heatmap(res, k = 3)

plot of chunk tab-node-033-membership-heatmap-2

membership_heatmap(res, k = 4)

plot of chunk tab-node-033-membership-heatmap-3

As soon as the classes for columns are determined, the signatures that are significantly different between subgroups can be looked for. Following are the heatmaps for signatures.

Signature heatmaps where rows are scaled:

get_signatures(res, k = 2)

plot of chunk tab-node-033-get-signatures-1

get_signatures(res, k = 3)

plot of chunk tab-node-033-get-signatures-2

get_signatures(res, k = 4)

plot of chunk tab-node-033-get-signatures-3

Signature heatmaps where rows are not scaled:

get_signatures(res, k = 2, scale_rows = FALSE)

plot of chunk tab-node-033-get-signatures-no-scale-1

get_signatures(res, k = 3, scale_rows = FALSE)

plot of chunk tab-node-033-get-signatures-no-scale-2

get_signatures(res, k = 4, scale_rows = FALSE)

plot of chunk tab-node-033-get-signatures-no-scale-3

Compare the overlap of signatures from different k:

compare_signatures(res)

plot of chunk node-033-signature_compare

get_signature() returns a data frame invisibly. To get the list of signatures, the function call should be assigned to a variable explicitly. In following code, if plot argument is set to FALSE, no heatmap is plotted while only the differential analysis is performed.

# code only for demonstration
tb = get_signature(res, k = ..., plot = FALSE)

An example of the output of tb is:

#>   which_row         fdr    mean_1    mean_2 scaled_mean_1 scaled_mean_2 km
#> 1        38 0.042760348  8.373488  9.131774    -0.5533452     0.5164555  1
#> 2        40 0.018707592  7.106213  8.469186    -0.6173731     0.5762149  1
#> 3        55 0.019134737 10.221463 11.207825    -0.6159697     0.5749050  1
#> 4        59 0.006059896  5.921854  7.869574    -0.6899429     0.6439467  1
#> 5        60 0.018055526  8.928898 10.211722    -0.6204761     0.5791110  1
#> 6        98 0.009384629 15.714769 14.887706     0.6635654    -0.6193277  2
...

The columns in tb are:

  1. which_row: row indices corresponding to the input matrix.
  2. fdr: FDR for the differential test.
  3. mean_x: The mean value in group x.
  4. scaled_mean_x: The mean value in group x after rows are scaled.
  5. km: Row groups if k-means clustering is applied to rows (which is done by automatically selecting number of clusters).

If there are too many signatures, top_signatures = ... can be set to only show the signatures with the highest FDRs:

# code only for demonstration
# e.g. to show the top 500 most significant rows
tb = get_signature(res, k = ..., top_signatures = 500)

If the signatures are defined as these which are uniquely high in current group, diff_method argument can be set to "uniquely_high_in_one_group":

# code only for demonstration
tb = get_signature(res, k = ..., diff_method = "uniquely_high_in_one_group")

UMAP plot which shows how samples are separated.

dimension_reduction(res, k = 2, method = "UMAP")

plot of chunk tab-node-033-dimension-reduction-1

dimension_reduction(res, k = 3, method = "UMAP")

plot of chunk tab-node-033-dimension-reduction-2

dimension_reduction(res, k = 4, method = "UMAP")

plot of chunk tab-node-033-dimension-reduction-3

Following heatmap shows how subgroups are split when increasing k:

collect_classes(res)

plot of chunk node-033-collect-classes

Test correlation between subgroups and known annotations. If the known annotation is numeric, one-way ANOVA test is applied, and if the known annotation is discrete, chi-squared contingency table test is applied.

test_to_known_factors(res)
#>             n_sample Cell_type(p-value) Timepoint(p-value) k
#> ATC:skmeans       98           3.48e-03           2.36e-03 2
#> ATC:skmeans       94           4.09e-15           2.24e-18 3
#> ATC:skmeans       98           1.20e-26           1.22e-35 4

If matrix rows can be associated to genes, consider to use functional_enrichment(res, ...) to perform function enrichment for the signature genes. See this vignette for more detailed explanations.

Session info

sessionInfo()
#> R version 4.1.0 (2021-05-18)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: CentOS Linux 7 (Core)
#> 
#> Matrix products: default
#> BLAS/LAPACK: /usr/lib64/libopenblas-r0.3.3.so
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=en_US.UTF-8       
#>  [4] LC_COLLATE=en_US.UTF-8     LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                  LC_ADDRESS=C              
#> [10] LC_TELEPHONE=C             LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> attached base packages:
#>  [1] grid      parallel  stats4    stats     graphics  grDevices utils     datasets  methods  
#> [10] base     
#> 
#> other attached packages:
#>  [1] genefilter_1.74.0           ComplexHeatmap_2.8.0        markdown_1.1               
#>  [4] knitr_1.33                  scRNAseq_2.6.1              SingleCellExperiment_1.14.1
#>  [7] SummarizedExperiment_1.22.0 Biobase_2.52.0              GenomicRanges_1.44.0       
#> [10] GenomeInfoDb_1.28.1         IRanges_2.26.0              S4Vectors_0.30.0           
#> [13] BiocGenerics_0.38.0         MatrixGenerics_1.4.0        matrixStats_0.59.0         
#> [16] cola_1.9.4                 
#> 
#> loaded via a namespace (and not attached):
#>   [1] circlize_0.4.13               AnnotationHub_3.0.1           BiocFileCache_2.0.0          
#>   [4] lazyeval_0.2.2                polylabelr_0.2.0              splines_4.1.0                
#>   [7] Polychrome_1.3.1              BiocParallel_1.26.1           ggplot2_3.3.5                
#>  [10] digest_0.6.27                 foreach_1.5.1                 ensembldb_2.16.3             
#>  [13] htmltools_0.5.1.1             viridis_0.6.1                 fansi_0.5.0                  
#>  [16] magrittr_2.0.1                memoise_2.0.0                 cluster_2.1.2                
#>  [19] doParallel_1.0.16             Biostrings_2.60.1             annotate_1.70.0              
#>  [22] askpass_1.1                   prettyunits_1.1.1             colorspace_2.0-2             
#>  [25] blob_1.2.1                    rappdirs_0.3.3                xfun_0.24                    
#>  [28] dplyr_1.0.7                   crayon_1.4.1                  RCurl_1.98-1.3               
#>  [31] microbenchmark_1.4-7          jsonlite_1.7.2                impute_1.66.0                
#>  [34] brew_1.0-6                    survival_3.2-11               iterators_1.0.13             
#>  [37] glue_1.4.2                    polyclip_1.10-0               gtable_0.3.0                 
#>  [40] zlibbioc_1.38.0               XVector_0.32.0                GetoptLong_1.0.5             
#>  [43] DelayedArray_0.18.0           shape_1.4.6                   scales_1.1.1                 
#>  [46] data.tree_1.0.0               DBI_1.1.1                     Rcpp_1.0.7                   
#>  [49] viridisLite_0.4.0             xtable_1.8-4                  progress_1.2.2               
#>  [52] clue_0.3-59                   reticulate_1.20               bit_4.0.4                    
#>  [55] mclust_5.4.7                  umap_0.2.7.0                  httr_1.4.2                   
#>  [58] RColorBrewer_1.1-2            ellipsis_0.3.2                pkgconfig_2.0.3              
#>  [61] XML_3.99-0.6                  dbplyr_2.1.1                  utf8_1.2.1                   
#>  [64] tidyselect_1.1.1              rlang_0.4.11                  later_1.2.0                  
#>  [67] AnnotationDbi_1.54.1          munsell_0.5.0                 BiocVersion_3.13.1           
#>  [70] tools_4.1.0                   cachem_1.0.5                  generics_0.1.0               
#>  [73] RSQLite_2.2.7                 ExperimentHub_2.0.0           evaluate_0.14                
#>  [76] stringr_1.4.0                 fastmap_1.1.0                 yaml_2.2.1                   
#>  [79] bit64_4.0.5                   purrr_0.3.4                   dendextend_1.15.1            
#>  [82] KEGGREST_1.32.0               AnnotationFilter_1.16.0       mime_0.11                    
#>  [85] slam_0.1-48                   xml2_1.3.2                    biomaRt_2.48.2               
#>  [88] compiler_4.1.0                rstudioapi_0.13               filelock_1.0.2               
#>  [91] curl_4.3.2                    png_0.1-7                     interactiveDisplayBase_1.30.0
#>  [94] tibble_3.1.2                  stringi_1.7.3                 highr_0.9                    
#>  [97] GenomicFeatures_1.44.0        RSpectra_0.16-0               lattice_0.20-44              
#> [100] ProtGenerics_1.24.0           Matrix_1.3-4                  vctrs_0.3.8                  
#> [103] pillar_1.6.1                  lifecycle_1.0.0               BiocManager_1.30.16          
#> [106] eulerr_6.1.0                  GlobalOptions_0.1.2           bitops_1.0-7                 
#> [109] irlba_2.3.3                   httpuv_1.6.1                  rtracklayer_1.52.0           
#> [112] R6_2.5.0                      BiocIO_1.2.0                  promises_1.2.0.1             
#> [115] gridExtra_2.3                 codetools_0.2-18              assertthat_0.2.1             
#> [118] openssl_1.4.4                 rjson_0.2.20                  GenomicAlignments_1.28.0     
#> [121] Rsamtools_2.8.0               GenomeInfoDbData_1.2.6        hms_1.1.0                    
#> [124] skmeans_0.2-13                Cairo_1.5-12.2                scatterplot3d_0.3-41         
#> [127] shiny_1.6.0                   restfulr_0.0.13