Rank Transforms
Shifted Negative Log Ranks
Transforms ranks to negative log10 values and shifts such that the lowest value is 0.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ranks |
ndarray
|
A vector of ranks |
required |
Returns:
Type | Description |
---|---|
ndarray
|
A vector of negative log10 transformed ranks shifted such that the lowest value is 0 |
Raises:
Type | Description |
---|---|
ValueError
|
If the ranks are not numeric. |
Source code in yeastdnnexplorer/interface/rank_transforms.py
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
Negative Log Transform by P-Value and Enrichment
Ranks data by primary_column, breaking ties based on secondary_column. The expected primary and secondary columns are ‘pvalue’ and ‘enrichment’, respectively. Then the ranks are transformed to negative log10 values and shifted such that the lowest value is 0 and the highest value is log10(min_rank).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pvalue_vector |
ndarray
|
A vector of pvalues |
required |
enrichment_vector |
ndarray
|
A vector of enrichment values corresponding to the pvalues |
required |
Returns:
Type | Description |
---|---|
ndarray
|
A vector of negative log10 transformed ranks shifted such that the lowest value is 0 and the highest value is log10(min_rank) |
Raises:
Type | Description |
---|---|
ValueError
|
If the primary or secondary column is not numeric. |
Source code in yeastdnnexplorer/interface/rank_transforms.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
|