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 = "19" 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 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459809 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459808 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.796159 | -0.571574 | -0.204247 | -0.355774 | -0.753571 | -0.371907 | 1.121853 | 3.757004 | 0.7753 | 0.7086 | 0.4863 | 2.287582 | 2.324799 |
2459807 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.903471 | -0.562855 | -0.873984 | -0.543022 | -0.752435 | -0.513164 | 2.857392 | 3.271961 | 0.7721 | 0.7116 | 0.4749 | 2.628385 | 2.482712 |
2459806 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.709125 | 4.873522 | -1.188476 | 10.510794 | 3.448086 | 99.296561 | 13.697214 | 3.353945 | 0.7369 | 0.6460 | 0.4178 | 4.051514 | 5.059247 |
2459805 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.738018 | 4.055681 | 1.689047 | 9.282011 | 1.131714 | 13.261571 | 3.599053 | 0.214962 | 0.7687 | 0.7191 | 0.4628 | 5.169051 | 4.526702 |
2459804 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.303265 | 0.899534 | -0.064617 | 3.480201 | 0.417130 | 5.226520 | 2.810217 | 3.282203 | 0.7645 | 0.7244 | 0.4492 | 5.202565 | 4.820017 |
2459803 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.624453 | -0.453558 | 0.552563 | 0.772853 | -0.688547 | 1.015205 | 16.349697 | 24.533315 | 0.7606 | 0.7314 | 0.4514 | 6.520515 | 5.664593 |
2459802 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.544208 | -0.772106 | 0.244161 | 0.880757 | -0.906920 | 1.911422 | 11.526018 | 17.268259 | 0.7686 | 0.6324 | 0.4957 | 3.922761 | 3.948541 |
2459801 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.384250 | 1.243745 | 0.226609 | 4.676337 | -0.499158 | 4.091971 | 20.345747 | 32.622877 | 0.7860 | 0.7265 | 0.4660 | 4.939342 | 5.116114 |
2459800 | digital_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 |
2459799 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.837914 | 9.329608 | 3.883758 | 17.811658 | 3.517826 | 31.366062 | 0.065934 | -2.029932 | 0.7423 | 0.6413 | 0.4187 | 4.669788 | 5.824216 |
2459798 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.502203 | -0.773533 | -0.201979 | 0.564913 | -0.706788 | 0.626370 | 3.506775 | 10.448001 | 0.7223 | 0.7009 | 0.4300 | 5.572115 | 4.850475 |
2459797 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.180134 | -0.532985 | -0.157210 | 0.026166 | -0.210377 | 0.293617 | 2.089898 | 27.905769 | 0.7254 | 0.7072 | 0.4200 | 4.705424 | 4.726321 |
2459796 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.564486 | 1.106594 | -0.474887 | 3.541622 | -0.300980 | 7.333177 | 8.789185 | 16.593652 | 0.7115 | 0.6900 | 0.4058 | 101.372320 | 89.165236 |
2459795 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.302859 | 0.782966 | 0.286465 | 11.128159 | -0.152245 | 43.975739 | 9.533094 | 39.997226 | 0.7030 | 0.6815 | 0.4022 | 34.754378 | 25.428241 |
2459794 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.458152 | -0.970153 | 5.148398 | 0.000336 | 3.325529 | 0.679283 | 8.494382 | 1.275046 | 0.6979 | 0.6781 | 0.4074 | 90.415451 | 56.374833 |
2459793 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.583905 | -0.546033 | 9.364530 | 0.934567 | 9.745491 | 1.683272 | -1.097482 | 1.837243 | 0.6861 | 0.6808 | 0.4024 | 11.802440 | 14.905283 |
2459792 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.784475 | -1.339353 | 7.826956 | 2.220361 | 5.808643 | 1.728483 | -0.163160 | 1.109832 | 0.7429 | 0.6423 | 0.4119 | 4.292827 | 4.254399 |
2459791 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.561556 | 0.577291 | 10.195517 | 3.970106 | 9.189475 | 4.867239 | 0.165062 | 0.439097 | 0.6781 | 0.6693 | 0.3922 | 6.031036 | 6.822518 |
2459790 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.312050 | 9.613432 | 9.371180 | 11.541786 | 9.677225 | 5.354811 | 3.188264 | 1.506773 | 0.6723 | 0.6662 | 0.3994 | 4.019016 | 4.638637 |
2459789 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 19.623543 | 12.310337 | 23.611009 | 17.335995 | 34.665338 | 22.764929 | 3.125814 | 12.672766 | 0.6223 | 0.6280 | 0.3885 | 10.986865 | 13.264421 |
2459788 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 18.272057 | 15.973536 | 26.105263 | 24.145986 | 39.702463 | 36.343493 | 1.287541 | 1.050315 | 0.6301 | 0.6358 | 0.3731 | 8.188425 | 9.726004 |
2459787 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 17.733736 | 7.500274 | 21.638509 | 13.353191 | 25.768173 | 17.829850 | 6.032260 | 18.050542 | 0.6124 | 0.6302 | 0.3836 | 6.175977 | 8.321625 |
2459786 | digital_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 |
2459785 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.721949 | 0.429424 | 2.881267 | 11.443843 | -0.272925 | 28.406802 | -0.197130 | 3.755655 | 0.7405 | 0.6325 | 0.4172 | 4.983382 | 5.153476 |
2459784 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.829487 | 4.090160 | 1.939402 | 11.267403 | 0.982828 | 48.196814 | -0.753999 | 3.401276 | 0.5814 | 0.5725 | 0.3528 | 24.485404 | 25.977574 |
2459783 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.528437 | -1.059555 | 0.454491 | 0.516139 | 0.655305 | 1.803767 | -0.667481 | 28.226631 | 0.5831 | 0.5739 | 0.3317 | 5.030275 | 4.922959 |
2459782 | digital_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 |
2459781 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.133890 | -0.570969 | -1.007275 | -0.148791 | -0.638423 | 0.239009 | -0.511939 | 0.330041 | 0.7389 | 0.6852 | 0.3515 | 1.844071 | 1.964551 |
2459778 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.312819 | -1.408504 | 0.321424 | -0.476979 | -0.994329 | 1.260627 | 0.126228 | 3.650314 | 0.7254 | 0.6263 | 0.4043 | 1.664754 | 1.671610 |
2459776 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.41% | 0.00% | -0.810721 | -1.854377 | -0.080693 | -1.050446 | 0.815684 | 3.160187 | 0.476642 | 0.620635 | 0.7530 | 0.6299 | 0.4180 | 1.618434 | 1.555541 |
2459774 | digital_ok | - | 0.52% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.7249 | 0.6207 | 0.3998 | nan | nan |
2459773 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459772 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.917682 | 0.671639 | -0.228775 | 1.203081 | -0.974375 | 1.277351 | -1.191285 | -1.704338 | 0.5049 | 0.4836 | 0.2818 | 1.469096 | 1.555149 |
2459771 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 1.07% | -1.037528 | 0.484629 | -0.434383 | 1.042742 | -0.910085 | 0.039780 | -1.035021 | -1.757819 | 0.7292 | 0.6208 | 0.4025 | 1.858182 | 1.858661 |
2459770 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459769 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.899447 | 3.099310 | -0.426419 | 6.514858 | -0.639580 | 5.949606 | 3.927254 | -1.223781 | 0.5122 | 0.4977 | 0.3062 | 2.628591 | 2.587910 |
2459768 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.584906 | 3.117469 | -0.378040 | 7.088674 | -0.927230 | 2.174900 | 9.273679 | -2.127917 | 0.5170 | 0.5047 | 0.3086 | 2.605317 | 2.727742 |
2459767 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.190322 | 1.012822 | -0.363306 | 1.406075 | -1.041856 | 0.416020 | -0.995162 | -1.563088 | 0.5527 | 0.5335 | 0.2958 | 1.503784 | 1.608791 |
2459766 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.289705 | 0.737690 | -0.657861 | 1.082020 | -1.638392 | 0.454556 | -0.981377 | -1.788924 | 0.5208 | 0.5052 | 0.3040 | 1.486527 | 1.576731 |
2459765 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.783467 | 4.458861 | 1.023331 | 9.724296 | -1.172516 | 6.763634 | 6.013337 | -1.819937 | 0.5364 | 0.5201 | 0.3150 | 3.825571 | 4.221848 |
2459764 | digital_ok | - | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459763 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.564228 | 0.163946 | 0.144764 | 0.084137 | 1.657039 | 85.610625 | 7.053334 | 51.971660 | 0.7486 | 0.6755 | 0.4525 | 3.617891 | 3.660399 |
2459761 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.109328 | -0.677544 | -0.128219 | 0.440813 | -0.401622 | 54.385880 | 14.039661 | 17.735007 | 0.5693 | 0.5601 | 0.3322 | 3.168886 | 3.489036 |
2459760 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.692424 | 0.414419 | -0.873990 | 3.317660 | 1.807201 | 111.904802 | 32.495656 | 36.477678 | 0.5770 | 0.5725 | 0.3382 | 3.371216 | 4.215736 |
2459759 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.887752 | 3.178641 | 1.042208 | 3.897089 | 0.612855 | 3.234095 | 2.326572 | 12.960852 | 0.0645 | 0.0374 | 0.0121 | 1.174813 | 1.186266 |
2459758 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.601402 | 4.097352 | 0.969232 | 11.969372 | -0.390491 | 6.640643 | -1.079513 | 19.867534 | 0.0871 | 0.0555 | 0.0079 | 1.171295 | 1.173372 |
2459757 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459755 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.584287 | 1.611322 | 0.279591 | 2.204185 | -0.363484 | -0.135457 | -1.409943 | -2.201425 | 0.0772 | 0.0792 | 0.0115 | 1.193729 | 1.185333 |
2459754 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.781155 | 0.789954 | 0.399443 | 1.751279 | -0.093836 | 0.677388 | -1.051195 | -2.071342 | 0.0767 | 0.0848 | 0.0117 | 1.156396 | 1.148224 |
2459753 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.199536 | 1.155569 | 0.500922 | 2.397317 | -0.633457 | 15.240452 | -0.985188 | -2.052565 | 0.0828 | 0.0858 | 0.0123 | 1.241192 | 1.231098 |
2459752 | digital_ok | 100.00% | 51.61% | 51.61% | 0.00% | 100.00% | 0.00% | -0.051334 | 3.114748 | 4.014308 | 9.621191 | 1.578101 | 9.827179 | -0.905082 | -2.389585 | 0.3885 | 0.3771 | 0.2220 | 1.102019 | 1.143033 |
2459750 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459749 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.366196 | 1.245004 | 0.076046 | 2.065949 | 0.679120 | 0.534238 | -1.457191 | -2.544599 | 0.0958 | 0.1036 | 0.0142 | 1.050467 | 1.051091 |
2459748 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.000612 | 0.090704 | -0.839077 | 1.942958 | -0.106651 | 9.790632 | 10.774707 | 22.581828 | 0.6469 | 0.6291 | 0.4129 | 3.709750 | 4.359082 |
2459747 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.748895 | 2.875483 | 0.090062 | 1.566563 | 7.280792 | 19.321280 | 54.468527 | 18.216326 | 0.0344 | 0.0434 | 0.0036 | nan | nan |
2459746 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.654517 | 5.601697 | 0.613134 | 4.214630 | 4.542487 | 59.887842 | 46.351419 | 3.528303 | 0.0356 | 0.0501 | 0.0045 | nan | nan |
2459745 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 21.05% | 0.00% | -1.240908 | 1.096145 | -0.063665 | 1.518994 | -1.123410 | 1.966626 | -1.416180 | -2.362728 | 0.6734 | 0.6479 | 0.4141 | 1.421288 | 1.613081 |
2459744 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.983553 | 3.566603 | -0.838969 | 3.127114 | 32.754894 | 32.860955 | 33.357027 | 35.833803 | 0.0348 | 0.0378 | 0.0026 | nan | nan |
2459743 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.119688 | 3.469446 | -1.047885 | 12.708278 | -1.259677 | 10.432914 | 5.142202 | -0.580686 | 0.7304 | 0.6163 | 0.4156 | 5.672456 | 6.013928 |
2459742 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.419240 | 3.609632 | 1.464353 | 3.160311 | 2.316475 | 18.780642 | 15.062061 | 5.742156 | 0.0357 | 0.0389 | 0.0017 | nan | nan |
2459741 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 4.875705 | 6.256809 | 1.482289 | 5.368769 | 4.048309 | 31.839115 | 19.174858 | 4.636922 | 0.0349 | 0.0390 | 0.0025 | nan | nan |
2459740 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.845901 | 3.066802 | 1.823301 | 4.079419 | 1.259801 | 17.952114 | 18.660910 | 15.512476 | 0.0318 | 0.0324 | 0.0008 | nan | nan |
2459738 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.770694 | 2.403629 | -1.230058 | 11.294423 | -0.349228 | 6.521547 | 7.492527 | -1.164192 | 0.7130 | 0.6857 | 0.4425 | 5.744334 | 6.745294 |
2459736 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 1.62% | -1.100215 | 1.225571 | -0.870691 | 2.584506 | -0.752033 | 1.963626 | 3.190249 | -0.423151 | 0.7394 | 0.6308 | 0.4291 | 1.730947 | 1.846573 |
2459734 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.915557 | 2.892857 | 0.040799 | 2.683427 | 2.741907 | 14.154566 | 30.183589 | 4.876499 | 0.0421 | 0.0387 | 0.0020 | nan | nan |
2459733 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.718766 | 2.794770 | -0.082885 | 2.824977 | 0.436312 | 2.852460 | 32.937839 | 5.005173 | 0.0366 | 0.0385 | 0.0020 | nan | nan |
2459732 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.210731 | 3.518401 | 0.026940 | 2.989897 | 0.740696 | 7.461488 | 25.622309 | 11.197945 | 0.0372 | 0.0371 | 0.0022 | nan | nan |
2459731 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.216227 | 2.306033 | -1.090513 | 7.964650 | 0.715788 | 10.189621 | 11.084512 | 1.692267 | 0.7170 | 0.6947 | 0.4096 | 4.972761 | 6.619939 |
2459730 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.965470 | 2.403731 | 0.011743 | 2.786923 | 1.060644 | 4.945083 | 31.234665 | 3.625297 | 0.0337 | 0.0415 | 0.0031 | nan | nan |
2459728 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.416580 | 1.735587 | -0.173371 | 2.327441 | 1.439415 | 4.698753 | -0.051719 | 1.076134 | 0.0363 | 0.0470 | 0.0030 | nan | nan |
2459726 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.188476 | 1.030175 | -0.337131 | 1.500982 | 0.755827 | 14.914422 | 1.935996 | 8.362182 | 0.0378 | 0.0372 | 0.0022 | nan | nan |
2459724 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.082241 | 1.448051 | -0.265155 | 1.475720 | 1.071926 | 67.723135 | 2.040380 | 7.860847 | 0.0362 | 0.0370 | 0.0020 | nan | nan |
2459723 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.074213 | 2.853481 | -0.051638 | 3.425384 | 1.934351 | 36.739402 | 42.309203 | 1.641292 | 0.0341 | 0.0358 | 0.0016 | nan | nan |
2459722 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.321192 | 6.730445 | 0.887859 | 13.491213 | 10.255483 | 11.541507 | 7.158429 | -2.916780 | 0.7254 | 0.6243 | 0.4406 | 4.383420 | 5.080140 |
2459720 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.884966 | 3.209136 | -0.410590 | 5.750476 | 0.083573 | 11.508944 | -0.402618 | 0.190657 | 0.0338 | 0.0395 | 0.0029 | nan | nan |
2459719 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.839822 | 3.614381 | -0.264329 | 4.951067 | 0.550166 | 9.728374 | -0.226723 | 0.084531 | 0.0314 | 0.0325 | 0.0012 | nan | nan |
2459718 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.053251 | 3.123796 | -0.210341 | 2.264355 | 11.155514 | 9.630777 | 1.965748 | 4.166667 | 0.0371 | 0.0399 | 0.0054 | nan | nan |
2459717 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.254224 | 3.281044 | -0.360728 | 1.876394 | 0.808173 | 53.611375 | 3.045174 | 9.604206 | 0.0359 | 0.0381 | 0.0020 | nan | nan |
2459716 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.034903 | 1.255470 | -0.388268 | 0.570663 | 1.279669 | 5.534121 | 4.522254 | 18.672841 | 0.0375 | 0.0415 | 0.0032 | nan | nan |
2459715 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.274025 | 0.461300 | 1.154534 | 2.178537 | 0.419895 | 2.239681 | 2.828176 | 28.573712 | 0.7022 | 0.6310 | 0.4369 | 4.331752 | 5.359078 |
2459713 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.072947 | 2.879942 | -0.242236 | 1.423021 | 0.031649 | 4.083224 | 3.912218 | 14.602474 | 0.0345 | 0.0393 | 0.0046 | nan | nan |
2459712 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.307085 | 3.083030 | 0.498351 | 7.678216 | -0.200991 | 8.405470 | 0.042444 | 6.335764 | 0.6207 | 0.6148 | 0.3646 | 6.556218 | 7.889555 |
2459711 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.949751 | -0.584180 | -0.761273 | 0.275632 | 1.095390 | 1.744868 | 1.418586 | 3.159837 | 0.0331 | 0.0350 | 0.0031 | nan | nan |
2459710 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.843309 | -1.126629 | -1.011691 | 0.022429 | 1.102542 | 4.730433 | 1.744105 | 2.889855 | 0.0347 | 0.0392 | 0.0040 | nan | nan |
2459708 | dish_ok | 100.00% | 0.00% | 39.94% | 0.00% | 100.00% | 0.00% | -0.792135 | 3.893999 | 1.812332 | 6.363157 | 6.797654 | 112.817187 | 8.435488 | 11.657338 | 0.7032 | 0.4033 | 0.4710 | 4.857994 | 1.604900 |
2459707 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.562711 | 0.252378 | -0.952980 | -0.426039 | -0.626305 | 3.699089 | 4.105286 | 1.008012 | 0.0344 | 0.0351 | 0.0011 | 0.000000 | 0.000000 |
2459706 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459705 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459703 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.400777 | 3.287654 | -0.056467 | 4.877291 | 10.838315 | 14.085076 | 4.361040 | 6.632582 | 0.0328 | 0.0352 | 0.0025 | nan | nan |
2459702 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.505581 | 1.475935 | 0.804689 | 6.928457 | 0.348539 | 9.150101 | 8.941757 | 12.724570 | 0.6442 | 0.6508 | 0.3357 | 5.500583 | 6.646155 |
2459701 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.928743 | 0.810188 | -0.317887 | 11.891593 | 1.002776 | 8.815879 | 5.550073 | 9.367872 | 0.6508 | 0.6500 | 0.3259 | 4.315153 | 5.093197 |
2459697 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3377.632000 | 3377.632000 | 3181.711634 | 3181.711634 | 2492.596332 | 2492.596332 | 12517.801704 | 12517.801704 | 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% | 756.243710 | 756.243710 | 687.553362 | 687.553362 | 720.392702 | 720.392702 | 2859.682456 | 2859.682456 | 1.0000 | 1.0000 | 0.0000 | 0.010086 | 0.010086 |
2459695 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 659.013486 | 659.013486 | 670.338043 | 670.338043 | 587.827720 | 587.827720 | 1878.447851 | 1878.447851 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459694 | 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 |
2459693 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.440612 | 0.356873 | 5.184243 | 5.895711 | 2.946355 | 6.914485 | 6.448184 | 6.638378 | 0.6992 | 0.6914 | 0.2912 | 4.884963 | 6.420616 |
2459692 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.515687 | 2.182817 | 1.903952 | 2.471762 | 0.711145 | 2.432402 | 1.992100 | 3.130422 | 0.7225 | 0.7507 | 0.2328 | 3.929164 | 4.401496 |
2459691 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.315483 | 0.031123 | 1.003694 | 22.948969 | 3.124717 | 24.231139 | 12.968267 | 23.807634 | 0.6065 | 0.6063 | 0.3228 | 5.385621 | 5.895042 |
2459690 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.896544 | 0.138314 | 1.305724 | 15.987118 | 0.872803 | 9.344278 | 18.182076 | 35.397276 | 0.6250 | 0.6273 | 0.3533 | 4.735805 | 5.275374 |
2459689 | dish_ok | 100.00% | - | - | - | - | - | 1.979038 | 0.523229 | 1.687528 | 9.573717 | 1.071863 | 14.611567 | 12.962518 | 7.821314 | nan | nan | nan | nan | nan |
2459688 | dish_ok | 0.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 2.997375 | 3.217690 |
2459687 | dish_ok | 100.00% | 99.46% | 99.46% | 0.00% | - | - | -0.091863 | 0.070107 | -0.803257 | 6.050724 | 0.277606 | 80.607584 | 1.236591 | 6.104412 | 0.1864 | 0.1609 | 0.0670 | nan | nan |
2459686 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.064839 | -1.096347 | -0.208717 | 2.649289 | -0.022809 | 12.442344 | -0.233014 | 0.004465 | 0.6202 | 0.6326 | 0.3491 | 3.439166 | 3.602834 |
2459685 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.349882 | -0.850411 | -0.240597 | 2.811006 | 1.125521 | 14.442871 | -0.144588 | 0.186449 | 0.6258 | 0.6365 | 0.3494 | 5.684405 | 5.317181 |
2459684 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.573134 | -0.665785 | 0.013472 | 4.155135 | 1.070544 | 10.428923 | 1.664176 | 5.965617 | 0.6237 | 0.6369 | 0.3526 | 3.008170 | 3.145288 |
2459676 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.024665 | -0.049168 | 0.468611 | 9.227718 | 1.344696 | 61.874566 | 2.246099 | 8.168614 | 0.6352 | 0.6464 | 0.3560 | 4.790497 | 5.479441 |
2459675 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.617210 | -0.108392 | -0.291438 | 7.347878 | 2.295722 | 143.490593 | 0.493824 | 9.156023 | 0.6394 | 0.6533 | 0.3500 | 4.016119 | 3.867022 |
2459674 | 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 |
2459673 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.041998 | 1.006556 | 0.098988 | 4.988853 | 5.732775 | 16.302145 | 1.486350 | 3.862845 | 0.6587 | 0.6531 | 0.3641 | 0.000000 | 1.844581 |
2459672 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.449004 | -0.488423 | 1.018823 | 4.635668 | 2.186856 | 23.203492 | 0.335869 | 1.223889 | 0.6478 | 0.6570 | 0.3497 | 5.356099 | 5.364377 |
2459671 | dish_ok | 100.00% | 32.97% | 32.97% | 0.00% | 100.00% | 0.00% | 0.132107 | 0.129612 | 0.092358 | 3.980590 | 29.117807 | 53.995682 | 1.149569 | 5.871228 | 0.5019 | 0.4894 | 0.2689 | 5.313408 | 5.760541 |
2459670 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.905430 | 5.050253 | -0.019060 | 4.480632 | 0.741587 | 77.134805 | 1.013381 | 6.428593 | 0.0290 | 0.0286 | 0.0010 | nan | nan |
2459668 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.374299 | 0.207868 | 1.163670 | 3.846694 | 0.639803 | 7.743213 | 0.399529 | 5.709231 | 0.6874 | 0.6805 | 0.3395 | 3.746348 | 4.192473 |
2459665 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.863713 | -0.642625 | -0.062215 | 4.388833 | 1.348938 | 16.485039 | 2.928189 | 7.048982 | 0.6618 | 0.6775 | 0.3561 | 5.802702 | 6.935570 |
2459664 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.201248 | 0.942163 | 0.540363 | 0.955558 | 0.071756 | 2.199602 | 0.001599 | -0.154949 | 0.0278 | 0.0321 | 0.0006 | nan | nan |
2459663 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.536506 | 0.359314 | 3.029749 | 5.752481 | 4.700719 | 13.843168 | -0.135647 | 2.941667 | 0.6394 | 0.6450 | 0.3474 | 6.638152 | 8.682118 |
2459662 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.769137 | 1.013833 | -0.079708 | 0.827216 | 5.010255 | 12.926483 | 0.614894 | 1.039074 | 0.0298 | 0.0312 | 0.0014 | nan | nan |
2459661 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.339756 | 0.677094 | 0.154729 | 5.391286 | 3.631521 | 21.223584 | -0.419824 | 3.779125 | 0.6850 | 0.6778 | 0.3079 | 4.137474 | 4.608789 |
2459660 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.234163 | 1.548079 | 1.187554 | 15.599061 | 2.098598 | 90.148666 | 3.546059 | 6.272253 | 0.6839 | 0.6614 | 0.3193 | 4.864605 | 4.926764 |
2459659 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.966602 | 0.348144 | 2.096055 | 3.828597 | 5.401555 | 15.360526 | 2.681637 | 6.028823 | 0.6317 | 0.6325 | 0.3455 | 3.912064 | 4.029526 |
2459658 | dish_ok | 0.00% | 0.64% | 0.00% | 0.00% | 100.00% | 0.00% | -1.255926 | -0.053354 | 1.398419 | 2.184200 | 1.045096 | 3.365599 | -1.113315 | 2.447745 | 0.6444 | 0.6468 | 0.3397 | 3.374969 | 3.524239 |
2459657 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.254646 | 0.143155 | -0.412613 | 3.418251 | 24.729172 | 5.064847 | 4.504565 | 2.430172 | 0.6594 | 0.6535 | 0.3329 | 4.001643 | 4.170404 |
2459656 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.753588 | 2.086113 | 0.838823 | 16.629099 | 27.059102 | 176.965047 | 31.965933 | 20.592356 | 0.6283 | 0.6038 | 0.3485 | 3.518643 | 3.657116 |
2459655 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.837409 | 14.451505 | -0.168699 | 8.406130 | 3.669394 | 5.669803 | -0.292228 | 5.037230 | 0.0294 | 0.0285 | 0.0025 | nan | nan |
2459653 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.502953 | -0.380910 | 1.895473 | 1.643634 | 3.410862 | 5.579593 | -0.929529 | 0.281965 | 0.6297 | 0.6438 | 0.3482 | 3.438388 | 3.603888 |
2459652 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.387180 | 0.361844 | 2.185650 | 3.712199 | 2.837576 | 5.786244 | -1.125424 | 0.779295 | 0.6245 | 0.6344 | 0.3498 | 4.532556 | 4.849254 |
2459651 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.315644 | -0.402653 | 2.429007 | 3.688876 | 0.200481 | 2.284727 | 1.771784 | 3.839773 | 0.8514 | 0.8627 | 0.1362 | 25.863644 | 36.832249 |
2459650 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.324867 | -0.250664 | 2.192847 | 4.031585 | 1.581803 | 33.426879 | 1.893143 | 5.941213 | 0.7597 | 0.7512 | 0.2660 | 5.695801 | 6.651945 |
2459649 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.286385 | -0.375413 | 2.611288 | 4.511968 | 3.542827 | 36.294030 | 2.639063 | 6.234798 | 0.6679 | 0.6691 | 0.3176 | 3.275666 | 3.719469 |
2459648 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | dish_ok | 0.00% | 81.63% | 81.63% | 0.00% | 100.00% | 0.00% | -0.359659 | -0.359659 | -0.352035 | -0.352035 | 1.043610 | 1.043610 | 1.247813 | 1.247813 | 0.2084 | 0.2084 | 0.0000 | 0.067550 | 0.067550 |
2459646 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.340140 | -0.610252 | 3.256547 | 3.368169 | 1.988398 | 5.833659 | -0.843724 | 2.323977 | 0.6132 | 0.6183 | 0.3305 | 4.090629 | 4.229260 |
2459645 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.036204 | -0.673540 | 3.088179 | 3.481329 | 1.078348 | 7.079547 | 1.230917 | 3.038679 | 0.6823 | 0.7145 | 0.2776 | 6.081987 | 7.412685 |
2459642 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.393563 | 1.741646 | 4.094303 | 53.910550 | 1.843076 | 15.126896 | 0.068557 | 13.978554 | 0.6034 | 0.5640 | 0.3359 | 3.732387 | 3.168960 |
2459641 | dish_ok | - | 55.70% | 55.70% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.4662 | 0.4611 | 0.0031 | nan | nan |
2459640 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.208238 | 0.069064 | 2.741474 | 8.010518 | 1.338706 | 75.703247 | -0.814822 | 3.961434 | 0.6021 | 0.6050 | 0.3259 | 4.147070 | 4.459525 |
2459639 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.231656 | -0.525098 | 2.733578 | 3.410684 | 0.538569 | 5.055996 | -0.653760 | 0.810518 | 0.6074 | 0.6136 | 0.3224 | 3.548958 | 3.634759 |
2459638 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.7086 | 0.7127 | 0.2552 | nan | nan |
2459637 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.394932 | 1.699659 | 1.767059 | 51.761677 | 0.096145 | 13.231291 | 3.329431 | 4.119654 | 0.5951 | 0.5481 | 0.3335 | 3.666713 | 3.115701 |
2459636 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.191355 | -0.476437 | 0.351331 | 9.326367 | 20.713917 | 39.730404 | -0.660541 | 1.291646 | 0.5970 | 0.5978 | 0.3275 | 3.791799 | 3.801634 |
2459635 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.500424 | -0.130836 | 2.166785 | 13.213741 | 11.041960 | 110.554248 | 0.098924 | 4.109060 | 0.6044 | 0.5972 | 0.3261 | 4.512388 | 4.478480 |
2459634 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.450104 | 1.450104 | 1.451870 | 1.451870 | 1.138015 | 1.138015 | 1.130564 | 1.130564 | 1.0000 | 1.0000 | 0.0000 | 0.072167 | 0.072167 |
2459633 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.012815 | 0.835751 | 0.756706 | 27.725318 | -1.132295 | 12.823845 | 2.816877 | 11.617584 | 0.5996 | 0.5951 | 0.3383 | 3.368134 | 3.565606 |
2459632 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.333986 | 0.621039 | 0.449903 | 24.162668 | -1.023246 | 2.092658 | 1.052620 | 6.373275 | 0.6040 | 0.5968 | 0.3384 | 3.764461 | 3.764263 |
2459631 | 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 |
2459630 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.649177 | 1.559133 | 0.159249 | 22.275441 | -0.573850 | 13.773847 | 4.696105 | 9.370379 | 0.6061 | 0.6025 | 0.3325 | 4.047524 | 4.285558 |
2459629 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.190428 | -0.186951 | 0.651260 | 32.643628 | 12.789930 | 207.918385 | 0.910951 | 12.517937 | 0.6262 | 0.5985 | 0.3253 | 4.206386 | 4.068582 |
2459628 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.017196 | 0.826128 | -0.235085 | 36.790282 | 0.186391 | 9.320198 | 2.664815 | 11.243914 | 0.6088 | 0.5808 | 0.3465 | 3.353810 | 3.180078 |
2459627 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.942264 | 1.942264 | 1.951005 | 1.951005 | 2.055961 | 2.055961 | 2.019594 | 2.019594 | 1.0000 | 1.0000 | 0.0000 | 0.074366 | 0.074366 |
2459626 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.166211 | -1.053566 | 3.093027 | 3.027457 | 2.365270 | 8.340804 | -0.627275 | 3.732259 | 0.6286 | 0.6332 | 0.3455 | 3.620837 | 3.873912 |
2459625 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.529575 | 2.994698 | 3.106650 | 50.090402 | 0.722395 | 20.294308 | -0.144154 | 2.858279 | 0.6044 | 0.5262 | 0.3702 | 4.049962 | 3.134383 |
2459624 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.991165 | 0.922199 | 3.444551 | 27.562395 | 0.765279 | 143.887092 | 0.847888 | 21.934125 | 0.6185 | 0.5943 | 0.3398 | 4.944390 | 4.755324 |
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% | -1.263838 | 0.293819 | 5.549497 | 47.270512 | -0.555266 | 4.889984 | 2.126126 | 9.161657 | 0.6292 | 0.6203 | 0.3556 | 5.892414 | 4.423286 |
2459621 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459619 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.814066 | 0.049163 | 2.921220 | 25.606292 | 0.400091 | 8.456837 | 0.810036 | 4.246925 | 0.6305 | 0.6301 | 0.3474 | 0.000000 | 0.000000 |
2459618 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.321064 | -0.666772 | 4.110619 | 21.174416 | 1.043318 | 191.275546 | 0.293594 | 17.684245 | 0.6211 | 0.6100 | 0.3658 | 4.784454 | 4.612865 |
2459617 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.056025 | -0.758299 | 2.872723 | 4.905099 | 17.987353 | 19.334670 | 0.288230 | 3.116801 | 0.6255 | 0.6443 | 0.3580 | 0.000000 | 0.000000 |
2459616 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.374340 | -0.252605 | 4.644939 | 12.013188 | 1.169899 | 15.969416 | 6.427809 | 5.647563 | 0.6370 | 0.6483 | 0.3561 | 5.178038 | 6.093670 |
2459615 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.157596 | -1.115015 | -0.808538 | 3.841947 | 18.502625 | 4.001195 | 2.925569 | 3.213993 | 0.6093 | 0.6235 | 0.3835 | 0.000000 | 0.000000 |
2459614 | 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 |
2459613 | dish_ok | 100.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% | 0.100431 | -0.853485 | 4.053044 | 5.163097 | 4.175388 | 8.450887 | 0.517165 | 1.450321 | 0.3504 | 0.3558 | 0.1757 | 0.000000 | 0.000000 |
2459611 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.067330 | -1.068503 | 2.699203 | 2.818127 | 0.818077 | 3.135234 | -0.598924 | 0.805806 | 0.6434 | 0.6662 | 0.3531 | 3.965150 | 4.218407 |
2459610 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.187214 | -1.281326 | 3.311529 | 3.778400 | 1.560532 | 6.552942 | 1.063982 | 1.786469 | 0.6978 | 0.7152 | 0.3084 | 4.214456 | 4.631319 |
2459609 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.395364 | -1.472406 | 2.980764 | 6.374564 | 0.087668 | 4.350296 | 1.989308 | 4.483738 | 0.6653 | 0.6772 | 0.3178 | 3.697998 | 4.172834 |
2459608 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 315.369227 | 322.675002 | inf | inf | 29.237175 | 58.040150 | 90.377169 | 624.330614 | nan | nan | nan | 0.000000 | 0.000000 |
2459607 | 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 |
2459605 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 1.773256 | -0.593063 | -0.535873 | -1.076361 | 0.902255 | 0.083094 | 2.183754 | 0.387804 | 0.0298 | 0.0284 | 0.0019 | nan | nan |
2459604 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.172396 | -1.148762 | 3.816750 | 4.500274 | 4.119392 | 7.584097 | 0.429239 | 1.746622 | 0.6815 | 0.6875 | 0.3175 | 4.384677 | 4.662209 |
2459603 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.608904 | -0.533981 | 3.902060 | 5.390096 | -0.483228 | 1.896483 | -0.239080 | 0.290410 | 0.7376 | 0.7473 | 0.3144 | 5.214394 | 5.590632 |
2459602 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.882708 | -1.050718 | 5.074475 | 7.483884 | -0.263377 | 6.758444 | 1.215917 | 1.638248 | 0.6595 | 0.6769 | 0.3628 | 3.738231 | 4.113747 |
2459598 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.948904 | -0.880828 | 3.933778 | 5.047718 | 0.053055 | 6.358844 | -0.108377 | 0.834757 | 0.6639 | 0.6701 | 0.3772 | 4.621354 | 4.612013 |
2459597 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 312.862268 | 318.015183 | inf | inf | 25.387878 | 46.742380 | 252.753169 | 786.400844 | nan | nan | nan | 0.000000 | 0.000000 |
2459596 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.118092 | -0.925635 | 3.702036 | 4.832785 | 1.141695 | 3.139879 | -0.445993 | 0.293622 | 0.6712 | 0.6764 | 0.3626 | 4.162380 | 4.341754 |
2459595 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 382.416796 | 393.419272 | inf | inf | 20.053910 | 31.718654 | 46.585573 | 174.682914 | nan | nan | nan | 0.000000 | 0.000000 |
2459594 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 67.721622 | 103.592625 | inf | inf | 18.920874 | 34.148391 | 39.976955 | 110.144699 | nan | nan | nan | 0.000000 | 0.000000 |
2459593 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 262.520800 | 271.373768 | inf | inf | 30.743804 | 79.406348 | 80.780923 | 481.435677 | nan | nan | nan | 0.000000 | 0.000000 |
2459592 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.982020 | 0.375634 | 0.332729 | 3.823894 | 0.797769 | 0.480859 | 2.509628 | 0.188725 | 0.0298 | 0.0285 | 0.0017 | nan | nan |
2459591 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.111303 | 1.097517 | 4.142468 | 29.350792 | 16.431436 | 89.498735 | -0.440888 | 4.031482 | 0.6605 | 0.6690 | 0.3761 | 3.960409 | 4.069401 |
2459590 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.415984 | 0.153352 | 4.186592 | 17.843263 | 0.920496 | 143.180506 | -0.567358 | 10.530364 | 0.6626 | 0.6621 | 0.3781 | 4.489519 | 4.544679 |
2459589 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 332.118013 | 337.041128 | inf | inf | 17.875941 | 57.728355 | 65.262962 | 425.184714 | nan | nan | nan | 0.000000 | 0.000000 |
2459588 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.933473 | 0.065194 | 5.131881 | 45.151265 | 0.381633 | 30.578728 | 1.151537 | 15.858691 | 0.7679 | 0.7528 | 0.2231 | 6.311846 | 6.399707 |
2459587 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | 348.709641 | 356.044851 | inf | inf | 24.905358 | 112.245323 | 183.442610 | 487.771965 | nan | nan | nan | 0.000000 | 0.000000 |
2459586 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.451272 | -0.513724 | -0.284920 | 2.224269 | 2.197941 | 41.926969 | 0.431714 | 5.211788 | 0.6566 | 0.6842 | 0.3700 | 3.435338 | 3.628642 |
2459585 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.412004 | 11.209580 | -1.179974 | 6.060203 | -0.732625 | 5.433214 | 15.676061 | 8.299118 | 0.0321 | 0.0328 | 0.0013 | 0.000000 | 0.000000 |
2459584 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 16.147633 | 21.513087 | 4.494463 | 10.881013 | 10.843293 | 44.004521 | 0.616087 | 1.205296 | 0.6163 | 0.6350 | 0.3752 | 14.276283 | 10.664212 |
2459583 | 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 |
2459582 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.981403 | -0.503100 | 1.596135 | 11.944597 | 0.024176 | 3.016011 | 2.219108 | 5.619514 | 0.6602 | 0.6631 | 0.3903 | 3.686233 | 3.606015 |
2459581 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.407709 | 0.417995 | 2.276998 | 14.857874 | 0.179086 | 19.448531 | -0.484026 | 6.802875 | 0.6540 | 0.6563 | 0.3976 | 3.412632 | 3.387348 |
2459580 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.797858 | -0.417397 | 3.026308 | 13.527920 | 1.504196 | 1.957111 | -0.030146 | 3.910472 | 0.6671 | 0.6733 | 0.3844 | 4.083413 | 3.945626 |
2459579 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.289187 | -0.197813 | 3.636671 | 16.554015 | 0.966702 | 8.245528 | -0.721368 | 10.918521 | 0.6653 | 0.6705 | 0.3843 | 3.803483 | 3.817729 |
2459578 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.309812 | 0.449246 | 0.144303 | 0.967132 | 1.413052 | 1.375580 | 0.145553 | 2.618318 | 0.0296 | 0.0286 | 0.0022 | nan | nan |
2459577 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.325793 | -0.400435 | 2.237218 | 11.397636 | 1.669229 | 149.906625 | -0.886116 | 6.482885 | 0.6684 | 0.6633 | 0.3890 | 3.425707 | 3.179261 |
2459576 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.478032 | -0.825329 | 1.651816 | 0.302045 | 1.018440 | 2.188270 | -0.886544 | 0.631461 | 0.6775 | 0.6990 | 0.3878 | 3.239918 | 3.145369 |
2459575 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.136007 | -0.228522 | 1.607942 | 4.527122 | 0.403180 | 84.562667 | 1.364809 | 5.073887 | 0.7375 | 0.7267 | 0.3478 | 0.000000 | 0.000000 |
2459574 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.145149 | -0.907613 | 1.432154 | 0.227833 | 1.005002 | 2.403524 | -1.149205 | -0.196369 | 0.6930 | 0.7037 | 0.3762 | 3.522284 | 3.348098 |
2459573 | 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 |
2459572 | 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 |
2459571 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.530427 | -0.488486 | 0.290830 | -0.807576 | 1.666435 | 3.530026 | -0.374042 | 0.012970 | 0.0299 | 0.0293 | 0.0013 | nan | nan |
2459570 | 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 |
2459569 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.658996 | -1.069366 | 1.786692 | 0.807970 | 1.596942 | 11.545551 | 1.030790 | 1.559348 | 0.7447 | 0.7536 | 0.2589 | 3.891350 | 3.808935 |
2459566 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.585783 | -0.012950 | 2.151993 | 17.291172 | -0.160078 | 4.599653 | 0.722468 | 1.837994 | 0.6784 | 0.6557 | 0.4114 | 0.000000 | 0.000000 |
2459565 | dish_ok | 0.00% | - | - | - | 100.00% | 0.00% | 1.633766 | 1.633766 | 1.509412 | 1.509412 | 0.566250 | 0.566250 | 0.074197 | 0.074197 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.315601 | -1.467773 | 2.832133 | -2.950098 | -0.244328 | 21.221153 | -1.590678 | 1.061668 | 0.6863 | 0.7075 | 0.3964 | 2.447025 | 2.478521 |
2459563 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.223559 | 0.433345 | 23.691984 | 2.521617 | 12.169485 | 53.669280 | -1.298257 | 5.393947 | 0.6635 | 0.6813 | 0.4062 | 0.000000 | 0.000000 |
2459562 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.251841 | -1.509285 | 0.959890 | -0.363679 | -0.447605 | 40.481880 | -1.328146 | 2.567413 | 0.6763 | 0.6965 | 0.3941 | 3.011485 | 2.858922 |
2459561 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.824892 | -0.953888 | 1.489140 | -1.048866 | -0.204782 | 24.961805 | -1.769389 | 1.799729 | 0.6780 | 0.7000 | 0.3918 | 3.434996 | 3.108372 |
2459560 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.286838 | 0.185015 | 1.086068 | 1.030497 | 0.020698 | 2.186257 | -1.615816 | 2.643912 | 0.6735 | 0.6927 | 0.4033 | 3.527249 | 3.311671 |
2459559 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.885629 | 0.056773 | 1.656809 | 1.254368 | 0.214181 | 13.000755 | -1.325073 | 3.219961 | 0.6811 | 0.7045 | 0.3937 | 2.489037 | 2.546709 |
2459558 | 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 |
2459557 | dish_ok | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0313 | 0.0332 | 0.0043 | nan | nan |
2459556 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.747283 | 5.350164 | 13.386120 | 10.469906 | 12.476239 | 9.713508 | -1.662205 | -2.063613 | 0.6903 | 0.6998 | 0.3853 | 2.688756 | 2.746247 |
2459554 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6754 | 0.6865 | 0.4033 | nan | nan |
2459553 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6828 | 0.6932 | 0.4002 | nan | nan |
2459552 | 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 |
2459551 | 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 |
2459550 | dish_ok | - | 96.71% | 96.71% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0520 | 0.0527 | 0.0021 | nan | nan |
2459549 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.872733 | 0.725038 | 12.910787 | 5.683711 | 13.154919 | 3.366289 | -1.980669 | 13.439047 | 0.6767 | 0.6975 | 0.4110 | 2.379847 | 2.485614 |
2459542 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.032858 | 2.315448 | 24.260748 | 14.823731 | 0.436323 | 2.961208 | -1.007574 | -0.105435 | 0.7451 | 0.7494 | 0.3600 | 2.802639 | 2.636138 |
2459541 | 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 |
2459540 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.989984 | 0.865887 | 2.885868 | 0.995568 | 1.055307 | 3.569758 | -0.811150 | -0.708748 | 0.7364 | 0.7332 | 0.3600 | 2.932158 | 2.879559 |
2459536 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 8.138654 | 6.761386 | 20.033612 | 16.425773 | 12.191855 | 32.639421 | -1.891386 | -2.198580 | 0.7164 | 0.7294 | 0.4167 | 3.263109 | 3.198656 |
2459535 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.398204 | -0.700842 | 1.757558 | -1.741593 | -0.134546 | -0.354255 | -0.303870 | 0.748600 | 0.7752 | 0.7608 | 0.3745 | 2.744450 | 2.706118 |
2459534 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.563491 | -0.849566 | 0.802494 | -2.085491 | -1.005603 | -0.903528 | -0.618520 | 0.866825 | 0.7690 | 0.7628 | 0.3629 | 4.010082 | 4.629661 |
2459533 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.344962 | 0.645935 | 11.894726 | 3.463798 | 9.358072 | 2.057735 | 0.361381 | 2.331344 | 0.7114 | 0.7232 | 0.4011 | 2.820673 | 2.867390 |
2459532 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.434880 | 0.865132 | 15.649765 | 4.425942 | 12.524920 | 3.291244 | -0.381051 | 0.986772 | 0.7094 | 0.7195 | 0.4018 | 3.043984 | 3.157419 |
2459530 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.735898 | -1.201534 | 0.766031 | -2.146898 | -0.659601 | 3.020757 | -0.852045 | 0.664009 | 0.7313 | 0.7385 | 0.3952 | 2.738794 | 2.760618 |
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% | - | - | 3.810262 | 1.445502 | 6.750754 | 1.032925 | 17.012394 | 21.548150 | 86.065938 | 5.425638 | 0.0332 | 0.0295 | 0.0013 | nan | nan |
2459508 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.483193 | 3.107443 | 10.711739 | 4.640511 | 11.267677 | 3.403443 | 9.698927 | 5.266907 | 0.8783 | 0.9138 | 0.2661 | 0.000000 | 0.000000 |
2459505 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.656246 | 1.820146 | 14.238839 | 6.692194 | 3.717347 | 8.732435 | -0.984270 | 1.648838 | 0.8815 | 0.8520 | 0.2099 | 7.369255 | 10.034609 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Shape | nan | nan | nan | nan | nan | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 3.757004 | -0.571574 | -0.796159 | -0.355774 | -0.204247 | -0.371907 | -0.753571 | 3.757004 | 1.121853 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 3.271961 | -0.562855 | -0.903471 | -0.543022 | -0.873984 | -0.513164 | -0.752435 | 3.271961 | 2.857392 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 99.296561 | -0.709125 | 4.873522 | -1.188476 | 10.510794 | 3.448086 | 99.296561 | 13.697214 | 3.353945 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 13.261571 | -0.738018 | 4.055681 | 1.689047 | 9.282011 | 1.131714 | 13.261571 | 3.599053 | 0.214962 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 5.226520 | 0.899534 | -0.303265 | 3.480201 | -0.064617 | 5.226520 | 0.417130 | 3.282203 | 2.810217 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 24.533315 | -0.624453 | -0.453558 | 0.552563 | 0.772853 | -0.688547 | 1.015205 | 16.349697 | 24.533315 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 17.268259 | -0.772106 | -0.544208 | 0.880757 | 0.244161 | 1.911422 | -0.906920 | 17.268259 | 11.526018 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 32.622877 | 1.243745 | -0.384250 | 4.676337 | 0.226609 | 4.091971 | -0.499158 | 32.622877 | 20.345747 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 31.366062 | 9.329608 | -0.837914 | 17.811658 | 3.883758 | 31.366062 | 3.517826 | -2.029932 | 0.065934 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 10.448001 | -1.502203 | -0.773533 | -0.201979 | 0.564913 | -0.706788 | 0.626370 | 3.506775 | 10.448001 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 27.905769 | -0.532985 | -1.180134 | 0.026166 | -0.157210 | 0.293617 | -0.210377 | 27.905769 | 2.089898 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 16.593652 | -0.564486 | 1.106594 | -0.474887 | 3.541622 | -0.300980 | 7.333177 | 8.789185 | 16.593652 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 43.975739 | 0.782966 | -0.302859 | 11.128159 | 0.286465 | 43.975739 | -0.152245 | 39.997226 | 9.533094 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 8.494382 | 1.458152 | -0.970153 | 5.148398 | 0.000336 | 3.325529 | 0.679283 | 8.494382 | 1.275046 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Variability | 9.745491 | 4.583905 | -0.546033 | 9.364530 | 0.934567 | 9.745491 | 1.683272 | -1.097482 | 1.837243 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Power | 7.826956 | 0.784475 | -1.339353 | 7.826956 | 2.220361 | 5.808643 | 1.728483 | -0.163160 | 1.109832 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Power | 10.195517 | 3.561556 | 0.577291 | 10.195517 | 3.970106 | 9.189475 | 4.867239 | 0.165062 | 0.439097 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 11.541786 | 9.613432 | 5.312050 | 11.541786 | 9.371180 | 5.354811 | 9.677225 | 1.506773 | 3.188264 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Variability | 34.665338 | 12.310337 | 19.623543 | 17.335995 | 23.611009 | 22.764929 | 34.665338 | 12.672766 | 3.125814 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Variability | 39.702463 | 15.973536 | 18.272057 | 24.145986 | 26.105263 | 36.343493 | 39.702463 | 1.050315 | 1.287541 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Variability | 25.768173 | 17.733736 | 7.500274 | 21.638509 | 13.353191 | 25.768173 | 17.829850 | 6.032260 | 18.050542 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 28.406802 | 0.429424 | -1.721949 | 11.443843 | 2.881267 | 28.406802 | -0.272925 | 3.755655 | -0.197130 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 48.196814 | -1.829487 | 4.090160 | 1.939402 | 11.267403 | 0.982828 | 48.196814 | -0.753999 | 3.401276 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 28.226631 | -1.059555 | -1.528437 | 0.516139 | 0.454491 | 1.803767 | 0.655305 | 28.226631 | -0.667481 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 0.330041 | -1.133890 | -0.570969 | -1.007275 | -0.148791 | -0.638423 | 0.239009 | -0.511939 | 0.330041 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 3.650314 | -1.408504 | -1.312819 | -0.476979 | 0.321424 | 1.260627 | -0.994329 | 3.650314 | 0.126228 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 3.160187 | -0.810721 | -1.854377 | -0.080693 | -1.050446 | 0.815684 | 3.160187 | 0.476642 | 0.620635 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 1.277351 | -0.917682 | 0.671639 | -0.228775 | 1.203081 | -0.974375 | 1.277351 | -1.191285 | -1.704338 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 1.042742 | 0.484629 | -1.037528 | 1.042742 | -0.434383 | 0.039780 | -0.910085 | -1.757819 | -1.035021 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 6.514858 | 3.099310 | -0.899447 | 6.514858 | -0.426419 | 5.949606 | -0.639580 | -1.223781 | 3.927254 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 9.273679 | -0.584906 | 3.117469 | -0.378040 | 7.088674 | -0.927230 | 2.174900 | 9.273679 | -2.127917 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 1.406075 | -1.190322 | 1.012822 | -0.363306 | 1.406075 | -1.041856 | 0.416020 | -0.995162 | -1.563088 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 1.082020 | 0.737690 | -1.289705 | 1.082020 | -0.657861 | 0.454556 | -1.638392 | -1.788924 | -0.981377 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 9.724296 | 4.458861 | -1.783467 | 9.724296 | 1.023331 | 6.763634 | -1.172516 | -1.819937 | 6.013337 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 85.610625 | 0.564228 | 0.163946 | 0.144764 | 0.084137 | 1.657039 | 85.610625 | 7.053334 | 51.971660 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 54.385880 | -0.677544 | -0.109328 | 0.440813 | -0.128219 | 54.385880 | -0.401622 | 17.735007 | 14.039661 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 111.904802 | -0.692424 | 0.414419 | -0.873990 | 3.317660 | 1.807201 | 111.904802 | 32.495656 | 36.477678 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 12.960852 | 0.887752 | 3.178641 | 1.042208 | 3.897089 | 0.612855 | 3.234095 | 2.326572 | 12.960852 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 19.867534 | -0.601402 | 4.097352 | 0.969232 | 11.969372 | -0.390491 | 6.640643 | -1.079513 | 19.867534 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 2.204185 | -0.584287 | 1.611322 | 0.279591 | 2.204185 | -0.363484 | -0.135457 | -1.409943 | -2.201425 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 1.751279 | -0.781155 | 0.789954 | 0.399443 | 1.751279 | -0.093836 | 0.677388 | -1.051195 | -2.071342 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 15.240452 | 1.155569 | -1.199536 | 2.397317 | 0.500922 | 15.240452 | -0.633457 | -2.052565 | -0.985188 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 9.827179 | -0.051334 | 3.114748 | 4.014308 | 9.621191 | 1.578101 | 9.827179 | -0.905082 | -2.389585 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 2.065949 | -1.366196 | 1.245004 | 0.076046 | 2.065949 | 0.679120 | 0.534238 | -1.457191 | -2.544599 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 22.581828 | -1.000612 | 0.090704 | -0.839077 | 1.942958 | -0.106651 | 9.790632 | 10.774707 | 22.581828 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 54.468527 | 0.748895 | 2.875483 | 0.090062 | 1.566563 | 7.280792 | 19.321280 | 54.468527 | 18.216326 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | Not Found | nn Temporal Variability | 59.887842 | 5.601697 | 1.654517 | 4.214630 | 0.613134 | 59.887842 | 4.542487 | 3.528303 | 46.351419 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 1.966626 | 1.096145 | -1.240908 | 1.518994 | -0.063665 | 1.966626 | -1.123410 | -2.362728 | -1.416180 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 35.833803 | -0.983553 | 3.566603 | -0.838969 | 3.127114 | 32.754894 | 32.860955 | 33.357027 | 35.833803 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 12.708278 | -1.119688 | 3.469446 | -1.047885 | 12.708278 | -1.259677 | 10.432914 | 5.142202 | -0.580686 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 18.780642 | 1.419240 | 3.609632 | 1.464353 | 3.160311 | 2.316475 | 18.780642 | 15.062061 | 5.742156 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 31.839115 | 6.256809 | 4.875705 | 5.368769 | 1.482289 | 31.839115 | 4.048309 | 4.636922 | 19.174858 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 18.660910 | 1.845901 | 3.066802 | 1.823301 | 4.079419 | 1.259801 | 17.952114 | 18.660910 | 15.512476 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 11.294423 | -0.770694 | 2.403629 | -1.230058 | 11.294423 | -0.349228 | 6.521547 | 7.492527 | -1.164192 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 3.190249 | 1.225571 | -1.100215 | 2.584506 | -0.870691 | 1.963626 | -0.752033 | -0.423151 | 3.190249 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 30.183589 | 2.892857 | 0.915557 | 2.683427 | 0.040799 | 14.154566 | 2.741907 | 4.876499 | 30.183589 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 32.937839 | 2.794770 | 0.718766 | 2.824977 | -0.082885 | 2.852460 | 0.436312 | 5.005173 | 32.937839 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 25.622309 | 3.518401 | 1.210731 | 2.989897 | 0.026940 | 7.461488 | 0.740696 | 11.197945 | 25.622309 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 11.084512 | 2.306033 | -0.216227 | 7.964650 | -1.090513 | 10.189621 | 0.715788 | 1.692267 | 11.084512 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 31.234665 | 0.965470 | 2.403731 | 0.011743 | 2.786923 | 1.060644 | 4.945083 | 31.234665 | 3.625297 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 4.698753 | 1.735587 | 0.416580 | 2.327441 | -0.173371 | 4.698753 | 1.439415 | 1.076134 | -0.051719 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 14.914422 | 1.030175 | 0.188476 | 1.500982 | -0.337131 | 14.914422 | 0.755827 | 8.362182 | 1.935996 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 67.723135 | 1.448051 | 0.082241 | 1.475720 | -0.265155 | 67.723135 | 1.071926 | 7.860847 | 2.040380 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Discontinuties | 42.309203 | 2.853481 | 1.074213 | 3.425384 | -0.051638 | 36.739402 | 1.934351 | 1.641292 | 42.309203 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Power | 13.491213 | -1.321192 | 6.730445 | 0.887859 | 13.491213 | 10.255483 | 11.541507 | 7.158429 | -2.916780 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 11.508944 | -0.884966 | 3.209136 | -0.410590 | 5.750476 | 0.083573 | 11.508944 | -0.402618 | 0.190657 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 9.728374 | 3.614381 | -0.839822 | 4.951067 | -0.264329 | 9.728374 | 0.550166 | 0.084531 | -0.226723 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | ee Temporal Variability | 11.155514 | 0.053251 | 3.123796 | -0.210341 | 2.264355 | 11.155514 | 9.630777 | 1.965748 | 4.166667 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 53.611375 | -0.254224 | 3.281044 | -0.360728 | 1.876394 | 0.808173 | 53.611375 | 3.045174 | 9.604206 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 18.672841 | -0.034903 | 1.255470 | -0.388268 | 0.570663 | 1.279669 | 5.534121 | 4.522254 | 18.672841 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 28.573712 | -1.274025 | 0.461300 | 1.154534 | 2.178537 | 0.419895 | 2.239681 | 2.828176 | 28.573712 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 14.602474 | 2.879942 | 0.072947 | 1.423021 | -0.242236 | 4.083224 | 0.031649 | 14.602474 | 3.912218 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 8.405470 | 3.083030 | -1.307085 | 7.678216 | 0.498351 | 8.405470 | -0.200991 | 6.335764 | 0.042444 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Discontinuties | 3.159837 | -0.584180 | -0.949751 | 0.275632 | -0.761273 | 1.744868 | 1.095390 | 3.159837 | 1.418586 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | digital_ok | nn Temporal Variability | 4.730433 | -1.126629 | -0.843309 | 0.022429 | -1.011691 | 4.730433 | 1.102542 | 2.889855 | 1.744105 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Temporal Variability | 112.817187 | -0.792135 | 3.893999 | 1.812332 | 6.363157 | 6.797654 | 112.817187 | 8.435488 | 11.657338 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | ee Temporal Discontinuties | 4.105286 | 0.252378 | 0.562711 | -0.426039 | -0.952980 | 3.699089 | -0.626305 | 1.008012 | 4.105286 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Temporal Variability | 14.085076 | 3.287654 | -0.400777 | 4.877291 | -0.056467 | 14.085076 | 10.838315 | 6.632582 | 4.361040 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Temporal Discontinuties | 12.724570 | -1.505581 | 1.475935 | 0.804689 | 6.928457 | 0.348539 | 9.150101 | 8.941757 | 12.724570 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Power | 11.891593 | 0.810188 | -0.928743 | 11.891593 | -0.317887 | 8.815879 | 1.002776 | 9.367872 | 5.550073 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | ee Temporal Discontinuties | 12517.801704 | 3377.632000 | 3377.632000 | 3181.711634 | 3181.711634 | 2492.596332 | 2492.596332 | 12517.801704 | 12517.801704 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Temporal Discontinuties | 2859.682456 | 756.243710 | 756.243710 | 687.553362 | 687.553362 | 720.392702 | 720.392702 | 2859.682456 | 2859.682456 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | ee Temporal Discontinuties | 1878.447851 | 659.013486 | 659.013486 | 670.338043 | 670.338043 | 587.827720 | 587.827720 | 1878.447851 | 1878.447851 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | N02 | dish_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | 2 | dish_ok | nn Temporal Variability | 6.914485 | -0.440612 | 0.356873 | 5.184243 | 5.895711 | 2.946355 | 6.914485 | 6.448184 | 6.638378 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | 2 | dish_ok | nn Temporal Discontinuties | 3.130422 | 1.515687 | 2.182817 | 1.903952 | 2.471762 | 0.711145 | 2.432402 | 1.992100 | 3.130422 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | 2 | dish_ok | nn Temporal Variability | 24.231139 | 1.315483 | 0.031123 | 1.003694 | 22.948969 | 3.124717 | 24.231139 | 12.968267 | 23.807634 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | 2 | dish_ok | nn Temporal Discontinuties | 35.397276 | 0.896544 | 0.138314 | 1.305724 | 15.987118 | 0.872803 | 9.344278 | 18.182076 | 35.397276 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
19 | 2 | dish_ok | nn Temporal Variability | 14.611567 | 1.979038 | 0.523229 | 1.687528 | 9.573717 | 1.071863 | 14.611567 | 12.962518 | 7.821314 |