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 = "32" 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_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459809 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.032931 | 22.474157 | 2.457787 | 1.444928 | 24.491240 | 50.723437 | 48.246853 | 161.357668 | 0.7039 | 0.4915 | 0.4048 | 6.478100 | 3.963474 |
2459808 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 10.421878 | 9.152224 | 112.502221 | 103.958295 | 2307.327735 | 2099.744246 | 9425.737929 | 7088.571167 | nan | nan | nan | 0.000000 | 0.000000 |
2459807 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.658302 | 7.577729 | 2.504518 | 0.551332 | 10.194623 | 19.074982 | 57.855919 | 102.477094 | 0.7283 | 0.6943 | 0.3582 | 13.144967 | 4.715774 |
2459806 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 45.144935 | 7.077022 | 3.014861 | 2.605178 | 14.774503 | 19.320443 | 85.063275 | 148.911634 | 0.6397 | 0.6342 | 0.3399 | 5.386776 | 4.685038 |
2459805 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 26.975831 | 21.836734 | 3.146225 | 2.344758 | 7.376561 | 10.116015 | 32.141522 | 138.433439 | 0.7165 | 0.6764 | 0.2834 | 11.024659 | 8.990229 |
2459804 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 29.959082 | 28.458753 | 2.731551 | 2.688342 | 8.942274 | 8.378470 | 8.340695 | 9.018700 | 0.7138 | 0.6783 | 0.2655 | 11.263591 | 9.461629 |
2459803 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 37.026936 | 36.317526 | 3.608410 | 3.772469 | 9.021413 | 8.895098 | 36.810192 | 35.780674 | 0.7092 | 0.6820 | 0.2635 | 13.864381 | 13.758822 |
2459802 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.080720 | 34.769691 | 2.555744 | 2.388069 | 11.182892 | 10.946152 | 33.185357 | 38.155715 | 0.6949 | 0.5884 | 0.3130 | 8.530777 | 6.600572 |
2459801 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.636795 | 29.139279 | 2.669828 | 2.398700 | 12.557414 | 12.225125 | 35.405381 | 38.536921 | 0.7329 | 0.6764 | 0.2918 | 17.127529 | 14.393991 |
2459800 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 31.834233 | 31.768228 | 2.258330 | 2.425059 | 8.933147 | 8.003661 | 41.004247 | 41.176994 | 0.6836 | 0.6622 | 0.2560 | 12.582978 | 11.341114 |
2459799 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 40.049298 | 12.821821 | 2.658495 | 1.707330 | 17.669465 | 24.024939 | 42.286333 | 167.120394 | 0.6377 | 0.6170 | 0.3193 | 4.803280 | 4.395635 |
2459798 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 29.860404 | 33.963796 | 2.329945 | 7.727515 | 6.562776 | 7.003971 | 30.305351 | 51.200176 | 0.6697 | 0.6438 | 0.2429 | 10.827113 | 10.042868 |
2459797 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 25.805787 | 29.727377 | 2.344962 | 7.158097 | 8.142690 | 8.677666 | 36.792452 | 64.624606 | 0.6695 | 0.6493 | 0.2340 | 9.854810 | 7.640530 |
2459796 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 26.603167 | 31.145511 | 3.299577 | 9.887336 | 7.059029 | 7.282545 | 43.925719 | 76.926352 | 0.6574 | 0.6351 | 0.2312 | 6.747521 | 5.369889 |
2459795 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 33.287701 | 24.043496 | 2.692302 | 5.190063 | 7.592424 | 17.168599 | 43.379229 | 92.364896 | 0.6484 | 0.6384 | 0.2726 | 26.214950 | 22.973772 |
2459794 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 31.865396 | 18.912641 | 2.623787 | 4.588721 | 10.020674 | 14.086180 | 137.956789 | 519.680334 | 0.6416 | 0.6427 | 0.2869 | 0.000000 | 0.000000 |
2459793 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 23.054980 | 25.447482 | 2.034601 | 7.499256 | 8.583121 | 9.973193 | 32.822656 | 63.688163 | 0.6285 | 0.6323 | 0.2269 | 12.540766 | 10.607693 |
2459792 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 41.449733 | 8.331389 | 2.851804 | 0.345712 | 11.880963 | 19.710706 | 33.313909 | 69.236581 | 0.6425 | 0.6234 | 0.3230 | 4.698739 | 3.698568 |
2459791 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 27.012069 | 26.510668 | 3.362040 | 7.849042 | 11.989893 | 19.264086 | 24.279999 | 104.830762 | 0.6141 | 0.6198 | 0.2245 | 11.184940 | 9.509667 |
2459790 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 46.747724 | 8.124520 | 3.576367 | 1.347410 | 15.215174 | 22.081389 | 42.608415 | 119.182392 | 0.6072 | 0.6420 | 0.3272 | 4.094904 | 3.597104 |
2459789 | RF_maintenance | 100.00% | 8.06% | 2.69% | 0.00% | 100.00% | 0.00% | 37.060258 | 43.793927 | 2.978067 | 3.946862 | 12.765160 | 12.941567 | 78.012932 | 83.074814 | 0.5705 | 0.5764 | 0.2023 | 7.690165 | 7.252248 |
2459788 | RF_maintenance | 100.00% | 7.94% | 0.00% | 0.00% | 100.00% | 0.00% | 32.811139 | 39.559356 | 3.144783 | 4.164434 | 13.847343 | 15.114589 | 32.313430 | 37.416895 | 0.5794 | 0.5881 | 0.1960 | 10.394370 | 9.109716 |
2459787 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 15.207210 | 15.703898 | inf | inf | 2728.304390 | 2455.520360 | 15387.337725 | 11488.912741 | nan | nan | nan | 0.000000 | 0.000000 |
2459786 | RF_maintenance | 100.00% | 16.13% | 0.00% | 0.00% | 100.00% | 0.00% | 36.603012 | 41.150197 | 3.074559 | 3.556101 | 17.368001 | 16.316046 | 52.761276 | 94.277355 | 0.5388 | 0.5521 | 0.1946 | 4.870372 | 4.484673 |
2459785 | RF_maintenance | 100.00% | 3.76% | 0.00% | 0.00% | 100.00% | 0.00% | 37.096567 | -0.068214 | 5.964404 | 8.196180 | 12.017030 | 4.997022 | 10.139265 | 10.459191 | 0.6469 | 0.6430 | 0.3510 | 10.542868 | 6.771217 |
2459784 | RF_maintenance | 100.00% | 29.57% | 13.44% | 0.00% | 100.00% | 0.00% | 36.904083 | 6.248000 | 3.987567 | 4.223254 | 17.594046 | 24.739349 | 34.580347 | 139.476744 | 0.5028 | 0.5408 | 0.2730 | 26.918412 | 34.643678 |
2459783 | RF_maintenance | 100.00% | 24.26% | 18.87% | 0.00% | 100.00% | 0.00% | 30.766526 | 37.614798 | 1.511936 | 2.404035 | 8.192020 | 11.392458 | 52.763910 | 64.415787 | 0.4955 | 0.5059 | 0.1675 | 7.359227 | 6.411804 |
2459782 | RF_maintenance | 100.00% | 45.70% | 45.70% | 0.00% | 100.00% | 0.00% | 31.418064 | 37.778014 | 0.857251 | 1.548546 | 5.315035 | 8.537696 | 45.794083 | 55.878405 | 0.4587 | 0.4662 | 0.1639 | 4.456255 | 4.341409 |
2459781 | RF_maintenance | 100.00% | 59.58% | 59.58% | 0.00% | 100.00% | 0.00% | 9.144815 | 9.379213 | 2.081702 | 1.859568 | 15.760966 | 15.959597 | 46.331245 | 47.482253 | 0.6458 | 0.6388 | 0.2282 | 3.491413 | 2.724901 |
2459778 | RF_maintenance | 100.00% | 10.20% | 6.44% | 0.00% | 100.00% | 0.00% | 25.830850 | 24.376855 | 2.473860 | 2.115540 | 10.506739 | 13.037668 | 119.658255 | 147.980810 | 0.6081 | 0.5625 | 0.2438 | 4.317257 | 3.845621 |
2459776 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.234760 | 35.020154 | 1.939905 | 1.035645 | 46.046589 | 12.888073 | 151.921114 | 47.559084 | 0.6103 | 0.5523 | 0.2545 | 4.576998 | 3.842288 |
2459774 | RF_maintenance | - | 7.79% | 7.27% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6149 | 0.5710 | 0.2671 | nan | nan |
2459773 | RF_maintenance | 100.00% | 69.89% | 45.70% | 0.00% | 100.00% | 0.00% | 29.787886 | 31.702020 | 7.053998 | 5.204094 | 0.966041 | 0.622746 | 4.261315 | 1.138247 | 0.3944 | 0.4063 | 0.1565 | 5.996343 | 4.784826 |
2459772 | RF_maintenance | 100.00% | 8.06% | 0.00% | 0.00% | 100.00% | 0.00% | 18.254866 | 18.707492 | 2.571245 | 2.251254 | -0.117334 | 2.007710 | 7.792841 | 22.536760 | 0.4280 | 0.4320 | 0.1517 | 6.623206 | 5.069226 |
2459771 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 21.598707 | 12.493343 | 2.646340 | 1.407885 | 0.403814 | 2.096567 | 19.982526 | 104.006654 | 0.6414 | 0.5932 | 0.2750 | 6.021355 | 4.655614 |
2459770 | RF_maintenance | 100.00% | 59.14% | 21.51% | 0.00% | 100.00% | 0.00% | 27.437022 | 29.366602 | 4.848338 | 3.611552 | 0.934602 | 0.571129 | 7.312233 | 11.326955 | 0.4063 | 0.4170 | 0.1668 | 2.733723 | 3.047944 |
2459769 | RF_maintenance | 100.00% | 40.32% | 2.69% | 0.00% | 100.00% | 0.00% | 28.079654 | 32.309386 | 5.196383 | 4.430010 | 2.191818 | 0.940633 | 2.662972 | 1.562925 | 0.4184 | 0.4290 | 0.1591 | 5.051920 | 4.031367 |
2459768 | RF_maintenance | 100.00% | 45.70% | 0.00% | 0.00% | 100.00% | 0.00% | 29.816097 | 33.786151 | 5.838589 | 4.765097 | 1.122481 | 0.871919 | 3.886001 | 1.336226 | 0.4191 | 0.4329 | 0.1574 | 4.386267 | 3.742508 |
2459767 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 21.415203 | 23.289740 | 2.670264 | 2.363251 | 0.283731 | 0.438666 | 2.662878 | 1.082937 | 0.4703 | 0.4704 | 0.1544 | 5.293620 | 3.960090 |
2459766 | RF_maintenance | 100.00% | 18.82% | 0.00% | 0.00% | 100.00% | 0.00% | 22.587259 | 8.327710 | 2.657997 | 0.797907 | 1.695134 | 16.249785 | 22.989729 | 127.401502 | 0.4332 | 0.4724 | 0.2287 | 5.735397 | 3.588166 |
2459765 | RF_maintenance | 100.00% | 13.44% | 0.00% | 0.00% | 100.00% | 0.00% | 38.151019 | 40.579468 | 7.514697 | 5.972799 | 5.527130 | 1.738654 | 3.470394 | 1.469308 | 0.4402 | 0.4489 | 0.1678 | 5.635770 | 4.358263 |
2459764 | RF_maintenance | - | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459763 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 27.865502 | 24.334403 | 3.875645 | 2.667170 | 2.017324 | 2.960136 | 1.398559 | 0.767415 | 0.6459 | 0.5917 | 0.2271 | 5.894643 | 4.993089 |
2459761 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 38.475979 | -0.782822 | 5.378851 | -0.695560 | 5.397532 | 4.574310 | 26.531593 | 16.482017 | 0.4787 | 0.5515 | 0.3190 | 5.258150 | 3.386514 |
2459760 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 39.984694 | 0.026460 | 5.508118 | -0.393967 | 15.267176 | 11.949256 | 46.460585 | 28.538677 | 0.4845 | 0.5614 | 0.3237 | 0.000000 | 0.000000 |
2459759 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 7.447051 | 0.326305 | -0.422887 | 0.442148 | -0.054368 | 0.181344 | -0.730660 | -1.476028 | 0.0543 | 0.0678 | 0.0043 | 1.184855 | 1.184102 |
2459758 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 28.677380 | -0.568895 | 3.043009 | -0.548947 | 4.260552 | 3.248476 | 14.576380 | 9.332254 | 0.0736 | 0.0770 | 0.0120 | 1.157689 | 1.154369 |
2459757 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 21.236499 | -0.276660 | 2.908793 | -0.735444 | 0.447697 | -0.523668 | 9.596774 | 5.159369 | 0.0652 | 0.0619 | 0.0058 | 1.159331 | 1.155818 |
2459755 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 23.356471 | 26.446469 | 0.967914 | 1.619460 | 4.824640 | 9.975363 | 19.915774 | 26.598247 | 0.0784 | 0.0937 | 0.0089 | 1.211631 | 1.212908 |
2459754 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 19.076293 | 21.468729 | 0.615383 | 1.425494 | 4.674198 | 7.858039 | 29.656986 | 31.667011 | 0.0928 | 0.1056 | 0.0109 | 1.204749 | 1.200529 |
2459753 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 26.556039 | 28.523889 | 1.037787 | 1.801873 | 4.401092 | 9.860303 | 12.307192 | 15.268915 | 0.0896 | 0.1017 | 0.0095 | 1.292222 | 1.289586 |
2459752 | RF_maintenance | 100.00% | 51.61% | 51.61% | 0.00% | 100.00% | 0.00% | 29.923979 | 34.988717 | 3.107242 | 4.242851 | 6.535279 | 21.022089 | 4.532163 | 10.203092 | 0.3593 | 0.3449 | 0.1135 | 0.000000 | 0.000000 |
2459750 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 37.546014 | 19.492583 | 3.182827 | 1.171389 | 4.533510 | 9.484262 | 41.247781 | 217.404998 | 0.0714 | 0.0702 | 0.0072 | 1.274914 | 1.272841 |
2459749 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 24.967441 | 29.260286 | 0.898045 | 1.905341 | 3.477931 | 8.650060 | 17.616808 | 39.341889 | 0.1232 | 0.1209 | 0.0118 | 1.171831 | 1.163206 |
2459748 | RF_maintenance | 100.00% | 5.38% | 0.00% | 0.00% | 100.00% | 0.00% | 25.226149 | 10.518532 | 1.321728 | 0.104903 | 7.711701 | 39.817020 | 16.559586 | 24.703645 | 0.5516 | 0.5734 | 0.3002 | 5.767741 | 4.399124 |
2459747 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.555742 | -0.064290 | 0.994733 | 0.192279 | 714.101165 | 853.521957 | 603.155974 | 713.048081 | 0.0292 | 0.0292 | 0.0005 | nan | nan |
2459746 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.534440 | 1.865535 | 1.050638 | 1.148265 | 4.202138 | 3.306547 | 11.713885 | 10.995910 | 0.0306 | 0.0308 | 0.0010 | nan | nan |
2459745 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 22.757383 | 24.116311 | 0.789818 | 1.395231 | 4.670038 | 12.993631 | 38.626533 | 158.923330 | 0.5782 | 0.5710 | 0.2224 | 9.115134 | 8.255479 |
2459744 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.816479 | 0.607684 | 0.449462 | -0.349402 | 1.886981 | 2.049674 | 16.218110 | 9.349620 | 0.0295 | 0.0299 | 0.0008 | nan | nan |
2459743 | RF_maintenance | 100.00% | 0.00% | 1.08% | 0.00% | 100.00% | 0.00% | 30.326562 | 34.688552 | 5.273502 | 6.675475 | 4.740120 | 4.599340 | 25.424804 | 28.001051 | 0.6450 | 0.5703 | 0.2387 | 9.571040 | 7.052820 |
2459742 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.726235 | 1.136210 | 0.230409 | -0.341413 | 2.765666 | 1.488663 | 5.000010 | 4.888965 | 0.0296 | 0.0297 | 0.0008 | nan | nan |
2459741 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.378419 | 0.876825 | 2.334874 | 1.541844 | 1167.259779 | 1406.358999 | 475.244565 | 565.510766 | 0.0288 | 0.0292 | 0.0006 | nan | nan |
2459740 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.596800 | 0.365906 | 1.115898 | -0.474596 | 5.224710 | 3.272787 | 10.202987 | 10.097801 | 0.0278 | 0.0284 | 0.0004 | nan | nan |
2459738 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 29.018938 | 35.795750 | 3.800328 | 6.011719 | 8.215815 | 16.231345 | 21.432252 | 28.164394 | 0.6128 | 0.6014 | 0.2262 | 10.568491 | 9.112536 |
2459736 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 19.011474 | 21.377878 | 1.060012 | 1.897343 | 0.658950 | 0.794267 | 9.535940 | 10.935776 | 0.6528 | 0.5774 | 0.2505 | 5.218075 | 4.085069 |
2459734 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.566028 | -0.282971 | 1.189522 | 0.333494 | 439.381128 | 537.715270 | 385.138677 | 465.531692 | 0.0287 | 0.0290 | 0.0006 | nan | nan |
2459733 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.478307 | -0.105936 | 1.241327 | 0.526765 | 156.948639 | 191.511989 | 414.150679 | 498.482921 | 0.0286 | 0.0287 | 0.0004 | nan | nan |
2459732 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.804093 | -0.156065 | 1.537159 | 0.446583 | 246.458683 | 302.101367 | 492.966748 | 596.513067 | 0.0289 | 0.0290 | 0.0005 | nan | nan |
2459731 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 38.292968 | 6.622030 | 3.093633 | -0.268490 | 12.036109 | 43.088625 | 29.949889 | 79.623281 | 0.6283 | 0.6667 | 0.3486 | 5.796260 | 6.842956 |
2459730 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.285186 | -0.221172 | 1.210216 | 0.508285 | 213.994112 | 259.029568 | 435.449121 | 520.221833 | 0.0293 | 0.0289 | 0.0007 | nan | nan |
2459728 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.142429 | -0.065650 | 0.227066 | -0.461473 | 1.987547 | 1.313975 | 3.245202 | 3.360966 | 0.0290 | 0.0291 | 0.0005 | nan | nan |
2459726 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.187393 | -0.396664 | 0.562798 | 0.100879 | 410.952173 | 502.014428 | 491.286665 | 592.216118 | 0.0291 | 0.0292 | 0.0006 | nan | nan |
2459724 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 21.158765 | 19.626885 | 30.907979 | 29.679617 | 28268.448895 | 26909.244620 | 25914.686290 | 24440.827774 | nan | nan | nan | nan | nan |
2459723 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.130783 | -0.455008 | 0.717542 | -0.011196 | 171.563117 | 200.364109 | 326.821850 | 379.254364 | 0.0290 | 0.0291 | 0.0005 | nan | nan |
2459722 | RF_maintenance | 100.00% | 1.62% | 1.62% | 0.00% | 100.00% | 0.00% | 41.326878 | 29.468723 | 4.040885 | 2.555924 | 4.161228 | 12.468620 | 28.462307 | 50.236845 | 0.6435 | 0.5852 | 0.2827 | 6.339091 | 6.325910 |
2459720 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.186942 | -0.388540 | 0.947086 | 0.308593 | 710.484645 | 868.093277 | 208.013531 | 248.751738 | 0.0290 | 0.0291 | 0.0006 | nan | nan |
2459719 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.040837 | -0.424201 | 0.823006 | 0.141973 | 759.742645 | 933.434509 | 358.367310 | 433.620358 | 0.0287 | 0.0290 | 0.0003 | nan | nan |
2459718 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.770069 | 0.177537 | 0.672057 | -0.417349 | 11.513789 | 11.518573 | 9.834189 | 9.747729 | 0.0289 | 0.0291 | 0.0004 | nan | nan |
2459717 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.846450 | 0.187402 | 0.299314 | -0.487761 | 4.060833 | 3.350920 | 9.931765 | 10.311385 | 0.0289 | 0.0287 | 0.0004 | nan | nan |
2459716 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.382965 | -0.036463 | 0.670582 | -0.016175 | 2.797540 | 4.005254 | 13.746901 | 14.071849 | 0.0286 | 0.0287 | 0.0005 | nan | nan |
2459715 | RF_maintenance | 100.00% | 10.29% | 11.37% | 0.00% | 100.00% | 0.00% | 32.320866 | 37.689031 | 3.928804 | 5.552649 | 4.232566 | 2.755392 | 2.858533 | 4.957017 | 0.6174 | 0.5493 | 0.2585 | 6.820813 | 5.976746 |
2459713 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.727562 | 0.149573 | 0.769261 | 0.028493 | 4.077110 | 3.781944 | 10.962760 | 11.214656 | 0.0289 | 0.0291 | 0.0006 | nan | nan |
2459712 | RF_maintenance | 100.00% | 5.38% | 2.69% | 0.00% | 100.00% | 0.00% | 28.115441 | 33.565126 | 7.013137 | 8.488637 | 2.198273 | 2.517858 | 5.237157 | 4.518469 | 0.5647 | 0.5653 | 0.1905 | 14.928002 | 9.294946 |
2459711 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.286540 | 0.374225 | 0.097294 | -0.194929 | 2.242988 | 2.678240 | 3.429047 | 3.327217 | 0.0281 | 0.0280 | 0.0004 | nan | nan |
2459710 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.509734 | 0.520769 | 0.344752 | 0.121922 | 5.518876 | 3.150640 | 5.202796 | 5.208924 | 0.0289 | 0.0287 | 0.0004 | nan | nan |
2459708 | dish_ok | 100.00% | 0.00% | 2.71% | 0.00% | 100.00% | 0.00% | 29.241998 | 33.971658 | 4.016882 | 5.957657 | 4.260588 | 2.799441 | 6.954778 | 6.271357 | 0.6220 | 0.5604 | 0.2493 | 0.000000 | 0.000000 |
2459707 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.558624 | 0.597816 | -1.075415 | -0.977697 | -1.607015 | -1.648773 | 5.655886 | 5.624311 | 0.0300 | 0.0295 | 0.0008 | 0.000000 | 0.000000 |
2459706 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.454620 | 0.496096 | 0.250976 | 0.118802 | 3.218893 | 2.128237 | 4.397530 | 4.263956 | 0.0280 | 0.0278 | 0.0005 | nan | nan |
2459705 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.013885 | 0.357429 | 0.512393 | -0.372436 | 3.601626 | 3.378312 | 12.258208 | 12.243328 | 0.0280 | 0.0280 | 0.0004 | nan | nan |
2459703 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.251936 | 0.382511 | 1.107080 | -0.181895 | 23.911333 | 16.809913 | 3.215750 | 3.602278 | 0.0321 | 0.0297 | 0.0028 | nan | nan |
2459702 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 31.423105 | 39.161349 | 2.089854 | 3.284098 | 2.398594 | 2.921507 | 2.746604 | 4.000089 | 0.5119 | 0.5123 | 0.1799 | 3.800145 | 4.055886 |
2459701 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 31.322909 | 38.407248 | 0.939720 | 1.777273 | 3.351222 | 3.317568 | 0.936509 | 1.545211 | 0.5230 | 0.5245 | 0.1778 | 3.078232 | 3.179406 |
2459697 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3234.890126 | 3234.890126 | 3020.395080 | 3020.395080 | 2429.202002 | 2429.202002 | 12225.783968 | 12225.783968 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459696 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 793.819244 | 793.819244 | 715.796331 | 715.796331 | 727.655605 | 727.655605 | 2890.385656 | 2890.385656 | 1.0000 | 1.0000 | 0.0000 | 0.008494 | 0.008494 |
2459695 | dish_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 | dish_ok | 100.00% | 16.77% | 17.31% | 0.00% | 100.00% | 0.00% | 30.768735 | 35.665046 | 2.094183 | 3.082365 | 2.831441 | 1.672653 | 7.719977 | 7.375121 | 0.5475 | 0.5155 | 0.2253 | 3.024500 | 3.369845 |
2459693 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.929298 | 32.724279 | 4.646366 | 5.836280 | 8.815195 | 6.067160 | 4.874808 | 7.766201 | 0.6100 | 0.6138 | 0.1646 | 3.756997 | 4.411318 |
2459692 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 24.451289 | 25.114425 | 2.729954 | 3.980734 | 3.669394 | 2.815434 | 2.259255 | 3.802035 | 0.6332 | 0.6821 | 0.1417 | 4.556106 | 5.267102 |
2459691 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.471809 | 39.023385 | 7.246103 | 10.870326 | 10.392246 | 2.972952 | 7.155186 | 5.618213 | 0.4740 | 0.4820 | 0.1857 | 3.438500 | 3.951494 |
2459690 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.889008 | 40.334896 | 8.584596 | 11.662606 | 11.112592 | 3.641810 | 10.828646 | 7.232344 | 0.4959 | 0.5035 | 0.2079 | -0.000000 | -0.000000 |
2459689 | dish_ok | 100.00% | - | - | - | - | - | 33.525048 | 40.348333 | 6.608171 | 8.438688 | 2.134200 | 3.617462 | 4.230108 | 2.325630 | nan | nan | nan | nan | nan |
2459688 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 2.870460 | 2.943862 |
2459687 | dish_ok | 100.00% | 99.46% | 99.46% | 0.00% | - | - | 24.943225 | 28.773321 | 7.117841 | 9.335943 | 1.526690 | 1.220344 | 1.901682 | 4.877188 | 0.2072 | 0.1950 | 0.0624 | nan | nan |
2459686 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.150998 | 35.747729 | 5.533119 | 7.063494 | 6.441629 | 4.898880 | 5.856505 | 6.542756 | 0.4942 | 0.5024 | 0.2003 | 2.665666 | 2.814021 |
2459685 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.735273 | 39.990826 | 5.373904 | 6.727431 | 8.139525 | 7.273212 | 9.101066 | 11.705872 | 0.5052 | 0.5082 | 0.2004 | 3.252019 | 3.306370 |
2459684 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.368787 | 39.496772 | 6.744074 | 8.922860 | 3.493735 | 2.540305 | 7.709880 | 8.567324 | 0.4982 | 0.5091 | 0.2049 | 2.456580 | 2.597761 |
2459676 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 37.238020 | 43.161930 | 8.176200 | 11.171611 | 6.700446 | 3.998853 | 10.356337 | 2.592549 | 0.5212 | 0.5278 | 0.2074 | 8.336896 | 10.145444 |
2459675 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.546332 | 40.267994 | 6.350196 | 8.796882 | 9.936684 | 4.740862 | 7.585742 | 2.891062 | 0.5276 | 0.5360 | 0.2032 | 2.502120 | 2.664451 |
2459674 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.673984 | 43.228602 | 6.195436 | 9.065224 | 7.455366 | 2.962163 | 6.721422 | 2.592172 | 0.5167 | 0.5198 | 0.2086 | 4.687428 | 5.185809 |
2459673 | dish_ok | 100.00% | 0.00% | 1.08% | 0.00% | 100.00% | 0.00% | 37.756024 | 46.208972 | 8.863275 | 11.458757 | 3.035062 | 5.904026 | 8.219970 | 4.708988 | 0.5622 | 0.5579 | 0.2042 | 0.000000 | 0.000000 |
2459672 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.278804 | 36.529403 | 6.723328 | 9.574193 | 5.261253 | 2.415322 | 2.998515 | 2.762942 | 0.5368 | 0.5352 | 0.2038 | 1.185146 | 1.206293 |
2459671 | dish_ok | 100.00% | 33.51% | 33.51% | 0.00% | 100.00% | 0.00% | 32.509070 | 37.732176 | 6.275037 | 8.297623 | 5.004736 | 4.797812 | 9.098058 | 6.411919 | 0.4384 | 0.4237 | 0.1537 | 0.000000 | 0.000000 |
2459670 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.528483 | -0.259084 | 0.994029 | 2.533048 | 0.690520 | -1.243444 | -0.874821 | 0.864245 | 0.0279 | 0.0300 | 0.0005 | nan | nan |
2459668 | dish_ok | 100.00% | 1.08% | 0.00% | 0.00% | 100.00% | 0.00% | 31.210655 | 36.403610 | 8.915093 | 11.424716 | 3.781782 | 5.571598 | 13.729068 | 15.741578 | 0.6016 | 0.6015 | 0.1861 | 2.951173 | 3.123275 |
2459665 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 37.641964 | 40.766045 | 6.957960 | 9.440246 | 5.417166 | 3.284969 | 6.221146 | 6.462826 | 0.5479 | 0.5674 | 0.2223 | 3.003727 | 3.451172 |
2459664 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.575833 | 0.370082 | 0.092233 | 0.755242 | -0.656779 | -0.802239 | -1.401472 | 0.291995 | 0.0270 | 0.0347 | 0.0008 | nan | nan |
2459663 | dish_ok | 100.00% | 8.64% | 0.00% | 0.00% | 100.00% | 0.00% | 40.176005 | 44.471611 | 14.257600 | 17.382839 | 7.468051 | 8.971498 | 12.837201 | 11.198636 | 0.5327 | 0.5495 | 0.2086 | 4.267073 | 5.954882 |
2459662 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.281918 | -0.497482 | 0.325806 | 1.735282 | 2.547266 | -0.452894 | -1.172835 | 0.673704 | 0.0274 | 0.0299 | 0.0005 | nan | nan |
2459661 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.048169 | 38.508878 | 10.533895 | 12.766000 | 3.781794 | 4.417543 | 8.375165 | 12.629695 | 0.5976 | 0.5951 | 0.1788 | 3.512536 | 3.746010 |
2459660 | dish_ok | 100.00% | 0.64% | 0.64% | 0.00% | 100.00% | 0.00% | 27.020946 | 32.459433 | 9.602327 | 13.043845 | 3.210940 | 4.772476 | 4.200150 | 7.827774 | 0.5818 | 0.5801 | 0.1920 | 3.231851 | 3.564750 |
2459659 | dish_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 | dish_ok | 100.00% | 0.64% | 0.64% | 0.00% | 100.00% | 0.00% | 30.032680 | 34.828274 | 6.425915 | 8.003910 | 2.239419 | 3.175669 | 3.560996 | 3.962674 | 0.5472 | 0.5588 | 0.2040 | 2.645492 | 2.884936 |
2459657 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 42.332250 | 11.655011 | 8.836612 | 4.877993 | 5.423514 | 13.785704 | 7.650691 | 20.780648 | 0.5741 | 0.6132 | 0.2869 | 4.925444 | 4.799951 |
2459656 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.949274 | 41.782341 | 5.490236 | 7.860604 | 3.765127 | 4.036368 | 14.668266 | 14.157099 | 0.5371 | 0.5350 | 0.1964 | 2.650980 | 2.854225 |
2459655 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.110791 | -0.129427 | 0.862675 | 2.495060 | 1.492293 | -0.818105 | -1.286893 | -0.129299 | 0.0273 | 0.0289 | 0.0003 | nan | nan |
2459653 | dish_ok | 100.00% | 5.41% | 0.00% | 0.00% | 100.00% | 0.00% | 35.528357 | 38.217739 | 6.415991 | 8.350342 | 49.179227 | 5.529445 | 14.915173 | 14.127110 | 0.5263 | 0.5336 | 0.2001 | 4.225000 | 4.249796 |
2459652 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 41.218225 | 42.133669 | 10.617420 | 13.937270 | 41.938074 | 7.397765 | 17.383296 | 37.929712 | 0.5268 | 0.5148 | 0.1921 | 7.533761 | 8.186695 |
2459651 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.058606 | 36.141614 | 8.560477 | 9.764363 | 6.485207 | 5.391207 | 9.063875 | 10.961777 | 0.8268 | 0.8411 | 0.0782 | 61.088995 | 63.560187 |
2459650 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 47.369945 | 39.844091 | 10.964455 | 11.375847 | 7.152853 | 6.238886 | 12.745886 | 14.177335 | 0.7071 | 0.7094 | 0.1504 | 8.136945 | 8.002843 |
2459649 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 30.493232 | 37.070572 | 6.518208 | 9.286970 | 4.223662 | 3.492773 | 5.997149 | 5.851571 | 0.5823 | 0.5872 | 0.1850 | 2.777211 | 2.993294 |
2459648 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | dish_ok | 100.00% | 81.63% | 81.63% | 0.00% | 100.00% | 0.00% | 0.201825 | 0.201825 | 1031.829205 | 1031.829205 | 31035.109023 | 31035.109023 | 7.865063 | 7.865063 | 0.2085 | 0.2085 | 0.0000 | 0.131334 | 0.131334 |
2459646 | dish_ok | 100.00% | 3.24% | 0.00% | 0.00% | 100.00% | 0.00% | 30.950135 | 35.103506 | 7.751715 | 10.387560 | 4.478651 | 4.485027 | 4.785463 | 6.766046 | 0.5152 | 0.5242 | 0.1906 | 4.013954 | 4.126095 |
2459645 | dish_ok | 100.00% | 7.03% | 0.00% | 0.00% | 100.00% | 0.00% | 31.584100 | 34.173596 | 8.441296 | 11.084763 | 4.391240 | 5.419626 | 7.369965 | 12.245211 | 0.6051 | 0.6593 | 0.1657 | 6.049629 | 7.103060 |
2459642 | dish_ok | 100.00% | 8.64% | 0.00% | 0.00% | 100.00% | 0.00% | 34.367698 | 37.674965 | 10.591521 | 13.566952 | 5.393870 | 3.606753 | 14.357910 | 14.488693 | 0.5043 | 0.5157 | 0.1947 | 2.750724 | 2.831710 |
2459641 | dish_ok | - | 55.70% | 55.70% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.4653 | 0.4612 | 0.0025 | nan | nan |
2459640 | dish_ok | 100.00% | 5.41% | 0.00% | 0.00% | 100.00% | 0.00% | 38.210960 | 40.061238 | 8.725957 | 10.632736 | 5.335453 | 3.883516 | 7.578815 | 8.555002 | 0.5033 | 0.5208 | 0.2024 | 4.184057 | 4.534302 |
2459639 | dish_ok | 100.00% | 10.86% | 0.00% | 0.00% | 100.00% | 0.00% | 30.031148 | 32.222759 | 8.341536 | 10.169651 | 5.609721 | 4.272928 | 3.048043 | 2.444354 | 0.5087 | 0.5253 | 0.1912 | 3.684540 | 3.826056 |
2459638 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6290 | 0.6786 | 0.1797 | nan | nan |
2459637 | dish_ok | 100.00% | 9.19% | 0.00% | 0.00% | 100.00% | 0.00% | 31.638111 | 35.051858 | 11.086988 | 13.776393 | 4.239013 | 4.610688 | 5.316457 | 6.895219 | 0.4914 | 0.5003 | 0.1948 | 3.681227 | 3.836334 |
2459636 | dish_ok | 100.00% | 8.11% | 0.00% | 0.00% | 100.00% | 0.00% | 31.729456 | 34.379537 | 10.158417 | 12.635135 | 10.538830 | 3.119582 | 13.506285 | 8.945265 | 0.5013 | 0.5056 | 0.2071 | 3.844976 | 3.970655 |
2459635 | dish_ok | 100.00% | 7.62% | 0.54% | 0.00% | 100.00% | 0.00% | 36.057352 | 37.741611 | 9.838254 | 12.363587 | 5.349067 | 4.183873 | 8.009306 | 8.853267 | 0.4998 | 0.5074 | 0.2015 | 4.017212 | 4.137528 |
2459634 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 10.272108 | 1.479501 | 152134.407498 | 1.482009 | 8.687712 | 1.168002 | 8.678160 | 1.159103 | 1.0000 | 1.0000 | 0.0000 | 0.069996 | 0.070371 |
2459633 | dish_ok | 100.00% | 7.08% | 0.00% | 0.00% | 100.00% | 0.00% | 34.715718 | 37.529232 | 11.003981 | 13.867270 | 4.960268 | 4.947795 | 7.525055 | 8.011473 | 0.4928 | 0.5058 | 0.2058 | 2.483361 | 2.861740 |
2459632 | dish_ok | 100.00% | 5.95% | 0.00% | 0.00% | 100.00% | 0.00% | 34.962163 | 36.623297 | 9.364027 | 11.257724 | 3.253359 | 2.816274 | 8.080715 | 7.319132 | 0.4956 | 0.5118 | 0.2082 | 3.741381 | 3.921367 |
2459631 | dish_ok | 100.00% | 5.41% | 0.00% | 0.00% | 100.00% | 0.00% | 41.135450 | 45.324685 | 10.344846 | 12.823551 | 4.341006 | 3.358285 | 8.583031 | 8.048813 | 0.4893 | 0.5014 | 0.2038 | 2.538373 | 2.904528 |
2459630 | dish_ok | 100.00% | 0.54% | 0.00% | 0.00% | 100.00% | 0.00% | 46.788222 | 50.287517 | 8.991263 | 11.329894 | 5.979371 | 4.454614 | 7.736759 | 9.209407 | 0.5008 | 0.5121 | 0.2008 | 1.785060 | 2.015919 |
2459629 | dish_ok | 100.00% | 3.30% | 0.00% | 0.00% | 100.00% | 0.00% | 39.884529 | 42.195574 | 10.813869 | 12.752964 | 4.408747 | 4.830510 | 5.855572 | 6.495450 | 0.5279 | 0.5366 | 0.1977 | 3.009804 | 3.420673 |
2459628 | dish_ok | 100.00% | 3.24% | 0.00% | 0.00% | 100.00% | 0.00% | 32.885650 | 36.936087 | 8.589375 | 10.893757 | 3.511004 | 4.105365 | 2.948381 | 4.095845 | 0.4990 | 0.5048 | 0.2012 | 2.614432 | 2.723595 |
2459627 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.846013 | 1.846013 | 1.856548 | 1.856548 | 2.012574 | 2.012574 | 1.981087 | 1.981087 | 1.0000 | 1.0000 | 0.0000 | 0.080412 | 0.080412 |
2459626 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 33.247979 | 36.697871 | 7.058441 | 9.530040 | 4.642315 | 5.157936 | 3.904274 | 3.818544 | 0.5221 | 0.5325 | 0.2054 | 2.690562 | 2.870285 |
2459625 | dish_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 |
2459624 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 37.941638 | 41.105504 | 7.892942 | 10.048630 | 5.911550 | 6.219243 | 5.345563 | 4.917661 | 0.5166 | 0.5233 | 0.2021 | 3.266323 | 3.637657 |
2459623 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459622 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.265385 | 39.200393 | 16.553715 | 20.014891 | 2.966093 | 3.553866 | 3.573531 | 6.026428 | 0.5219 | 0.5313 | 0.2120 | 0.000000 | 0.000000 |
2459621 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | 31.734466 | 38.327491 | 8.829547 | 12.108817 | 1.951349 | 4.359677 | 3.393251 | 4.673575 | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.295802 | -0.089576 | 1.511871 | 3.010450 | 1.646298 | -0.771303 | -0.588323 | 0.988091 | 0.0295 | 0.0276 | 0.0006 | nan | nan |
2459619 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 27.313598 | 31.195404 | 8.917330 | 11.056334 | 15.326734 | 5.981372 | 5.040700 | 5.952775 | 0.5279 | 0.5383 | 0.2196 | 0.000000 | 0.000000 |
2459618 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 33.776722 | 37.808748 | 9.837528 | 12.261479 | 4.418163 | 5.207170 | 5.550809 | 4.601073 | 0.5210 | 0.5350 | 0.2160 | 0.000000 | 0.000000 |
2459617 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 28.952101 | 32.106706 | 8.368104 | 10.933458 | 7.057396 | 5.263504 | 3.710352 | 6.430625 | 0.5238 | 0.5420 | 0.2105 | 0.000000 | 0.000000 |
2459616 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 29.594233 | 33.818813 | 14.516237 | 17.686410 | 6.682238 | 6.225203 | 9.484203 | 8.698503 | 0.5371 | 0.5443 | 0.2134 | 0.000000 | 0.000000 |
2459615 | dish_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 |
2459614 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.724671 | 38.726599 | 8.749632 | 10.996329 | 3.572713 | 4.054355 | 12.694381 | 15.960887 | 0.5059 | 0.5186 | 0.2273 | 0.000000 | 0.000000 |
2459613 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459612 | dish_ok | 100.00% | 67.57% | 67.57% | 0.00% | 100.00% | 0.00% | 22.782343 | 20.774653 | 8.647631 | 10.487881 | 7.470823 | 6.384655 | 1.339871 | 1.977069 | 0.3380 | 0.3524 | 0.1210 | 0.000000 | 0.000000 |
2459611 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 31.796103 | 31.665604 | 6.524917 | 8.003738 | 6.468973 | 5.918840 | 4.009253 | 6.741731 | 0.5410 | 0.5751 | 0.2265 | 2.559157 | 2.914704 |
2459610 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.999197 | 33.856870 | 9.288083 | 10.076194 | 4.388006 | 7.362846 | 5.003253 | 5.993336 | 0.6067 | 0.6358 | 0.2068 | 3.214718 | 3.525883 |
2459609 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 30.231132 | 40.762665 | 10.605506 | 14.631159 | 21.836063 | 4.253899 | 5.197734 | 4.815394 | 0.5970 | 0.5936 | 0.2230 | 2.886570 | 3.139978 |
2459608 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 319.657677 | 323.868423 | inf | inf | 54.866926 | 58.232172 | 651.588494 | 669.631605 | nan | nan | nan | 0.000000 | 0.000000 |
2459607 | dish_ok | 100.00% | 41.08% | 41.08% | 0.00% | 100.00% | 0.00% | 14.454221 | 14.328508 | 8.087764 | 9.005769 | 9.910357 | 11.230992 | 18.126844 | 13.704412 | 0.3192 | 0.3229 | 0.1613 | 3.971730 | 4.428176 |
2459605 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.702086 | -0.586666 | 0.714951 | 0.288470 | -1.733113 | -0.450382 | -1.444307 | 0.536889 | 0.0312 | 0.0379 | 0.0009 | nan | nan |
2459604 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.672103 | 31.536983 | 10.890140 | 11.809262 | 8.234405 | 25.286977 | 8.930392 | 23.043792 | 0.5937 | 0.6170 | 0.2132 | 4.730065 | 4.972726 |
2459603 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 33.199882 | 28.993988 | 12.466382 | 12.601794 | 4.733144 | 3.303644 | 0.660063 | 0.441257 | 0.6516 | 0.6831 | 0.2140 | 5.725687 | 5.606329 |
2459602 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.035310 | 31.472369 | 13.022134 | 14.353108 | 13.996578 | 5.693537 | 5.475863 | 2.521744 | 0.5641 | 0.5938 | 0.2708 | 2.656667 | 2.862203 |
2459598 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.375607 | 31.086131 | 10.587008 | 12.479582 | 5.882582 | 4.408590 | 9.269109 | 7.146185 | 0.5531 | 0.5798 | 0.2339 | 4.501208 | 4.443065 |
2459597 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 30.433284 | 29.500976 | 12.567531 | 14.746281 | 5.638391 | 5.380502 | 3.244511 | 2.987344 | 0.5487 | 0.5805 | 0.2326 | 3.163653 | 3.299756 |
2459596 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 30.575602 | 28.366432 | 9.588099 | 11.239632 | 5.052664 | 3.975075 | 4.210722 | 4.643779 | 0.5653 | 0.5934 | 0.2298 | 3.579946 | 3.715882 |
2459595 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.531401 | 27.968065 | 9.356336 | 9.569727 | 8.509794 | 16.823596 | 12.399138 | 13.095401 | 0.6866 | 0.7132 | 0.1567 | 4.571969 | 5.052262 |
2459594 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.009056 | 3.871391 | 18.482482 | 13.943354 | 8.398362 | 11.942860 | 10.556991 | 11.163305 | 0.7124 | 0.7401 | 0.1827 | 14.005175 | 12.747950 |
2459593 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 29.402325 | 24.104279 | 10.477514 | 11.800213 | 15.402347 | 7.885089 | 5.235726 | 6.181740 | 0.6391 | 0.6680 | 0.1732 | 3.387374 | 3.720368 |
2459592 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.185814 | -1.149845 | 1.203714 | 1.395356 | -0.998252 | -0.610617 | -1.926032 | 0.025834 | 0.0290 | 0.0290 | 0.0010 | nan | nan |
2459591 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.375153 | 31.900438 | 13.104925 | 14.476190 | 5.078834 | 7.511360 | 1.579349 | 1.662995 | 0.5615 | 0.5961 | 0.2432 | 3.032184 | 3.224007 |
2459590 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 36.855391 | 32.692837 | 11.757960 | 13.284995 | 5.374305 | 4.106698 | 3.455777 | 4.734138 | 0.5624 | 0.5977 | 0.2391 | 4.317231 | 4.468411 |
2459589 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.481136 | 27.144896 | 10.589869 | 10.714381 | 3.981894 | 4.030017 | 5.991594 | 7.870616 | 0.6059 | 0.6421 | 0.2154 | 3.039924 | 3.459800 |
2459588 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 216.078222 | 215.749750 | inf | inf | 22.902962 | 25.608793 | 21.462675 | 19.695784 | nan | nan | nan | 0.000000 | 0.000000 |
2459587 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | 350.418501 | 351.698808 | inf | inf | 107.499264 | 110.188315 | 578.145724 | 532.067935 | nan | nan | nan | 0.000000 | 0.000000 |
2459586 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 22.872064 | 15.345221 | 0.879604 | 0.562836 | 6.571085 | 5.204907 | 18.644823 | 30.787133 | 0.5826 | 0.6246 | 0.2895 | 3.380385 | 3.452822 |
2459585 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.095508 | -1.019225 | 0.156265 | 0.895116 | -0.562873 | 0.086794 | -0.721337 | 0.494049 | 0.0326 | 0.0317 | 0.0009 | 0.000000 | 0.000000 |
2459584 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 43.575132 | 20.683671 | 5.955004 | 2.788531 | 4.059668 | 3.993980 | 4.094837 | 10.847284 | 0.5338 | 0.6105 | 0.3382 | 5.676425 | 7.643433 |
2459583 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.010629 | 13.336354 | 2.810169 | 1.327807 | 10.279468 | 12.730844 | 12.543739 | 9.661128 | 0.5611 | 0.6347 | 0.3487 | 4.157510 | 4.335705 |
2459582 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.258939 | 8.517548 | 2.544632 | 0.687899 | 3.719224 | 2.761571 | 3.125962 | 5.523974 | 0.5609 | 0.6477 | 0.3554 | 3.659026 | 3.774815 |
2459581 | dish_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 |
2459580 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.441106 | 2.523011 | 2.782837 | 0.160358 | 3.051657 | 1.138906 | 4.536445 | 7.680646 | 0.5702 | 0.6722 | 0.3668 | 4.378318 | 4.816412 |
2459579 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 35.483656 | 5.981149 | 3.487299 | 0.878536 | 4.503574 | 3.475902 | 3.658543 | 5.685952 | 0.5664 | 0.6623 | 0.3626 | 3.249964 | 4.051670 |
2459578 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.293737 | -0.002769 | -0.741714 | -0.722469 | 0.117419 | -1.013766 | -0.596653 | -0.441531 | 0.0303 | 0.0295 | 0.0010 | nan | nan |
2459577 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 41.652539 | 25.462904 | 2.670917 | 1.754808 | 4.905837 | 18.788000 | 5.652422 | 23.675339 | 0.5664 | 0.6296 | 0.3133 | 3.460382 | 3.447127 |
2459576 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.667062 | 13.974871 | 2.142044 | 1.189917 | 5.876657 | 14.351921 | 9.396989 | 30.294439 | 0.5857 | 0.6525 | 0.3158 | 2.670382 | 2.781079 |
2459575 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 23.855344 | -0.000339 | 1.399996 | 0.204305 | 12.804474 | -0.269316 | 2.642221 | 0.285138 | 0.6962 | 0.7489 | 0.3161 | 0.000000 | 0.000000 |
2459574 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 32.301395 | 3.629643 | 1.966282 | 0.230341 | 4.192956 | 5.471123 | 5.347782 | 11.913415 | 0.5989 | 0.6887 | 0.3460 | 3.561644 | 3.301380 |
2459573 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 30.593300 | 0.381292 | 3.508498 | 0.397459 | 14.694951 | -0.770609 | 1.546196 | 0.073999 | 0.5769 | 0.6781 | 0.3785 | 0.000000 | 0.000000 |
2459572 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 33.121941 | 0.156472 | 1.923349 | 0.117363 | 2.065895 | -0.567296 | 2.123690 | 0.086281 | 0.5727 | 0.6799 | 0.3795 | 4.832569 | 4.825312 |
2459571 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.062723 | 0.019629 | -0.764368 | -0.760333 | 1.853431 | -0.162758 | -1.189644 | -0.402564 | 0.0299 | 0.0300 | 0.0011 | nan | nan |
2459570 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 43.571382 | 9.684418 | 11.168598 | 8.903732 | 3.770096 | 6.203417 | 4.893685 | 13.250407 | 0.5769 | 0.6792 | 0.3515 | 5.415271 | 6.127361 |
2459569 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 33.897793 | 2.001508 | 2.541278 | 0.256481 | 3.203901 | 2.650121 | 3.561969 | 1.887589 | 0.6860 | 0.7455 | 0.2253 | 4.460002 | 3.793713 |
2459566 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 34.731971 | -0.138820 | 2.974230 | 0.338022 | 3.691172 | -0.441553 | 2.189306 | 0.480540 | 0.5706 | 0.6820 | 0.3846 | -0.000000 | -0.000000 |
2459565 | dish_ok | 0.00% | - | - | - | 100.00% | 0.00% | 0.000000 | 0.000000 | -0.016407 | -0.016407 | -0.758305 | -0.758305 | -0.875717 | -0.875717 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 14.669094 | 0.963712 | -0.311312 | 0.911606 | -0.245326 | -0.715732 | 0.303176 | 5.330080 | 0.5872 | 0.6788 | 0.3622 | 2.896865 | 2.674959 |
2459563 | dish_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 |
2459562 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 10.681610 | 0.060095 | -0.645162 | -0.027293 | -0.846772 | -1.450773 | -0.438842 | -1.240461 | 0.5823 | 0.6828 | 0.3657 | 3.309538 | 2.923682 |
2459561 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 10.058963 | 0.665316 | -0.083666 | 0.501413 | 1.568568 | -1.174346 | 0.195329 | -2.008976 | 0.6028 | 0.6871 | 0.3666 | 3.587023 | 3.129015 |
2459560 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 9.077806 | 0.438877 | -0.448344 | 0.319120 | 1.296573 | -0.662855 | -0.223698 | -1.507035 | 0.5895 | 0.6804 | 0.3770 | 3.443673 | 2.978336 |
2459559 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 12.873420 | 0.937267 | -0.042409 | 0.815546 | -0.182652 | -0.271751 | -0.232996 | -1.409148 | 0.5809 | 0.6886 | 0.3717 | 2.964658 | 2.823695 |
2459558 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 10.388000 | 4.248796 | 9.959868 | 10.230720 | 22.909161 | 12.029837 | 5.892383 | -0.616789 | 0.6177 | 0.6730 | 0.3773 | 2.482069 | 2.774034 |
2459557 | dish_ok | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0320 | 0.0299 | 0.0010 | nan | nan |
2459556 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 14.108040 | 4.648919 | 9.993229 | 10.475665 | 17.638337 | 12.368605 | 19.206941 | 8.210053 | 0.6019 | 0.6716 | 0.3590 | 2.464541 | 2.624356 |
2459553 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.5770 | 0.6615 | 0.3653 | nan | nan |
2459552 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 21.053640 | 5.491279 | 12.636354 | 14.613140 | 17.962726 | 23.115774 | 0.849647 | 1.484863 | 0.5719 | 0.6672 | 0.3629 | 1.397802 | 1.292768 |
2459551 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 11.338182 | 0.630991 | -0.362503 | 0.514425 | -0.421167 | -0.805804 | -0.992557 | -1.499233 | 0.5666 | 0.6799 | 0.3830 | 3.155291 | 2.983019 |
2459550 | dish_ok | - | 97.53% | 97.53% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0409 | 0.0398 | 0.0007 | nan | nan |
2459549 | dish_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 |
2459542 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 20.149414 | 4.275438 | 18.648638 | 21.675993 | 0.733228 | 1.133542 | 3.299964 | 8.513959 | 0.6365 | 0.7254 | 0.3313 | 3.466845 | 3.162271 |
2459541 | dish_ok | 100.00% | 1.34% | 1.34% | 0.00% | 100.00% | 0.00% | 21.629911 | 3.851233 | 11.530692 | 12.943713 | 8.545644 | 10.115490 | 4.789346 | 3.509205 | 0.6270 | 0.7176 | 0.3100 | 4.724701 | 4.329571 |
2459540 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 11.096247 | 3.362693 | 1.332957 | 1.504450 | 3.372451 | 2.146516 | 4.995358 | 4.449327 | 0.6584 | 0.7031 | 0.2931 | 3.275255 | 3.083049 |
2459536 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 22.862142 | 16.665279 | 15.548556 | 16.047633 | 19.215560 | 21.451077 | 11.994507 | 53.898406 | 0.6081 | 0.6476 | 0.2760 | 2.442179 | 2.594072 |
2459535 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.479536 | 2.407856 | 0.980832 | 1.340601 | 3.856167 | 2.019456 | 3.497861 | 4.294477 | 0.6940 | 0.7224 | 0.3238 | 2.630667 | 2.703214 |
2459534 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.002991 | 0.639474 | 0.148573 | 0.514882 | 4.060524 | 0.468517 | 10.319687 | 4.777178 | 0.7069 | 0.7396 | 0.3380 | 5.757262 | 6.882179 |
2459533 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 11.647243 | 4.730428 | 10.158922 | 11.007084 | 18.024863 | 10.290646 | 1.064104 | -1.792317 | 0.6391 | 0.7023 | 0.3768 | 2.481108 | 2.654679 |
2459532 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 21.505001 | 5.009545 | 12.439729 | 13.860346 | 13.836571 | 18.075972 | 4.044963 | 9.358922 | 0.6010 | 0.6838 | 0.3591 | 2.713705 | 2.895107 |
2459530 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 11.370618 | 0.364275 | -0.223931 | 0.456289 | -0.133140 | -0.607009 | 1.731384 | 0.569669 | 0.6295 | 0.7168 | 0.3648 | 2.495552 | 2.892967 |
2459527 | dish_ok | 0.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459524 | dish_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 |
2459523 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459522 | dish_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 |
2459513 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 4.591684 | 4.383989 | 6.157273 | 5.908497 | 5.093518 | 2.556962 | 0.574233 | -0.287464 | 0.0344 | 0.0319 | 0.0012 | nan | nan |
2459508 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.564978 | 6.745424 | 8.995634 | 8.807025 | 16.400865 | 7.344586 | 9.143749 | 10.110728 | 0.8708 | 0.9118 | 0.2367 | 0.000000 | 0.000000 |
2459505 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 22.417677 | 4.957892 | 10.209276 | 10.513091 | 4.589736 | 5.725806 | 3.465372 | 13.274056 | 0.8054 | 0.8413 | 0.1733 | 6.263296 | 6.917073 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 161.357668 | 22.474157 | 35.032931 | 1.444928 | 2.457787 | 50.723437 | 24.491240 | 161.357668 | 48.246853 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 9425.737929 | 9.152224 | 10.421878 | 103.958295 | 112.502221 | 2099.744246 | 2307.327735 | 7088.571167 | 9425.737929 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 102.477094 | 7.577729 | 32.658302 | 0.551332 | 2.504518 | 19.074982 | 10.194623 | 102.477094 | 57.855919 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 148.911634 | 45.144935 | 7.077022 | 3.014861 | 2.605178 | 14.774503 | 19.320443 | 85.063275 | 148.911634 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 138.433439 | 26.975831 | 21.836734 | 3.146225 | 2.344758 | 7.376561 | 10.116015 | 32.141522 | 138.433439 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 29.959082 | 28.458753 | 29.959082 | 2.688342 | 2.731551 | 8.378470 | 8.942274 | 9.018700 | 8.340695 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 37.026936 | 37.026936 | 36.317526 | 3.608410 | 3.772469 | 9.021413 | 8.895098 | 36.810192 | 35.780674 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 38.155715 | 34.769691 | 36.080720 | 2.388069 | 2.555744 | 10.946152 | 11.182892 | 38.155715 | 33.185357 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 38.536921 | 29.139279 | 32.636795 | 2.398700 | 2.669828 | 12.225125 | 12.557414 | 38.536921 | 35.405381 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 41.176994 | 31.768228 | 31.834233 | 2.425059 | 2.258330 | 8.003661 | 8.933147 | 41.176994 | 41.004247 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 167.120394 | 12.821821 | 40.049298 | 1.707330 | 2.658495 | 24.024939 | 17.669465 | 167.120394 | 42.286333 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 51.200176 | 29.860404 | 33.963796 | 2.329945 | 7.727515 | 6.562776 | 7.003971 | 30.305351 | 51.200176 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 64.624606 | 29.727377 | 25.805787 | 7.158097 | 2.344962 | 8.677666 | 8.142690 | 64.624606 | 36.792452 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 76.926352 | 26.603167 | 31.145511 | 3.299577 | 9.887336 | 7.059029 | 7.282545 | 43.925719 | 76.926352 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 92.364896 | 24.043496 | 33.287701 | 5.190063 | 2.692302 | 17.168599 | 7.592424 | 92.364896 | 43.379229 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 519.680334 | 31.865396 | 18.912641 | 2.623787 | 4.588721 | 10.020674 | 14.086180 | 137.956789 | 519.680334 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 63.688163 | 23.054980 | 25.447482 | 2.034601 | 7.499256 | 8.583121 | 9.973193 | 32.822656 | 63.688163 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 69.236581 | 41.449733 | 8.331389 | 2.851804 | 0.345712 | 11.880963 | 19.710706 | 33.313909 | 69.236581 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 104.830762 | 27.012069 | 26.510668 | 3.362040 | 7.849042 | 11.989893 | 19.264086 | 24.279999 | 104.830762 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 119.182392 | 8.124520 | 46.747724 | 1.347410 | 3.576367 | 22.081389 | 15.215174 | 119.182392 | 42.608415 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 83.074814 | 43.793927 | 37.060258 | 3.946862 | 2.978067 | 12.941567 | 12.765160 | 83.074814 | 78.012932 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 39.559356 | 39.559356 | 32.811139 | 4.164434 | 3.144783 | 15.114589 | 13.847343 | 37.416895 | 32.313430 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Power | inf | 15.207210 | 15.703898 | inf | inf | 2728.304390 | 2455.520360 | 15387.337725 | 11488.912741 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 94.277355 | 41.150197 | 36.603012 | 3.556101 | 3.074559 | 16.316046 | 17.368001 | 94.277355 | 52.761276 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 37.096567 | -0.068214 | 37.096567 | 8.196180 | 5.964404 | 4.997022 | 12.017030 | 10.459191 | 10.139265 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 139.476744 | 36.904083 | 6.248000 | 3.987567 | 4.223254 | 17.594046 | 24.739349 | 34.580347 | 139.476744 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 64.415787 | 37.614798 | 30.766526 | 2.404035 | 1.511936 | 11.392458 | 8.192020 | 64.415787 | 52.763910 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 55.878405 | 37.778014 | 31.418064 | 1.548546 | 0.857251 | 8.537696 | 5.315035 | 55.878405 | 45.794083 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 47.482253 | 9.144815 | 9.379213 | 2.081702 | 1.859568 | 15.760966 | 15.959597 | 46.331245 | 47.482253 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 147.980810 | 24.376855 | 25.830850 | 2.115540 | 2.473860 | 13.037668 | 10.506739 | 147.980810 | 119.658255 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 151.921114 | 36.234760 | 35.020154 | 1.939905 | 1.035645 | 46.046589 | 12.888073 | 151.921114 | 47.559084 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 31.702020 | 31.702020 | 29.787886 | 5.204094 | 7.053998 | 0.622746 | 0.966041 | 1.138247 | 4.261315 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 22.536760 | 18.254866 | 18.707492 | 2.571245 | 2.251254 | -0.117334 | 2.007710 | 7.792841 | 22.536760 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 104.006654 | 12.493343 | 21.598707 | 1.407885 | 2.646340 | 2.096567 | 0.403814 | 104.006654 | 19.982526 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 29.366602 | 29.366602 | 27.437022 | 3.611552 | 4.848338 | 0.571129 | 0.934602 | 11.326955 | 7.312233 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 32.309386 | 32.309386 | 28.079654 | 4.430010 | 5.196383 | 0.940633 | 2.191818 | 1.562925 | 2.662972 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 33.786151 | 29.816097 | 33.786151 | 5.838589 | 4.765097 | 1.122481 | 0.871919 | 3.886001 | 1.336226 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 23.289740 | 21.415203 | 23.289740 | 2.670264 | 2.363251 | 0.283731 | 0.438666 | 2.662878 | 1.082937 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 127.401502 | 8.327710 | 22.587259 | 0.797907 | 2.657997 | 16.249785 | 1.695134 | 127.401502 | 22.989729 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 40.579468 | 40.579468 | 38.151019 | 5.972799 | 7.514697 | 1.738654 | 5.527130 | 1.469308 | 3.470394 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 27.865502 | 27.865502 | 24.334403 | 3.875645 | 2.667170 | 2.017324 | 2.960136 | 1.398559 | 0.767415 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 38.475979 | -0.782822 | 38.475979 | -0.695560 | 5.378851 | 4.574310 | 5.397532 | 16.482017 | 26.531593 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 46.460585 | 39.984694 | 0.026460 | 5.508118 | -0.393967 | 15.267176 | 11.949256 | 46.460585 | 28.538677 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 7.447051 | 7.447051 | 0.326305 | -0.422887 | 0.442148 | -0.054368 | 0.181344 | -0.730660 | -1.476028 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 28.677380 | 28.677380 | -0.568895 | 3.043009 | -0.548947 | 4.260552 | 3.248476 | 14.576380 | 9.332254 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Shape | 21.236499 | -0.276660 | 21.236499 | -0.735444 | 2.908793 | -0.523668 | 0.447697 | 5.159369 | 9.596774 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 26.598247 | 23.356471 | 26.446469 | 0.967914 | 1.619460 | 4.824640 | 9.975363 | 19.915774 | 26.598247 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 31.667011 | 19.076293 | 21.468729 | 0.615383 | 1.425494 | 4.674198 | 7.858039 | 29.656986 | 31.667011 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 28.523889 | 28.523889 | 26.556039 | 1.801873 | 1.037787 | 9.860303 | 4.401092 | 15.268915 | 12.307192 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 34.988717 | 29.923979 | 34.988717 | 3.107242 | 4.242851 | 6.535279 | 21.022089 | 4.532163 | 10.203092 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 217.404998 | 37.546014 | 19.492583 | 3.182827 | 1.171389 | 4.533510 | 9.484262 | 41.247781 | 217.404998 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 39.341889 | 24.967441 | 29.260286 | 0.898045 | 1.905341 | 3.477931 | 8.650060 | 17.616808 | 39.341889 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 39.817020 | 25.226149 | 10.518532 | 1.321728 | 0.104903 | 7.711701 | 39.817020 | 16.559586 | 24.703645 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 853.521957 | 0.555742 | -0.064290 | 0.994733 | 0.192279 | 714.101165 | 853.521957 | 603.155974 | 713.048081 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | Not Found | ee Temporal Discontinuties | 11.713885 | 1.865535 | 1.534440 | 1.148265 | 1.050638 | 3.306547 | 4.202138 | 10.995910 | 11.713885 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 158.923330 | 24.116311 | 22.757383 | 1.395231 | 0.789818 | 12.993631 | 4.670038 | 158.923330 | 38.626533 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 16.218110 | 1.816479 | 0.607684 | 0.449462 | -0.349402 | 1.886981 | 2.049674 | 16.218110 | 9.349620 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 34.688552 | 30.326562 | 34.688552 | 5.273502 | 6.675475 | 4.740120 | 4.599340 | 25.424804 | 28.001051 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 5.000010 | 1.726235 | 1.136210 | 0.230409 | -0.341413 | 2.765666 | 1.488663 | 5.000010 | 4.888965 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 1406.358999 | 0.876825 | 1.378419 | 1.541844 | 2.334874 | 1406.358999 | 1167.259779 | 565.510766 | 475.244565 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 10.202987 | 1.596800 | 0.365906 | 1.115898 | -0.474596 | 5.224710 | 3.272787 | 10.202987 | 10.097801 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 35.795750 | 29.018938 | 35.795750 | 3.800328 | 6.011719 | 8.215815 | 16.231345 | 21.432252 | 28.164394 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 21.377878 | 21.377878 | 19.011474 | 1.897343 | 1.060012 | 0.794267 | 0.658950 | 10.935776 | 9.535940 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 537.715270 | -0.282971 | 0.566028 | 0.333494 | 1.189522 | 537.715270 | 439.381128 | 465.531692 | 385.138677 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 498.482921 | -0.105936 | 0.478307 | 0.526765 | 1.241327 | 191.511989 | 156.948639 | 498.482921 | 414.150679 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 596.513067 | -0.156065 | 0.804093 | 0.446583 | 1.537159 | 302.101367 | 246.458683 | 596.513067 | 492.966748 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 79.623281 | 6.622030 | 38.292968 | -0.268490 | 3.093633 | 43.088625 | 12.036109 | 79.623281 | 29.949889 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 520.221833 | 0.285186 | -0.221172 | 1.210216 | 0.508285 | 213.994112 | 259.029568 | 435.449121 | 520.221833 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 3.360966 | -0.065650 | 0.142429 | -0.461473 | 0.227066 | 1.313975 | 1.987547 | 3.360966 | 3.245202 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 592.216118 | -0.396664 | -0.187393 | 0.100879 | 0.562798 | 502.014428 | 410.952173 | 592.216118 | 491.286665 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Variability | 28268.448895 | 19.626885 | 21.158765 | 29.679617 | 30.907979 | 26909.244620 | 28268.448895 | 24440.827774 | 25914.686290 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 379.254364 | -0.455008 | -0.130783 | -0.011196 | 0.717542 | 200.364109 | 171.563117 | 379.254364 | 326.821850 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 50.236845 | 41.326878 | 29.468723 | 4.040885 | 2.555924 | 4.161228 | 12.468620 | 28.462307 | 50.236845 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 868.093277 | -0.186942 | -0.388540 | 0.947086 | 0.308593 | 710.484645 | 868.093277 | 208.013531 | 248.751738 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 933.434509 | -0.424201 | -0.040837 | 0.141973 | 0.823006 | 933.434509 | 759.742645 | 433.620358 | 358.367310 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Variability | 11.518573 | 0.770069 | 0.177537 | 0.672057 | -0.417349 | 11.513789 | 11.518573 | 9.834189 | 9.747729 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 10.311385 | 0.846450 | 0.187402 | 0.299314 | -0.487761 | 4.060833 | 3.350920 | 9.931765 | 10.311385 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 14.071849 | 0.382965 | -0.036463 | 0.670582 | -0.016175 | 2.797540 | 4.005254 | 13.746901 | 14.071849 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 37.689031 | 32.320866 | 37.689031 | 3.928804 | 5.552649 | 4.232566 | 2.755392 | 2.858533 | 4.957017 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Temporal Discontinuties | 11.214656 | 0.149573 | 0.727562 | 0.028493 | 0.769261 | 3.781944 | 4.077110 | 11.214656 | 10.962760 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | nn Shape | 33.565126 | 33.565126 | 28.115441 | 8.488637 | 7.013137 | 2.517858 | 2.198273 | 4.518469 | 5.237157 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Discontinuties | 3.429047 | 0.374225 | 0.286540 | -0.194929 | 0.097294 | 2.678240 | 2.242988 | 3.327217 | 3.429047 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | RF_maintenance | ee Temporal Variability | 5.518876 | 0.520769 | 0.509734 | 0.121922 | 0.344752 | 3.150640 | 5.518876 | 5.208924 | 5.202796 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | nn Shape | 33.971658 | 29.241998 | 33.971658 | 4.016882 | 5.957657 | 4.260588 | 2.799441 | 6.954778 | 6.271357 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | ee Temporal Discontinuties | 5.655886 | 0.597816 | 0.558624 | -0.977697 | -1.075415 | -1.648773 | -1.607015 | 5.624311 | 5.655886 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | ee Temporal Discontinuties | 4.397530 | 0.496096 | 0.454620 | 0.118802 | 0.250976 | 2.128237 | 3.218893 | 4.263956 | 4.397530 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | ee Temporal Discontinuties | 12.258208 | 0.357429 | 1.013885 | -0.372436 | 0.512393 | 3.378312 | 3.601626 | 12.243328 | 12.258208 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | ee Temporal Variability | 23.911333 | 0.382511 | 1.251936 | -0.181895 | 1.107080 | 16.809913 | 23.911333 | 3.602278 | 3.215750 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | nn Shape | 39.161349 | 31.423105 | 39.161349 | 2.089854 | 3.284098 | 2.398594 | 2.921507 | 2.746604 | 4.000089 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | nn Shape | 38.407248 | 38.407248 | 31.322909 | 1.777273 | 0.939720 | 3.317568 | 3.351222 | 1.545211 | 0.936509 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | ee Temporal Discontinuties | 12225.783968 | 3234.890126 | 3234.890126 | 3020.395080 | 3020.395080 | 2429.202002 | 2429.202002 | 12225.783968 | 12225.783968 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | nn Temporal Discontinuties | 2890.385656 | 793.819244 | 793.819244 | 715.796331 | 715.796331 | 727.655605 | 727.655605 | 2890.385656 | 2890.385656 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | N02 | dish_ok | nn Shape | 35.665046 | 35.665046 | 30.768735 | 3.082365 | 2.094183 | 1.672653 | 2.831441 | 7.375121 | 7.719977 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | 2 | dish_ok | ee Shape | 32.929298 | 32.929298 | 32.724279 | 4.646366 | 5.836280 | 8.815195 | 6.067160 | 4.874808 | 7.766201 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | 2 | dish_ok | nn Shape | 25.114425 | 24.451289 | 25.114425 | 2.729954 | 3.980734 | 3.669394 | 2.815434 | 2.259255 | 3.802035 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | 2 | dish_ok | nn Shape | 39.023385 | 32.471809 | 39.023385 | 7.246103 | 10.870326 | 10.392246 | 2.972952 | 7.155186 | 5.618213 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | 2 | dish_ok | nn Shape | 40.334896 | 34.889008 | 40.334896 | 8.584596 | 11.662606 | 11.112592 | 3.641810 | 10.828646 | 7.232344 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
32 | 2 | dish_ok | nn Shape | 40.348333 | 33.525048 | 40.348333 | 6.608171 | 8.438688 | 2.134200 | 3.617462 | 4.230108 | 2.325630 |