Josh Dillon, Last Revised January 2022
This notebook examines an individual antenna's performance over a whole season. This notebook parses information from each nightly rtp_summary
notebook (as saved to .csvs) and builds a table describing antenna performance. It also reproduces per-antenna plots from each auto_metrics
notebook pertinent to the specific antenna.
import os
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
# If you want to run this notebook locally, copy the output of the next cell into the next line of this cell.
# antenna = "004"
# csv_folder = '/lustre/aoc/projects/hera/H5C/H5C_Notebooks/_rtp_summary_'
# auto_metrics_folder = '/lustre/aoc/projects/hera/H5C/H5C_Notebooks/auto_metrics_inspect'
# os.environ["ANTENNA"] = antenna
# os.environ["CSV_FOLDER"] = csv_folder
# os.environ["AUTO_METRICS_FOLDER"] = auto_metrics_folder
# Use environment variables to figure out path to the csvs and auto_metrics
antenna = str(int(os.environ["ANTENNA"]))
csv_folder = os.environ["CSV_FOLDER"]
auto_metrics_folder = os.environ["AUTO_METRICS_FOLDER"]
print(f'antenna = "{antenna}"')
print(f'csv_folder = "{csv_folder}"')
print(f'auto_metrics_folder = "{auto_metrics_folder}"')
antenna = "222" csv_folder = "/home/obs/src/H5C_Notebooks/_rtp_summary_" auto_metrics_folder = "/home/obs/src/H5C_Notebooks/auto_metrics_inspect"
display(HTML(f'<h1 style=font-size:50px><u>Antenna {antenna} Report</u><p></p></h1>'))
import numpy as np
import pandas as pd
pd.set_option('display.max_rows', 1000)
import glob
import re
from hera_notebook_templates.utils import status_colors, Antenna
# load csvs and auto_metrics htmls in reverse chronological order
csvs = sorted(glob.glob(os.path.join(csv_folder, 'rtp_summary_table*.csv')))[::-1]
print(f'Found {len(csvs)} csvs in {csv_folder}')
auto_metric_htmls = sorted(glob.glob(auto_metrics_folder + '/auto_metrics_inspect_*.html'))[::-1]
print(f'Found {len(auto_metric_htmls)} auto_metrics notebooks in {auto_metrics_folder}')
Found 255 csvs in /home/obs/src/H5C_Notebooks/_rtp_summary_ Found 248 auto_metrics notebooks in /home/obs/src/H5C_Notebooks/auto_metrics_inspect
# Per-season options
mean_round_modz_cut = 4
dead_cut = 0.4
crossed_cut = 0.0
def jd_to_summary_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/_rtp_summary_/rtp_summary_{jd}.html'
def jd_to_auto_metrics_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/auto_metrics_inspect/auto_metrics_inspect_{jd}.html'
this_antenna = None
jds = []
# parse information about antennas and nodes
for csv in csvs:
df = pd.read_csv(csv)
for n in range(len(df)):
# Add this day to the antenna
row = df.loc[n]
if isinstance(row['Ant'], str) and '<a href' in row['Ant']:
antnum = int(row['Ant'].split('</a>')[0].split('>')[-1]) # it's a link, extract antnum
else:
antnum = int(row['Ant'])
if antnum != int(antenna):
continue
if np.issubdtype(type(row['Node']), np.integer):
row['Node'] = str(row['Node'])
if type(row['Node']) == str and row['Node'].isnumeric():
row['Node'] = 'N' + ('0' if len(row['Node']) == 1 else '') + row['Node']
if this_antenna is None:
this_antenna = Antenna(row['Ant'], row['Node'])
jd = [int(s) for s in re.split('_|\.', csv) if s.isdigit()][-1]
jds.append(jd)
this_antenna.add_day(jd, row)
break
# build dataframe
to_show = {'JDs': [f'<a href="{jd_to_summary_url(jd)}" target="_blank">{jd}</a>' for jd in jds]}
to_show['A Priori Status'] = [this_antenna.statuses[jd] for jd in jds]
df = pd.DataFrame(to_show)
# create bar chart columns for flagging percentages:
bar_cols = {}
bar_cols['Auto Metrics Flags'] = [this_antenna.auto_flags[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jee)'] = [this_antenna.dead_flags_Jee[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jnn)'] = [this_antenna.dead_flags_Jnn[jd] for jd in jds]
bar_cols['Crossed Fraction in Ant Metrics'] = [this_antenna.crossed_flags[jd] for jd in jds]
bar_cols['Flag Fraction Before Redcal'] = [this_antenna.flags_before_redcal[jd] for jd in jds]
bar_cols['Flagged By Redcal chi^2 Fraction'] = [this_antenna.redcal_flags[jd] for jd in jds]
for col in bar_cols:
df[col] = bar_cols[col]
z_score_cols = {}
z_score_cols['ee Shape Modified Z-Score'] = [this_antenna.ee_shape_zs[jd] for jd in jds]
z_score_cols['nn Shape Modified Z-Score'] = [this_antenna.nn_shape_zs[jd] for jd in jds]
z_score_cols['ee Power Modified Z-Score'] = [this_antenna.ee_power_zs[jd] for jd in jds]
z_score_cols['nn Power Modified Z-Score'] = [this_antenna.nn_power_zs[jd] for jd in jds]
z_score_cols['ee Temporal Variability Modified Z-Score'] = [this_antenna.ee_temp_var_zs[jd] for jd in jds]
z_score_cols['nn Temporal Variability Modified Z-Score'] = [this_antenna.nn_temp_var_zs[jd] for jd in jds]
z_score_cols['ee Temporal Discontinuties Modified Z-Score'] = [this_antenna.ee_temp_discon_zs[jd] for jd in jds]
z_score_cols['nn Temporal Discontinuties Modified Z-Score'] = [this_antenna.nn_temp_discon_zs[jd] for jd in jds]
for col in z_score_cols:
df[col] = z_score_cols[col]
ant_metrics_cols = {}
ant_metrics_cols['Average Dead Ant Metric (Jee)'] = [this_antenna.Jee_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Dead Ant Metric (Jnn)'] = [this_antenna.Jnn_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Crossed Ant Metric'] = [this_antenna.crossed_metrics[jd] for jd in jds]
for col in ant_metrics_cols:
df[col] = ant_metrics_cols[col]
redcal_cols = {}
redcal_cols['Median chi^2 Per Antenna (Jee)'] = [this_antenna.Jee_chisqs[jd] for jd in jds]
redcal_cols['Median chi^2 Per Antenna (Jnn)'] = [this_antenna.Jnn_chisqs[jd] for jd in jds]
for col in redcal_cols:
df[col] = redcal_cols[col]
# style dataframe
table = df.style.hide_index()\
.applymap(lambda val: f'background-color: {status_colors[val]}' if val in status_colors else '', subset=['A Priori Status']) \
.background_gradient(cmap='viridis', vmax=mean_round_modz_cut * 3, vmin=0, axis=None, subset=list(z_score_cols.keys())) \
.background_gradient(cmap='bwr_r', vmin=dead_cut-.25, vmax=dead_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.background_gradient(cmap='bwr_r', vmin=crossed_cut-.25, vmax=crossed_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.background_gradient(cmap='plasma', vmax=4, vmin=1, axis=None, subset=list(redcal_cols.keys())) \
.applymap(lambda val: 'font-weight: bold' if val < dead_cut else '', subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val < crossed_cut else '', subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.applymap(lambda val: 'color: red' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.bar(subset=list(bar_cols.keys()), vmin=0, vmax=1) \
.format({col: '{:,.4f}'.format for col in z_score_cols}) \
.format({col: '{:,.4f}'.format for col in ant_metrics_cols}) \
.format('{:,.2%}', na_rep='-', subset=list(bar_cols.keys())) \
.set_table_styles([dict(selector="th",props=[('max-width', f'70pt')])])
This table reproduces each night's row for this antenna from the RTP Summary notebooks. For more info on the columns, see those notebooks, linked in the JD column.
display(HTML(f'<h2>Antenna {antenna}, Node {this_antenna.node}:</h2>'))
HTML(table.render(render_links=True, escape=False))
JDs | A Priori Status | Auto Metrics Flags | Dead Fraction in Ant Metrics (Jee) | Dead Fraction in Ant Metrics (Jnn) | Crossed Fraction in Ant Metrics | Flag Fraction Before Redcal | Flagged By Redcal chi^2 Fraction | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | Average Dead Ant Metric (Jee) | Average Dead Ant Metric (Jnn) | Average Crossed Ant Metric | Median chi^2 Per Antenna (Jee) | Median chi^2 Per Antenna (Jnn) |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2459810 | RF_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459809 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459808 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 12.063649 | 11.523535 | 102.024651 | 105.438376 | 2138.006818 | 2496.993893 | 7839.846835 | 10653.663619 | nan | nan | nan | 0.000000 | 0.000000 |
2459807 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 11.864448 | 10.652663 | inf | inf | 2051.877417 | 2379.200290 | 24277.775717 | 33022.971405 | nan | nan | nan | 0.000000 | 0.000000 |
2459806 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 10.865156 | 9.332722 | 74.467652 | 78.087234 | 2514.876841 | 2957.730346 | 18448.556183 | 25264.569841 | nan | nan | nan | 0.000000 | 0.000000 |
2459805 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 8.704266 | 7.076377 | 95.815562 | 97.795559 | 1983.487086 | 2278.614683 | 5951.271962 | 7907.179285 | nan | nan | nan | 0.000000 | 0.000000 |
2459804 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 10.260710 | 7.441124 | 85.747159 | 88.018333 | 2278.049877 | 2626.844617 | 4182.527751 | 5591.765836 | nan | nan | nan | 0.000000 | 0.000000 |
2459803 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 12.163953 | 8.670072 | 113.369327 | 116.232411 | 2591.109768 | 2984.219713 | 13322.286837 | 17739.786976 | nan | nan | nan | 0.000000 | 0.000000 |
2459802 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 15.492523 | 14.884028 | inf | inf | 3168.017685 | 3740.857418 | 9973.658446 | 13679.114954 | nan | nan | nan | 0.000000 | 0.000000 |
2459801 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 12.424364 | 12.061374 | 86.087972 | 88.645275 | 3248.944521 | 3770.093258 | 17689.446201 | 23837.871183 | nan | nan | nan | 0.000000 | 0.000000 |
2459800 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 10.108531 | 7.089456 | 83.179467 | 84.663105 | 2624.672669 | 2987.728671 | 20101.238170 | 26399.746884 | nan | nan | nan | 0.000000 | 0.000000 |
2459799 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.967034 | 8.362035 | 68.756482 | 70.794268 | 3179.627724 | 3558.545472 | 7207.702488 | 9162.672748 | nan | nan | nan | 0.000000 | 0.000000 |
2459798 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.858014 | 10.141330 | 82.823094 | 80.608678 | 1956.730930 | 1962.460110 | 13963.766807 | 14116.914082 | nan | nan | nan | 0.000000 | 0.000000 |
2459797 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 11.272641 | 8.774962 | inf | inf | 3385.134989 | 3385.085555 | 30020.382752 | 30021.718025 | nan | nan | nan | 0.000000 | 0.000000 |
2459796 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.356577 | 6.655105 | 102.426270 | 106.302851 | 1942.608355 | 2306.566713 | 18672.376365 | 26090.314668 | nan | nan | nan | 0.000000 | 0.000000 |
2459795 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 13.232542 | 9.924868 | 97.830705 | 100.281231 | 2780.289220 | 2780.178020 | 30057.534159 | 30060.030181 | nan | nan | nan | 0.000000 | 0.000000 |
2459794 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.432693 | 6.090893 | 85.971646 | 88.682725 | 2435.928709 | 2858.216662 | 29204.766182 | 40398.015699 | nan | nan | nan | 0.000000 | 0.000000 |
2459793 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 7.634694 | 5.808577 | 85.494363 | 87.309389 | 2489.924396 | 2952.679694 | 14213.195309 | 20060.362669 | nan | nan | nan | 0.000000 | 0.000000 |
2459792 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 8.889134 | 7.623793 | 70.015149 | 72.820464 | 2054.208338 | 2447.096810 | 7184.455185 | 10090.023845 | nan | nan | nan | 0.000000 | 0.000000 |
2459791 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 12.891421 | 11.401766 | 110.031552 | 113.124071 | 2209.376567 | 2563.194961 | 4136.421850 | 5634.697336 | nan | nan | nan | 0.000000 | 0.000000 |
2459790 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 15.670918 | 12.728626 | 100.849362 | 103.513390 | 3210.224279 | 3779.154252 | 12034.025529 | 16896.763033 | nan | nan | nan | 0.000000 | 0.000000 |
2459789 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 14.018573 | 15.634838 | 109.166260 | 107.835395 | 3288.835930 | 3917.610006 | 28003.730165 | 39326.919488 | nan | nan | nan | 0.000000 | 0.000000 |
2459788 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 12.306399 | 12.025020 | 112.120653 | 112.193818 | 3723.318692 | 4384.456815 | 12806.302130 | 17705.824183 | nan | nan | nan | 0.000000 | 0.000000 |
2459787 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 11.769744 | 13.305803 | 91.836531 | 90.040400 | 2487.993837 | 2994.784777 | 12873.423198 | 18308.811187 | nan | nan | nan | 0.000000 | 0.000000 |
2459786 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 13.494971 | 14.337432 | 110.943295 | 109.476886 | 3879.975170 | 4654.333339 | 18752.358565 | 26759.885078 | nan | nan | nan | 0.000000 | 0.000000 |
2459785 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 11.423079 | 9.045693 | 107.175951 | 114.230437 | 2280.186163 | 2771.360355 | 4606.722389 | 7169.770732 | nan | nan | nan | 0.000000 | 0.000000 |
2459784 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 16.786179 | 11.973338 | 108.157393 | 112.620426 | 3754.425110 | 4490.367576 | 3250.455107 | 4888.014188 | nan | nan | nan | 0.000000 | 0.000000 |
2459783 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 14.637624 | 11.403713 | 32.447520 | 32.410517 | 2131.178096 | 2457.517170 | 10146.472264 | 14603.744662 | nan | nan | nan | 0.000000 | 0.000000 |
2459782 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 13.651875 | 10.490831 | 16.406581 | 16.451464 | 1322.443692 | 1520.513287 | 7412.907248 | 10684.634744 | nan | nan | nan | 0.000000 | 0.000000 |
2459781 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459778 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 8.754730 | 6.577538 | 19.865483 | 20.327689 | 1321.092415 | 1537.102781 | 10414.115151 | 15218.196718 | nan | nan | nan | 0.000000 | 0.000000 |
2459776 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.964058 | 9.716645 | 22.254404 | 21.028988 | 6476.364765 | 5616.875968 | 24447.165815 | 21054.357242 | nan | nan | nan | 0.000000 | 0.000000 |
2459773 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459772 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459771 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459770 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459769 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459768 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459767 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459766 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459765 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459764 | RF_ok | - | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459763 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459761 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459760 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459759 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459758 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459757 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459755 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459754 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459753 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459752 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459750 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459749 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459748 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459747 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459746 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459745 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459744 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459743 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459742 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459741 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459740 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459738 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459736 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459734 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459733 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459732 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459731 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459730 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459728 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459726 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459724 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459723 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459722 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459720 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459719 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459718 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459717 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459716 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459715 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459713 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459712 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 388.474123 | 388.249424 | inf | inf | 1989.675050 | 2071.829189 | 9727.500655 | 9629.309905 | nan | nan | nan | 0.000000 | 0.000000 |
2459711 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 95.248512 | 243.036669 | inf | inf | -20896.054069 | 45539.398326 | -79007.071859 | 192759.256336 | nan | nan | nan | nan | nan |
2459710 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459708 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459707 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459706 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459705 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459703 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459702 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459701 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459697 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459696 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459695 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459694 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459693 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459692 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459691 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459690 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459689 | RF_ok | 100.00% | - | - | - | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459688 | RF_ok | 100.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459687 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459686 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459685 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459684 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459676 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459675 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459674 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459673 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459672 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459671 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459670 | RF_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459668 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459665 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459664 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459663 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459662 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459661 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459660 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459659 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459658 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459657 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459656 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459655 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459653 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459652 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459651 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459650 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459649 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459648 | RF_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459646 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.700466 | 5.777429 | 15.613204 | 13.806568 | 17.048155 | 17.878213 | -3.649034 | -3.852785 | 0.5662 | 0.5676 | 0.3287 | 5.209920 | 4.984673 |
2459645 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459642 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.988635 | 6.140608 | 20.458610 | 18.558720 | 15.947297 | 19.283485 | -2.192078 | -3.237558 | 0.5615 | 0.5610 | 0.3314 | 5.893103 | 5.421562 |
2459641 | RF_ok | - | 55.70% | 55.70% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.4626 | 0.4595 | 0.0023 | nan | nan |
2459640 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.610217 | 6.868641 | 15.427738 | 14.583945 | 12.454828 | 19.348868 | -0.484325 | -1.725164 | 0.5406 | 0.5442 | 0.3368 | 3.994375 | 3.887975 |
2459639 | RF_ok | 100.00% | 1.62% | 2.16% | 0.00% | 100.00% | 0.00% | 5.209456 | 5.109479 | 15.100838 | 13.545502 | 14.273272 | 16.402329 | -1.565087 | -1.260497 | 0.5482 | 0.5515 | 0.3290 | 3.530126 | 3.487927 |
2459638 | RF_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6479 | 0.6670 | 0.3006 | nan | nan |
2459637 | RF_ok | 100.00% | 0.00% | 2.16% | 0.00% | 100.00% | 0.00% | 5.339488 | 5.042439 | 18.826073 | 13.788209 | 13.485097 | 57.834687 | -1.707524 | 1.376563 | 0.5400 | 0.5382 | 0.3377 | 3.846657 | 3.661227 |
2459636 | RF_ok | 100.00% | 0.54% | 2.70% | 0.00% | 100.00% | 0.00% | 5.678010 | 5.689442 | 18.692280 | 14.271226 | 8.473648 | 43.966918 | -1.267718 | 0.136751 | 0.5404 | 0.5367 | 0.3378 | 3.870959 | 3.670886 |
2459635 | RF_ok | 100.00% | 0.59% | 2.22% | 0.00% | 100.00% | 0.00% | 6.252313 | 6.343335 | 17.782044 | 14.617763 | 13.516049 | 49.951986 | -0.375341 | -0.987188 | 0.5457 | 0.5410 | 0.3415 | 4.201066 | 4.058070 |
2459634 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 55.321118 | 53.878185 | 2857042.342689 | 2803608.632616 | 46.546535 | 45.698897 | 46.507022 | 45.660154 | 1.0000 | 1.0000 | 0.0000 | 0.047141 | 0.047431 |
2459633 | RF_ok | 100.00% | 0.00% | 1.13% | 0.00% | 100.00% | 0.00% | 5.002464 | 2.184039 | 17.795060 | 2.398407 | 11.070372 | 62.022209 | 2.981887 | 8.402779 | 0.5398 | 0.5305 | 0.3552 | 4.428303 | 4.081589 |
2459632 | RF_ok | 100.00% | 0.00% | 0.54% | 0.00% | 100.00% | 0.00% | 5.386023 | 5.022328 | 15.768941 | 8.083331 | 4.988498 | 65.959363 | 0.844983 | 0.421808 | 0.5483 | 0.5441 | 0.3507 | 3.528123 | 3.370381 |
2459631 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.971002 | 5.693343 | 17.703157 | 3.530163 | 7.969309 | 108.512184 | -1.004878 | 2.930193 | 0.5477 | 0.5405 | 0.3440 | 4.206919 | 4.008984 |
2459630 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.992466 | 5.180531 | 14.617356 | 10.260456 | 11.027002 | 7.023078 | 1.138858 | 5.871461 | 0.5570 | 0.5413 | 0.3459 | 5.909596 | 5.131351 |
2459629 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.035019 | 7.344939 | 19.372383 | 18.755221 | 11.380407 | 19.480533 | -1.635202 | -1.719155 | 0.5744 | 0.5680 | 0.3353 | 4.627495 | 4.284300 |
2459628 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.812281 | 6.124999 | 16.645651 | 15.758095 | 9.510062 | 16.579344 | -2.492784 | -3.270720 | 0.5510 | 0.5502 | 0.3537 | 3.866579 | 3.619942 |
2459627 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 58.296532 | 58.296532 | 3052246.833047 | 3052246.833047 | 61.716789 | 61.716789 | 61.581920 | 61.581920 | 1.0000 | 1.0000 | 0.0000 | 0.009866 | 0.009866 |
2459626 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.870911 | 5.792567 | 15.043242 | 13.302614 | 16.058243 | 19.194914 | -3.603308 | -3.500599 | 0.5641 | 0.5639 | 0.3555 | 0.000000 | 0.000000 |
2459625 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.787813 | 5.919406 | 17.109870 | 14.852959 | 10.509679 | 39.277147 | -1.863152 | -1.483126 | 0.5660 | 0.5631 | 0.3532 | 4.647446 | 4.023315 |
2459624 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.856057 | 7.081575 | 16.519112 | 15.162117 | 15.005210 | 25.260863 | -3.908099 | -3.864015 | 0.5673 | 0.5669 | 0.3494 | 4.831637 | 4.717272 |
2459623 | RF_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459622 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.820186 | 6.288366 | 18.408139 | 28.606003 | 2.835019 | 11.030139 | 14.542891 | -2.591164 | 0.5617 | 0.5623 | 0.3749 | 0.000000 | 0.000000 |
2459621 | RF_ok | 100.00% | - | - | - | 100.00% | 0.00% | 3.590627 | 4.633832 | 11.188310 | 13.070596 | 3.436659 | 17.676138 | 4.357644 | 2.857404 | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459619 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.898341 | 5.848857 | 10.824014 | 17.074125 | 10.015886 | 20.376285 | 2.647150 | -2.245065 | 0.5514 | 0.5458 | 0.3702 | 1.256526 | 1.262650 |
2459618 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.023460 | 6.597228 | 19.336164 | 18.361601 | 12.717860 | 20.334699 | 1.892448 | -3.602537 | 0.5545 | 0.5540 | 0.3766 | 0.000000 | 0.000000 |
2459617 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.638586 | 5.578474 | 16.736587 | 15.379998 | 19.062393 | 21.364175 | -3.122919 | -3.211245 | 0.5589 | 0.5621 | 0.3637 | 0.000000 | 0.000000 |
2459616 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.726378 | 6.087050 | 15.799829 | 26.509293 | 7.039024 | 24.069627 | 6.204389 | -2.705968 | 0.5746 | 0.5643 | 0.3760 | 6.037936 | 6.759410 |
2459615 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.324164 | 6.481133 | 14.401842 | 15.616421 | 19.038296 | 16.465810 | 1.096198 | -2.759461 | 0.5595 | 0.5612 | 0.3831 | 0.000000 | 0.000000 |
2459614 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.049245 | 6.852181 | 16.719987 | 16.846576 | 10.739034 | 16.242745 | 0.716857 | -2.736602 | 0.5675 | 0.5678 | 0.3820 | 0.000000 | 0.000000 |
2459613 | RF_ok | 100.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459612 | RF_ok | 100.00% | 67.57% | 67.57% | 0.00% | 100.00% | 0.00% | 3.887399 | 4.256721 | 19.129297 | 17.571294 | 25.069409 | 26.702945 | -1.486537 | 2.205071 | 0.3968 | 0.4057 | 0.2360 | 0.000000 | 0.000000 |
2459611 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.135489 | 5.281094 | 13.828531 | 12.742922 | 12.672775 | 15.793290 | -1.520924 | -1.012177 | 0.6061 | 0.6153 | 0.3561 | 6.137878 | 5.427069 |
2459610 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.912385 | 5.935287 | 17.481615 | 16.608604 | 19.443998 | 18.126521 | 4.243028 | 8.001998 | 0.6425 | 0.6465 | 0.3209 | 6.338245 | 5.886324 |
2459609 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.005278 | 6.699954 | 12.430509 | 22.168257 | 4.814037 | 16.337936 | 4.838710 | 1.935418 | 0.6351 | 0.6266 | 0.3340 | 5.733527 | 5.276804 |
2459608 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.660142 | 5.781013 | 18.106276 | 25.135697 | 38.467981 | 19.723164 | 1.626579 | -1.654533 | 0.6048 | 0.6020 | 0.3788 | 6.568507 | 5.480693 |
2459607 | RF_ok | 100.00% | 43.24% | 43.24% | 0.00% | 100.00% | 0.00% | 2.279883 | 3.726080 | 51.159797 | 65.822750 | 3.651335 | 16.289856 | 3.602996 | -1.645152 | 0.3550 | 0.3556 | 0.2271 | 5.957216 | 4.706003 |
2459605 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.811113 | -0.265679 | 15.719680 | 15.838579 | -1.327398 | -0.925263 | -1.768960 | -0.277864 | 0.0603 | 0.0443 | 0.0104 | nan | nan |
2459604 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.856611 | 5.625023 | 20.707541 | 19.033778 | 16.834984 | 23.321289 | 4.190752 | 3.624706 | 0.6555 | 0.6491 | 0.3140 | 5.138480 | 4.749211 |
2459603 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.063987 | 4.245783 | 16.383328 | 16.712789 | 12.772050 | 20.892324 | 0.699724 | 1.196960 | 0.7140 | 0.7140 | 0.3025 | 8.189017 | 6.952282 |
2459602 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.649887 | 4.676323 | 14.932453 | 18.177882 | 14.474828 | 44.866344 | 6.147811 | -0.965064 | 0.6230 | 0.6294 | 0.3673 | 4.798217 | 4.394065 |
2459598 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.275425 | 5.539360 | 13.878548 | 19.554898 | 29.925144 | 19.262352 | 2.593161 | -2.060761 | 0.6330 | 0.6342 | 0.3793 | 6.475268 | 5.592879 |
2459597 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.785741 | 5.377824 | 23.758016 | 22.682122 | 9.854222 | 15.589592 | -0.895546 | -1.864277 | 0.6317 | 0.6352 | 0.3499 | 4.582057 | 4.181155 |
2459596 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.004906 | 5.321757 | 19.469010 | 18.298706 | 13.308033 | 17.893160 | -1.306268 | -1.559269 | 0.6356 | 0.6383 | 0.3656 | 5.516811 | 5.363531 |
2459595 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.521352 | 4.394758 | 17.411475 | 16.692020 | 14.549736 | 11.270349 | 15.150201 | 15.166227 | 0.7305 | 0.7247 | 0.2312 | 5.796343 | 5.615883 |
2459594 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.350352 | -0.209439 | 16.988489 | 16.762608 | 9.268155 | 12.274014 | 12.366482 | 14.045535 | 0.7524 | 0.7410 | 0.2872 | 9.233131 | 7.873946 |
2459593 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.956886 | 4.233521 | 21.967115 | 20.430964 | 14.312862 | 18.729460 | 6.341118 | 4.467689 | 0.6950 | 0.6917 | 0.2715 | 5.657257 | 5.173156 |
2459592 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.202751 | -0.183178 | 18.923793 | 21.384136 | 49.823725 | 7.162391 | -1.621015 | -0.079987 | 0.0362 | 0.0315 | 0.0011 | nan | nan |
2459591 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.093287 | 5.886476 | 24.375888 | 24.398738 | 10.850839 | 15.827821 | -1.556481 | -1.926328 | 0.6387 | 0.6476 | 0.3786 | 6.301953 | 5.308350 |
2459590 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.034935 | 6.183421 | 23.023115 | 21.525900 | 12.813276 | 18.545787 | -1.287791 | -1.755635 | 0.6391 | 0.6462 | 0.3741 | 6.165606 | 5.635948 |
2459589 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.648015 | 5.314454 | 19.863540 | 18.611068 | 8.452723 | 11.273432 | 9.988995 | 8.346040 | 0.6849 | 0.6737 | 0.2945 | 5.959070 | 5.480492 |
2459588 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.498633 | 2.768930 | 24.597096 | 24.945193 | 21.976878 | 11.912354 | 7.215422 | 7.528746 | 0.7410 | 0.7152 | 0.2566 | 9.512709 | 6.956280 |
2459587 | RF_ok | 100.00% | - | - | - | 100.00% | 0.00% | 4.178995 | 6.416683 | 28.068721 | 34.928460 | -1.599171 | -1.707873 | -4.675000 | -4.393628 | nan | nan | nan | 0.000000 | 0.000000 |
2459586 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.157286 | 1.941862 | 1.417748 | 2.422907 | 18.799204 | 6.152386 | 0.725578 | -1.433000 | 0.6324 | 0.6423 | 0.3652 | 4.412158 | 3.917334 |
2459585 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 11.846857 | 6.888980 | 3.009964 | 4.081852 | 8.220783 | 11.074551 | 6.429654 | -0.094023 | 0.0383 | 0.0333 | 0.0015 | 0.000000 | 0.000000 |
2459584 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 17.257556 | 22.285822 | 24.070031 | 36.571947 | 5.855813 | 9.708957 | 4.546019 | -1.344049 | 0.6000 | 0.6077 | 0.3807 | 0.000000 | 0.000000 |
2459583 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.137628 | 5.751849 | 6.442756 | 10.410168 | 27.576544 | 12.383479 | 5.441290 | -1.612666 | 0.6432 | 0.6487 | 0.3913 | 5.362251 | 4.852830 |
2459582 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.140031 | 4.979679 | 6.089671 | 9.219758 | 44.716264 | 15.532638 | 1.626554 | -1.627647 | 0.6430 | 0.6503 | 0.3937 | 4.415916 | 3.658511 |
2459581 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.607215 | 7.601591 | 9.583297 | 10.511374 | 10.809526 | 12.994753 | -0.018606 | -1.888546 | 0.6466 | 0.6545 | 0.3917 | 3.694329 | 3.388043 |
2459580 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.549700 | 5.632722 | 7.794236 | 10.883757 | 6.556383 | 13.121177 | 3.145610 | -1.819566 | 0.6491 | 0.6525 | 0.3898 | 7.586789 | 6.032908 |
2459579 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.190633 | 5.605686 | 9.841773 | 12.387551 | 37.167410 | 15.381661 | 3.736370 | -2.184420 | 0.6342 | 0.6428 | 0.3974 | 8.804438 | 6.017123 |
2459578 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.861819 | 1.438281 | 9.827889 | 12.829803 | 35.284090 | -0.588728 | 5.741296 | 0.416007 | 0.0423 | 0.0330 | 0.0020 | nan | nan |
2459577 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.610300 | 7.135637 | 9.331304 | 9.653764 | 4.184896 | 13.531352 | -0.901923 | -1.812116 | 0.6401 | 0.6501 | 0.3934 | 4.710021 | 3.920915 |
2459576 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.605152 | 5.251349 | 7.330733 | 6.972046 | 10.272531 | 11.798416 | -1.131495 | -1.728568 | 0.6641 | 0.6740 | 0.3913 | 5.691836 | 4.576691 |
2459575 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.308504 | 4.400325 | 7.431659 | 7.476990 | 4.923989 | 9.548510 | 5.694425 | 4.574479 | 0.7239 | 0.7266 | 0.3479 | 4.182840 | 3.977399 |
2459574 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.464009 | 5.256727 | 7.118478 | 6.829405 | 10.479142 | 12.798606 | -0.454241 | -1.131783 | 0.6584 | 0.6681 | 0.3944 | 3.809502 | 3.404597 |
2459573 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.948788 | 5.598665 | 13.875733 | 11.954761 | 11.612495 | 49.454204 | -1.143178 | 4.911372 | 0.6569 | 0.6664 | 0.4002 | 2.957017 | 3.001661 |
2459572 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.705899 | 5.491479 | 7.303821 | 6.989453 | 7.925364 | 9.195039 | -2.348768 | -2.697458 | 0.6659 | 0.6762 | 0.3933 | 4.878982 | 4.019481 |
2459571 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.120166 | 1.287693 | 12.978204 | 12.898367 | 1.336916 | -1.775903 | 0.533378 | -0.773930 | 0.0433 | 0.0324 | 0.0015 | nan | nan |
2459570 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459569 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.525834 | 4.377953 | 8.479728 | 8.510881 | 6.844006 | 6.504742 | 5.650789 | 6.211237 | 0.7459 | 0.7484 | 0.2420 | 6.609461 | 4.932049 |
2459566 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.865690 | 5.167483 | 9.359838 | 9.142284 | 8.728004 | 25.961249 | 0.565037 | -1.417029 | 0.6602 | 0.6687 | 0.4046 | 4.655047 | 3.951100 |
2459565 | RF_ok | 100.00% | - | - | - | 100.00% | 0.00% | 6.613916 | 6.613916 | 1909065.330398 | 1909065.330398 | -1.379264 | -1.379264 | -1.415126 | -1.415126 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.573519 | 5.328413 | 5.271174 | 5.298543 | 1.138458 | 1.244962 | -1.488220 | -2.047291 | 0.6548 | 0.6541 | 0.4007 | 2.890068 | 2.445667 |
2459563 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 8.415518 | 9.342660 | 28.677185 | 28.385035 | 15.779296 | 21.686618 | -1.538465 | -2.246831 | 0.6533 | 0.6567 | 0.3940 | 3.979976 | 3.236357 |
2459562 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.087661 | 3.330326 | 2.195784 | 1.866980 | 1.130808 | 6.655264 | -1.118000 | -1.329709 | 0.6574 | 0.6651 | 0.3910 | 3.085709 | 2.574678 |
2459561 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459560 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.986529 | 3.064286 | 2.345573 | 1.842561 | 1.222841 | 5.301270 | -1.369305 | -1.525350 | 0.6521 | 0.6643 | 0.4031 | 3.390273 | 2.841573 |
2459559 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.914456 | 4.397369 | 2.981141 | 2.809770 | 1.540350 | 1.082148 | -1.437129 | -1.829699 | 0.6500 | 0.6610 | 0.3945 | 2.953815 | 2.491237 |
2459558 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 8.465776 | 9.832201 | 15.523948 | 15.292897 | 17.263715 | 19.508266 | -1.895058 | -2.573886 | 0.6517 | 0.6495 | 0.4000 | 6.977140 | 5.518962 |
2459556 | RF_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459554 | RF_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6589 | 0.6588 | 0.4008 | nan | nan |
2459553 | RF_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6549 | 0.6564 | 0.4016 | nan | nan |
2459552 | RF_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 10.376924 | 11.418461 | 21.303467 | 21.617947 | 24.222487 | 27.257027 | 0.244557 | -0.384473 | 0.6595 | 0.6584 | 0.4034 | 0.000000 | 0.000000 |
2459551 | RF_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.154218 | 3.553806 | 2.942730 | 2.704629 | 1.601367 | 1.561274 | -1.713673 | -2.403673 | 0.6583 | 0.6617 | 0.3968 | 3.265400 | 2.603751 |
2459550 | RF_ok | - | 61.29% | 61.29% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0341 | 0.0313 | 0.0011 | nan | nan |
auto_metrics
notebooks.¶htmls_to_display = []
for am_html in auto_metric_htmls:
html_to_display = ''
# read html into a list of lines
with open(am_html) as f:
lines = f.readlines()
# find section with this antenna's metric plots and add to html_to_display
jd = [int(s) for s in re.split('_|\.', am_html) if s.isdigit()][-1]
try:
section_start_line = lines.index(f'<h2>Antenna {antenna}: {jd}</h2>\n')
except ValueError:
continue
html_to_display += lines[section_start_line].replace(str(jd), f'<a href="{jd_to_auto_metrics_url(jd)}" target="_blank">{jd}</a>')
for line in lines[section_start_line + 1:]:
html_to_display += line
if '<hr' in line:
htmls_to_display.append(html_to_display)
break
These figures are reproduced from auto_metrics
notebooks. For more info on the specific plots and metrics, see those notebooks (linked at the JD). The most recent 100 days (at most) are shown.
for i, html_to_display in enumerate(htmls_to_display):
if i == 100:
break
display(HTML(html_to_display))
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | nan | nan | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 10653.663619 | 11.523535 | 12.063649 | 105.438376 | 102.024651 | 2496.993893 | 2138.006818 | 10653.663619 | 7839.846835 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Power | inf | 10.652663 | 11.864448 | inf | inf | 2379.200290 | 2051.877417 | 33022.971405 | 24277.775717 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 25264.569841 | 10.865156 | 9.332722 | 74.467652 | 78.087234 | 2514.876841 | 2957.730346 | 18448.556183 | 25264.569841 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 7907.179285 | 8.704266 | 7.076377 | 95.815562 | 97.795559 | 1983.487086 | 2278.614683 | 5951.271962 | 7907.179285 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 5591.765836 | 7.441124 | 10.260710 | 88.018333 | 85.747159 | 2626.844617 | 2278.049877 | 5591.765836 | 4182.527751 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 17739.786976 | 12.163953 | 8.670072 | 113.369327 | 116.232411 | 2591.109768 | 2984.219713 | 13322.286837 | 17739.786976 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Power | inf | 14.884028 | 15.492523 | inf | inf | 3740.857418 | 3168.017685 | 13679.114954 | 9973.658446 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 23837.871183 | 12.061374 | 12.424364 | 88.645275 | 86.087972 | 3770.093258 | 3248.944521 | 23837.871183 | 17689.446201 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 26399.746884 | 7.089456 | 10.108531 | 84.663105 | 83.179467 | 2987.728671 | 2624.672669 | 26399.746884 | 20101.238170 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 9162.672748 | 8.362035 | 9.967034 | 70.794268 | 68.756482 | 3558.545472 | 3179.627724 | 9162.672748 | 7207.702488 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 14116.914082 | 9.858014 | 10.141330 | 82.823094 | 80.608678 | 1956.730930 | 1962.460110 | 13963.766807 | 14116.914082 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Power | inf | 8.774962 | 11.272641 | inf | inf | 3385.085555 | 3385.134989 | 30021.718025 | 30020.382752 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 26090.314668 | 9.356577 | 6.655105 | 102.426270 | 106.302851 | 1942.608355 | 2306.566713 | 18672.376365 | 26090.314668 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 30060.030181 | 9.924868 | 13.232542 | 100.281231 | 97.830705 | 2780.178020 | 2780.289220 | 30060.030181 | 30057.534159 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 40398.015699 | 9.432693 | 6.090893 | 85.971646 | 88.682725 | 2435.928709 | 2858.216662 | 29204.766182 | 40398.015699 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 20060.362669 | 7.634694 | 5.808577 | 85.494363 | 87.309389 | 2489.924396 | 2952.679694 | 14213.195309 | 20060.362669 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 10090.023845 | 8.889134 | 7.623793 | 70.015149 | 72.820464 | 2054.208338 | 2447.096810 | 7184.455185 | 10090.023845 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 5634.697336 | 12.891421 | 11.401766 | 110.031552 | 113.124071 | 2209.376567 | 2563.194961 | 4136.421850 | 5634.697336 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 16896.763033 | 12.728626 | 15.670918 | 103.513390 | 100.849362 | 3779.154252 | 3210.224279 | 16896.763033 | 12034.025529 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 39326.919488 | 15.634838 | 14.018573 | 107.835395 | 109.166260 | 3917.610006 | 3288.835930 | 39326.919488 | 28003.730165 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 17705.824183 | 12.025020 | 12.306399 | 112.193818 | 112.120653 | 4384.456815 | 3723.318692 | 17705.824183 | 12806.302130 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 18308.811187 | 11.769744 | 13.305803 | 91.836531 | 90.040400 | 2487.993837 | 2994.784777 | 12873.423198 | 18308.811187 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 26759.885078 | 14.337432 | 13.494971 | 109.476886 | 110.943295 | 4654.333339 | 3879.975170 | 26759.885078 | 18752.358565 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 7169.770732 | 9.045693 | 11.423079 | 114.230437 | 107.175951 | 2771.360355 | 2280.186163 | 7169.770732 | 4606.722389 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 4888.014188 | 16.786179 | 11.973338 | 108.157393 | 112.620426 | 3754.425110 | 4490.367576 | 3250.455107 | 4888.014188 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 14603.744662 | 11.403713 | 14.637624 | 32.410517 | 32.447520 | 2457.517170 | 2131.178096 | 14603.744662 | 10146.472264 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 10684.634744 | 10.490831 | 13.651875 | 16.451464 | 16.406581 | 1520.513287 | 1322.443692 | 10684.634744 | 7412.907248 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Temporal Discontinuties | 15218.196718 | 6.577538 | 8.754730 | 20.327689 | 19.865483 | 1537.102781 | 1321.092415 | 15218.196718 | 10414.115151 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Temporal Discontinuties | 24447.165815 | 9.964058 | 9.716645 | 22.254404 | 21.028988 | 6476.364765 | 5616.875968 | 24447.165815 | 21054.357242 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | Not Found | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Power | inf | 388.249424 | 388.474123 | inf | inf | 2071.829189 | 1989.675050 | 9629.309905 | 9727.500655 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Power | inf | 243.036669 | 95.248512 | inf | inf | 45539.398326 | -20896.054069 | 192759.256336 | -79007.071859 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | N18 | RF_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | 18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | 18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | 18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | 18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
222 | 18 | RF_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |