Fraction Scan
puma.fraction_scan.get_fx_values
#
Source code in puma/fraction_scan.py
6 7 8 9 10 |
|
puma.fraction_scan.get_efficiency
#
Source code in puma/fraction_scan.py
13 14 |
|
puma.fraction_scan.get_optimal_fc
#
After calculating an fc scan, find the optimal value of fc.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fc_scan
|
numpy.ndarray
|
2D array of efficiency (or rejection) scores for each value of fc. |
required |
fc_space
|
numpy.ndarray
|
1D array of fc values. |
required |
rej
|
bool
|
If True, find the maximum rejection values else find the minimum efficiency values, by default False. |
False
|
Source code in puma/fraction_scan.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|