Skip to content
Snippets Groups Projects
Commit 6d1aa45d authored by Mikhail Karnevskiy's avatar Mikhail Karnevskiy
Browse files

Add plotting constants of FCCD

parent b84511dc
No related branches found
No related tags found
1 merge request!132Feat: Add plotting constants of FCCD
......@@ -352,6 +352,20 @@ class HMType(Enum):
INSET_AXIS = 2
def get_range(data, scale):
"""
Get range, which includes most of the data points.
Range is calculated in units of median absolute deviations
:param data: numpy.array of data points
:param scale: range in units of median absolute deviations
:return:
"""
med = np.nanmedian(data)
mad = np.nanmedian(np.abs(data.flatten() - med))
return med - scale * mad, med + scale * mad
def hm_combine(data, fname=None, htype=None, **kwargs):
"""
Plot heatmap for calibration report
......
This diff is collapsed.
......@@ -129,6 +129,12 @@ notebooks = {
"use function": "balance_sequences",
"cluster cores": 4},
},
"STATS_FROM_DB": {
"notebook": "notebooks/FastCCD/PlotFromCalDB_FastCCD_NBC.ipynb",
"concurrency": {"parameter": None,
"default concurrency": None,
"cluster cores": 1},
},
},
"JUNGFRAU": {
"DARK": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment