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 = "9" 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% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.270635 | -1.063063 | 0.394639 | -0.060833 | 21.333721 | 20.870586 | 18.465190 | 17.775646 | 0.8082 | 0.5142 | 0.6213 | 3.109352 | 2.568501 |
2459808 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.197967 | -1.078296 | 0.058510 | 0.258836 | 1.949382 | 1.122412 | -0.415142 | -1.064799 | 0.7536 | 0.6705 | 0.5034 | 2.212007 | 2.401238 |
2459807 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 7.89% | -0.105485 | -1.330941 | 0.079617 | -0.314199 | 2.365307 | 1.056963 | -0.015930 | 0.051290 | 0.7505 | 0.6758 | 0.4890 | 3.266366 | 3.017339 |
2459806 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.14% | -0.240917 | -1.440470 | 0.609911 | -0.383712 | 1.117117 | -0.112762 | -0.372945 | 0.540823 | 0.7237 | 0.6193 | 0.4295 | 2.058152 | 1.737331 |
2459805 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | -0.230963 | -1.078063 | 0.658728 | 0.135668 | 2.512372 | 1.540735 | -0.410532 | -0.678805 | 0.7446 | 0.6834 | 0.4761 | 3.483946 | 2.735337 |
2459804 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | -0.203672 | -1.246176 | -0.055089 | 0.038754 | 2.964716 | 2.131248 | 1.147412 | 1.463416 | 0.7405 | 0.6891 | 0.4613 | 3.392325 | 2.631832 |
2459803 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | 0.025464 | -1.244120 | -0.325773 | 0.533611 | 2.925298 | 2.419705 | -0.223550 | -0.712356 | 0.7368 | 0.6969 | 0.4620 | 4.865403 | 3.723599 |
2459802 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 18.33% | -0.112583 | -1.070612 | -0.327095 | 0.070906 | 1.797947 | 1.032105 | -0.454538 | -0.440638 | 0.7580 | 0.6054 | 0.5136 | 2.375993 | 1.812392 |
2459801 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 47.37% | -0.339989 | -1.086673 | 0.203652 | -0.215337 | 3.091302 | 1.717874 | -0.210725 | -1.115672 | 0.7649 | 0.6898 | 0.4804 | 3.968327 | 3.790143 |
2459800 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.029890 | -1.105050 | 0.093944 | -0.393222 | 2.925412 | 2.603213 | 0.118403 | 0.306719 | 0.7121 | 0.6816 | 0.4505 | 1.708625 | 1.583020 |
2459799 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.14% | 0.00% | -0.219026 | -0.807235 | 0.223541 | -0.123632 | 1.857612 | 0.354799 | -0.669722 | -0.866807 | 0.7233 | 0.6178 | 0.4266 | 1.701633 | 1.492255 |
2459798 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 28.95% | -0.036273 | -0.715570 | -0.170970 | -0.037011 | 1.872001 | 1.738799 | -0.146343 | 1.783171 | 0.6962 | 0.6690 | 0.4308 | 3.493797 | 3.239773 |
2459797 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.123386 | -0.871088 | -0.155275 | 0.133759 | 1.851387 | 2.143498 | -0.138388 | -0.513766 | 0.6996 | 0.6769 | 0.4252 | 2.388745 | 2.276206 |
2459796 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 92.11% | -0.263807 | -0.864389 | -0.514980 | 0.646616 | 1.606806 | 1.527449 | -0.038492 | -0.496569 | 0.6870 | 0.6640 | 0.4088 | 1.607930 | 1.582922 |
2459795 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 28.95% | 0.188344 | -0.904646 | -0.267112 | -0.147003 | 1.607372 | 1.465673 | -0.273477 | -1.209749 | 0.6784 | 0.6579 | 0.4055 | 4.971191 | 3.732567 |
2459794 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.351621 | -1.078695 | -0.561040 | 0.289361 | 1.970030 | 2.008864 | 2.493281 | 9.583244 | 0.6703 | 0.6486 | 0.4084 | 0.000000 | 0.000000 |
2459793 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.205110 | -1.079759 | -0.079892 | -0.557752 | 0.897591 | 0.785258 | 0.351881 | 2.841861 | 0.6600 | 0.6518 | 0.4074 | 1.067650 | 1.045568 |
2459792 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.150263 | -1.559716 | 0.362932 | 0.382189 | 1.292576 | 0.595961 | -0.300667 | 0.384095 | 0.7228 | 0.6169 | 0.4211 | 1.473985 | 1.423590 |
2459791 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.631979 | -0.834555 | -0.053605 | 1.105365 | 0.478145 | 0.671659 | -0.893399 | -1.177236 | 0.6497 | 0.6400 | 0.3954 | 1.570783 | 1.525441 |
2459790 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.297379 | -1.307755 | 0.018535 | 1.359296 | 1.449393 | 11.621406 | -0.074049 | 14.647376 | 0.6424 | 0.6366 | 0.4002 | 3.114049 | 3.056996 |
2459789 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.316558 | 7.355878 | 0.753889 | 13.031701 | 1.279877 | 15.626471 | 1.229050 | -2.395732 | 0.6115 | 0.6013 | 0.3917 | 0.000000 | 0.000000 |
2459788 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.417625 | 6.203431 | 1.053564 | 13.730631 | 1.563547 | 16.212481 | 0.074075 | -1.245704 | 0.6224 | 0.6161 | 0.3833 | 5.535226 | 5.938715 |
2459787 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.780524 | 5.924518 | 0.449337 | 11.703729 | 1.646354 | 10.343088 | 2.380550 | 0.662516 | 0.6037 | 0.5972 | 0.3859 | 5.196628 | 5.342820 |
2459786 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.237077 | 5.714344 | 0.477839 | 13.816555 | 2.433890 | 14.873901 | 0.746362 | -0.072232 | 0.5873 | 0.5796 | 0.3700 | 0.000000 | 0.000000 |
2459785 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.499340 | 10.510646 | 6.236448 | 38.601093 | 1.821731 | 31.836116 | -0.441814 | -1.647524 | 0.7187 | 0.6047 | 0.4269 | 7.952248 | 7.456631 |
2459784 | 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 |
2459783 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | 0.857022 | -0.987456 | 0.201256 | 0.010493 | 2.255405 | -0.644515 | -0.036208 | -0.099087 | 0.5498 | 0.5458 | 0.3294 | 1.691521 | 1.552446 |
2459782 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 1.842103 | -1.186089 | 0.390685 | -0.142452 | 1.331747 | -0.677554 | -0.116600 | -0.947670 | 0.5124 | 0.5112 | 0.3282 | 1.289849 | 1.388749 |
2459781 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.142531 | -1.007255 | 0.665038 | -0.878442 | 1.333777 | -0.039592 | 0.132952 | -0.379105 | 0.7109 | 0.6625 | 0.3594 | 1.902558 | 1.704570 |
2459778 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.359993 | -1.229713 | 1.223930 | -0.218864 | 1.315750 | -0.760919 | 0.217379 | -0.863568 | 0.6973 | 0.6024 | 0.4133 | 1.535587 | 1.434470 |
2459776 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.41% | 0.68% | -0.889081 | -0.885023 | 1.278334 | 0.017320 | 0.525759 | -0.250505 | -0.080260 | 2.429083 | 0.7280 | 0.6172 | 0.4213 | 1.622137 | 1.392697 |
2459774 | digital_ok | - | 2.08% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.7019 | 0.6034 | 0.4047 | nan | nan |
2459773 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 36.84% | 0.00% | -0.203957 | -0.874399 | 0.046672 | -0.347639 | 0.311765 | -0.221559 | -0.137673 | 1.575635 | 0.4531 | 0.4450 | 0.2919 | 1.121246 | 1.183262 |
2459772 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.123282 | 0.021622 | -0.016403 | 0.271120 | 0.263248 | 0.363787 | 0.082923 | 1.251682 | 0.4838 | 0.4715 | 0.2785 | 1.491094 | 1.497207 |
2459771 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.200310 | -0.166735 | 0.055640 | 0.287470 | 0.197370 | 0.247896 | -0.274395 | 0.034645 | 0.7148 | 0.6064 | 0.4114 | 1.883381 | 1.662618 |
2459770 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | -0.503823 | -0.890704 | -0.856830 | -0.526816 | -0.102883 | 0.039947 | -0.584043 | 0.267592 | 0.4615 | 0.4537 | 0.3004 | 1.209140 | 1.253372 |
2459769 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.560214 | -0.982379 | -0.900832 | -0.561906 | -0.946176 | -0.793045 | -0.496061 | 0.746419 | 0.4768 | 0.4701 | 0.3002 | 1.487344 | 1.471690 |
2459768 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.529857 | -0.896343 | -0.481746 | -0.378353 | -0.570098 | -0.502312 | -0.340854 | 2.212519 | 0.4787 | 0.4763 | 0.3045 | 1.434656 | 1.451100 |
2459767 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.257606 | -0.373497 | 0.107364 | 0.243228 | -0.191520 | 0.105377 | 0.175776 | 0.500209 | 0.5280 | 0.5150 | 0.2915 | 1.435981 | 1.451397 |
2459766 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.006543 | -0.057953 | 0.235595 | 0.241096 | -0.167886 | 0.025496 | -0.066409 | 0.158622 | 0.4988 | 0.4899 | 0.3065 | 1.461538 | 1.405290 |
2459765 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.182565 | -0.590886 | -0.613756 | -0.295388 | 0.787526 | 0.040877 | -0.267355 | 1.260542 | 0.5057 | 0.4961 | 0.3161 | 1.372703 | 1.329147 |
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.074426 | -0.251984 | 0.004132 | -0.176200 | 1.299439 | 1.714915 | 5.108437 | 5.354688 | 0.7231 | 0.6453 | 0.4640 | 2.902242 | 2.737042 |
2459761 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.743181 | -0.566601 | 0.189154 | -0.101293 | -0.827598 | -0.517519 | -0.181198 | -0.360312 | 0.5372 | 0.5257 | 0.3310 | 1.348852 | 1.324725 |
2459760 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.784468 | -0.761048 | -0.533831 | -0.322751 | -0.941970 | 1.728213 | 1.143840 | 5.843741 | 0.5419 | 0.5326 | 0.3331 | 6.755973 | 9.274962 |
2459759 | 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 |
2459758 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.898901 | -0.365382 | -0.332463 | 0.195769 | -0.138960 | 0.050061 | -0.391977 | 0.489386 | 0.0691 | 0.0752 | 0.0120 | 1.155702 | 1.152419 |
2459757 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.265729 | -0.582255 | -0.213519 | -0.009164 | -0.092218 | -0.013548 | -0.299191 | 1.029241 | 0.0569 | 0.0527 | 0.0055 | 1.135444 | 1.136538 |
2459755 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.617408 | -0.791676 | 0.005115 | 0.105357 | 0.159297 | 0.490807 | -0.496763 | -0.262561 | 0.0660 | 0.0582 | 0.0072 | 1.158219 | 1.155039 |
2459754 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.479921 | -0.620673 | -0.003890 | 0.218276 | -0.354720 | -0.020767 | -0.627923 | -0.381392 | 0.0746 | 0.0498 | 0.0084 | 1.195344 | 1.193807 |
2459753 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.360712 | -0.687304 | 0.237556 | 0.379137 | 0.471986 | 0.699069 | 0.044368 | 2.444864 | 0.0703 | 0.0561 | 0.0078 | 1.154162 | 1.155405 |
2459752 | digital_ok | 0.00% | 51.61% | 51.61% | 0.00% | 92.11% | 0.00% | -0.330151 | -0.919765 | 0.720463 | 0.042426 | 0.603940 | 0.394538 | -0.253783 | 2.297756 | 0.3865 | 0.3714 | 0.2249 | 0.000000 | 0.000000 |
2459750 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.093698 | -1.068054 | -0.200927 | -0.158689 | -0.512495 | 0.042896 | -0.611662 | -0.635251 | 0.0572 | 0.0519 | 0.0050 | 1.130739 | 1.129683 |
2459749 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.121341 | -0.704369 | 0.117735 | 0.211476 | -0.873341 | -0.591142 | -0.289563 | 0.147009 | 0.0838 | 0.0617 | 0.0050 | 0.000000 | 0.000000 |
2459748 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.332620 | -1.067804 | -0.144269 | 0.099102 | -0.495989 | -0.416579 | 0.342400 | -0.471568 | 0.6248 | 0.6097 | 0.4122 | 1.413511 | 1.367993 |
2459747 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.540406 | -0.845137 | -0.928389 | -0.848560 | 0.100502 | 0.830460 | -0.708311 | 0.040858 | 0.0863 | 0.0797 | 0.0088 | nan | nan |
2459746 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.718342 | -0.630640 | -0.047200 | -0.956892 | 1.636619 | 0.328271 | -0.125866 | -0.590869 | 0.0932 | 0.1061 | 0.0115 | nan | nan |
2459745 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 15.79% | 0.00% | -0.038842 | -0.341326 | 0.300487 | 0.451376 | -0.735663 | -0.509960 | -0.352771 | -0.194311 | 0.6516 | 0.6403 | 0.4163 | 1.502749 | 1.572353 |
2459744 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.003457 | -0.968534 | -0.696041 | -0.574193 | -0.250770 | -0.748589 | -1.533151 | -1.079096 | 0.0728 | 0.0545 | 0.0077 | nan | nan |
2459743 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.581242 | -1.145553 | -0.775761 | -0.310416 | -0.089676 | 0.013534 | -0.495414 | -0.291338 | 0.7175 | 0.6088 | 0.4144 | 1.959220 | 1.465995 |
2459742 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.087895 | -0.470691 | -0.616013 | -0.686918 | 1.990178 | 1.414981 | -0.427845 | -0.358441 | 0.0639 | 0.0650 | 0.0088 | nan | nan |
2459741 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.463501 | -0.544953 | -0.816381 | -0.651561 | -1.112658 | -1.625908 | -0.190118 | -0.413725 | 0.0665 | 0.0743 | 0.0092 | nan | nan |
2459740 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.052236 | -0.852510 | -0.876198 | -0.278981 | 1.222064 | -0.526292 | -0.557004 | -0.060525 | 0.0767 | 0.0884 | 0.0123 | nan | nan |
2459738 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.477747 | -0.823394 | -0.704475 | 0.009779 | 0.681429 | -0.775541 | -0.381145 | -0.042119 | 0.6949 | 0.6784 | 0.4480 | 1.932674 | 2.322672 |
2459736 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 34.59% | 1.097305 | 1.230327 | -0.570183 | 0.007264 | -0.050496 | 0.529035 | 0.068930 | -0.115979 | 0.7146 | 0.6025 | 0.4268 | 2.690208 | 2.698653 |
2459734 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.270077 | -1.004557 | -0.546773 | -0.853811 | 1.161982 | -0.011876 | -0.447445 | -0.095700 | 0.0639 | 0.0906 | 0.0018 | nan | nan |
2459733 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.512911 | -0.925060 | -0.937211 | -1.015170 | 1.506014 | 0.575743 | -0.450467 | -0.279582 | 0.0667 | 0.1040 | 0.0034 | nan | nan |
2459732 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.560482 | -0.975697 | -0.948316 | -0.824230 | 1.179356 | 0.629318 | -0.764986 | -0.240085 | 0.0634 | 0.1004 | 0.0028 | nan | nan |
2459731 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.981975 | 2.837709 | -0.453535 | 0.142579 | 1.678436 | 0.280605 | 0.832725 | -0.173887 | 0.6930 | 0.6802 | 0.3946 | 1.903006 | 2.305386 |
2459730 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.703008 | -0.951166 | -1.031066 | -1.049015 | 1.437485 | 0.819337 | -0.532406 | -0.237601 | 0.0837 | 0.1010 | 0.0042 | nan | nan |
2459728 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.092278 | -0.920129 | -1.101843 | -0.951763 | 1.811516 | 1.359409 | -0.700882 | -0.416562 | 0.0978 | 0.1012 | 0.0041 | nan | nan |
2459726 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.733114 | -0.857456 | -0.927985 | -0.941429 | 2.396380 | 2.724521 | -0.556749 | 0.018163 | 0.0653 | 0.0708 | 0.0020 | nan | nan |
2459724 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.423666 | -0.822028 | -0.886928 | -0.792395 | 1.082495 | 0.589934 | -0.469597 | -0.072776 | 0.0638 | 0.0773 | 0.0028 | nan | nan |
2459723 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.858128 | -1.051965 | -1.061324 | -0.967150 | 1.330362 | 0.963970 | -0.624220 | -0.419179 | 0.0992 | 0.1021 | 0.0046 | nan | nan |
2459722 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 6.49% | 2.659860 | 3.347763 | 0.202050 | 0.129029 | 1.147496 | 1.356665 | 0.292123 | -0.103814 | 0.7019 | 0.6056 | 0.4342 | 3.186688 | 3.017913 |
2459720 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.744938 | -0.874737 | -0.812499 | -0.764224 | 0.558017 | 0.003401 | -0.686435 | -0.694167 | 0.0766 | 0.0708 | 0.0031 | nan | nan |
2459719 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.813277 | -0.975583 | -0.907105 | -0.917769 | 0.241797 | -0.037858 | -0.537792 | -0.150997 | 0.0668 | 0.0644 | 0.0015 | nan | nan |
2459718 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.507393 | -0.707190 | -0.768866 | -0.656937 | 0.669000 | 0.772984 | -0.285085 | -0.232056 | 0.0689 | 0.0736 | 0.0011 | nan | nan |
2459717 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.305805 | -0.880721 | -0.882452 | -0.748581 | 2.447316 | 1.026639 | -0.553018 | -0.031312 | 0.0693 | 0.0648 | 0.0018 | nan | nan |
2459716 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.754576 | -0.876085 | -0.730943 | -0.855920 | 0.886437 | 0.051680 | -0.521004 | 0.019098 | 0.0907 | 0.0932 | 0.0022 | nan | nan |
2459715 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 14.05% | 2.370139 | 2.437035 | -0.638852 | -0.002195 | 0.555881 | 1.215385 | -0.395167 | -0.450055 | 0.6773 | 0.5916 | 0.4374 | 2.765502 | 3.034566 |
2459713 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.667109 | -0.969932 | -0.713209 | -0.844201 | 1.149624 | -0.167050 | -0.600937 | -0.025829 | 0.0970 | 0.0824 | 0.0044 | nan | nan |
2459712 | digital_ok | 0.00% | 0.00% | 2.69% | 0.00% | 2.63% | 0.00% | 2.806181 | 3.118953 | -0.358913 | -0.315422 | 0.760458 | 0.975118 | -0.219695 | -0.173653 | 0.5854 | 0.5684 | 0.3607 | 5.446252 | 5.344303 |
2459711 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.110021 | -0.043701 | -0.673081 | -0.703940 | -0.108949 | -0.894387 | -0.476336 | -0.561379 | 0.0682 | 0.0680 | 0.0025 | nan | nan |
2459710 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.005395 | 0.027855 | -0.557541 | -0.493573 | 1.042184 | 0.209463 | -0.559099 | -0.488664 | 0.0883 | 0.0655 | 0.0025 | nan | nan |
2459708 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.442555 | 2.830234 | -0.579546 | 0.194140 | 0.660468 | 1.473429 | 0.079194 | 0.213307 | 0.6771 | 0.6005 | 0.4176 | 0.000000 | 0.000000 |
2459707 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.320792 | 0.750589 | -0.559265 | -1.444819 | -0.957707 | -1.169157 | -0.381406 | -0.817226 | 0.0599 | 0.0501 | 0.0083 | 0.000000 | 0.000000 |
2459706 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.021175 | 0.039445 | -0.529789 | -0.416953 | 1.026765 | 0.025862 | -0.549211 | -0.566894 | 0.0922 | 0.0972 | 0.0033 | nan | nan |
2459705 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.028317 | -0.687329 | -0.933937 | -0.960788 | 1.389472 | 0.388296 | -0.397758 | -0.117248 | 0.0691 | 0.0668 | 0.0030 | nan | nan |
2459703 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.265778 | -0.550494 | -0.753360 | -1.277421 | 0.370369 | -0.723703 | -1.423583 | 0.168097 | 0.0424 | 0.0482 | -0.0004 | nan | nan |
2459702 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.161285 | 2.092103 | -0.893143 | -0.358480 | -0.015933 | -0.567703 | 0.870532 | -0.523368 | 0.6283 | 0.6263 | 0.3381 | 2.851732 | 3.117258 |
2459701 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.319825 | 2.392205 | -0.454307 | -0.006657 | 0.039906 | 0.200540 | 0.159470 | -0.280735 | 0.6378 | 0.6355 | 0.3312 | 4.843471 | 5.433997 |
2459697 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3237.563305 | 3237.563305 | 3040.134341 | 3040.134341 | 2365.032501 | 2365.032501 | 11906.083028 | 11906.083028 | 1.0000 | 1.0000 | 0.0000 | 10581.284912 | 10581.284912 |
2459696 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 772.543135 | 772.543135 | 700.612528 | 700.612528 | 725.380782 | 725.380782 | 2882.540480 | 2882.540480 | 1.0000 | 1.0000 | 0.0000 | -0.000000 | -0.000000 |
2459695 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 642.769449 | 642.769449 | 659.603509 | 659.603509 | 577.654539 | 577.654539 | 1845.137770 | 1845.137770 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459694 | dish_ok | 0.00% | 2.16% | 5.95% | 0.00% | 100.00% | 0.00% | 2.387144 | 2.594742 | -0.720455 | -0.365076 | -0.070502 | 0.466049 | -0.310502 | -0.488555 | 0.6208 | 0.5722 | 0.4083 | 3.822027 | 3.659286 |
2459693 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.965254 | 2.521557 | -0.513168 | 0.028697 | 1.182327 | 2.002585 | -0.060571 | 0.385794 | 0.6818 | 0.6686 | 0.3028 | 4.915380 | 5.939981 |
2459692 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.458534 | 8.233360 | -0.393261 | -0.160330 | 0.160550 | 0.139050 | 0.639599 | 0.124592 | 0.7038 | 0.7316 | 0.2368 | 4.794521 | 5.397273 |
2459691 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.509458 | 2.380420 | 8.603336 | 0.699905 | 3.822023 | 1.242217 | 2.836003 | -0.391443 | 0.5871 | 0.5924 | 0.3304 | 4.661036 | 4.879881 |
2459690 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.483925 | 3.203059 | 9.358852 | 1.402750 | 5.663271 | 1.240190 | 3.215280 | -0.564865 | 0.6076 | 0.6025 | 0.3556 | 4.227403 | 4.330492 |
2459689 | dish_ok | 100.00% | - | - | - | - | - | 4.450921 | 2.710572 | 7.825884 | 0.006272 | 4.828252 | 0.712658 | 2.853773 | -0.424839 | 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 | 3.000810 | 3.092194 |
2459687 | dish_ok | 100.00% | 99.46% | 99.46% | 0.00% | - | - | 4.159830 | 2.880391 | 7.998220 | 1.322747 | 5.197466 | -0.256454 | 5.292202 | 0.051577 | 0.1775 | 0.1910 | 0.0717 | nan | nan |
2459686 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.208489 | 2.725642 | 6.577626 | 0.513573 | 4.059251 | 1.279053 | 1.340831 | -0.704116 | 0.5951 | 0.6009 | 0.3445 | 3.115483 | 3.123498 |
2459685 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.818333 | 3.074743 | 6.443515 | 0.361249 | 5.543791 | 1.373069 | 1.574061 | -0.127402 | 0.6028 | 0.6035 | 0.3444 | 5.018622 | 4.409923 |
2459684 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.621857 | 3.081792 | 7.847402 | 0.964995 | 3.748503 | 0.895958 | -0.397783 | -1.128767 | 0.6012 | 0.6031 | 0.3480 | 3.095245 | 3.145908 |
2459676 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.985793 | 2.876357 | 10.089037 | 0.357160 | 7.847416 | 3.412215 | 0.699161 | -0.772483 | 0.6160 | 0.6177 | 0.3535 | 5.041022 | 5.502639 |
2459675 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.532250 | 2.761503 | 7.934483 | 0.539215 | 9.236631 | 3.216038 | 0.746035 | -0.623328 | 0.6217 | 0.6248 | 0.3496 | 4.357293 | 3.668565 |
2459674 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.992191 | 3.081055 | 7.826861 | 0.888497 | 6.640136 | 2.085429 | 0.619492 | -0.758584 | 0.6109 | 0.6116 | 0.3608 | 3.379899 | 3.561595 |
2459673 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.035199 | 3.263679 | 8.291059 | 1.088714 | 9.856156 | 2.699971 | 0.847922 | -0.739642 | 0.6320 | 0.6165 | 0.3654 | 0.000000 | 0.000000 |
2459672 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.238825 | 2.694916 | 7.937373 | 0.720007 | 4.545171 | 1.525901 | 1.542604 | -0.357027 | 0.6226 | 0.6265 | 0.3505 | 3.546296 | 2.328418 |
2459671 | dish_ok | 100.00% | 32.97% | 32.97% | 0.00% | 100.00% | 0.00% | 4.771430 | 2.817740 | 7.473044 | 1.041971 | 5.408222 | 2.316415 | 1.812164 | -0.832979 | 0.4932 | 0.4754 | 0.2685 | 0.000000 | 0.000000 |
2459670 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | dish_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.039965 | 1.019823 | 41.515247 | 47.077368 | 0.151541 | 0.213043 | 0.735471 | -0.360416 | 0.0377 | 0.0505 | 0.0058 | nan | nan |
2459668 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.787489 | 2.718317 | 8.357962 | 0.730164 | 12.119043 | 1.860362 | 6.775781 | 2.249759 | 0.6572 | 0.6370 | 0.3491 | 4.239066 | 4.420791 |
2459665 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.083312 | 3.372841 | 8.053181 | 1.090842 | 2.907811 | 1.420830 | 2.693361 | -0.744951 | 0.6413 | 0.6518 | 0.3601 | 4.584563 | 5.207667 |
2459664 | dish_ok | 0.00% | 100.00% | 51.32% | 0.00% | - | - | -0.900226 | 0.307021 | -0.001728 | 0.925603 | 0.679294 | 2.989409 | 0.435871 | 0.820182 | 0.0320 | 0.0968 | 0.0053 | nan | nan |
2459663 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.885360 | 3.798377 | 13.740076 | 2.128760 | 20.929132 | 3.144691 | 2.103797 | -0.825953 | 0.6136 | 0.6089 | 0.3509 | 0.000000 | 0.000000 |
2459662 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 2.114467 | 0.278793 | 3.202962 | -0.665486 | 0.144156 | 0.487761 | 0.752602 | 0.506508 | 0.0295 | 0.0362 | 0.0034 | nan | nan |
2459661 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.696863 | 2.944319 | 9.525135 | 1.455598 | 8.737607 | 1.052636 | 5.453741 | 1.693594 | 0.6498 | 0.6357 | 0.3166 | 3.909770 | 3.975409 |
2459660 | dish_ok | 100.00% | 0.00% | 0.64% | 0.00% | 100.00% | 0.00% | 3.541572 | 2.436930 | 7.483725 | 1.647240 | 8.060837 | 1.585638 | 2.340734 | -0.060690 | 0.6509 | 0.6260 | 0.3283 | 4.231612 | 4.104889 |
2459659 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.982411 | 2.612893 | 6.510641 | 1.184523 | 9.176941 | 1.597562 | 4.200428 | -0.760341 | 0.6000 | 0.5965 | 0.3484 | 3.922328 | 3.862956 |
2459658 | dish_ok | 100.00% | 0.00% | 0.64% | 0.00% | 100.00% | 0.00% | 3.888364 | 2.191823 | 6.064868 | 0.795290 | 8.095293 | 0.781253 | 3.648037 | -0.474058 | 0.6154 | 0.6098 | 0.3388 | 3.499491 | 3.661550 |
2459657 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.846166 | 3.480669 | 7.394682 | 1.615489 | 7.302279 | 1.513150 | 10.598562 | 0.465558 | 0.6378 | 0.6162 | 0.3412 | 4.145155 | 4.039174 |
2459656 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.817947 | 3.501755 | 4.670377 | 1.326370 | 5.826496 | 1.507109 | 2.854207 | -1.181100 | 0.5987 | 0.6030 | 0.3399 | 3.191448 | 3.340653 |
2459655 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 2.504012 | 0.989733 | 3.503730 | -0.491863 | 0.627131 | -0.824340 | 0.252296 | -0.262913 | 0.0302 | 0.0372 | 0.0014 | nan | nan |
2459653 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.375246 | 3.316652 | 6.006220 | 1.072454 | 6.605602 | 2.392160 | 1.376649 | -1.084922 | 0.5948 | 0.6048 | 0.3443 | 3.896029 | 3.843304 |
2459652 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.584275 | 4.034448 | 9.076762 | 0.396253 | 8.417900 | 1.310839 | 0.862347 | -1.141833 | 0.5937 | 0.5988 | 0.3432 | 3.553000 | 3.672029 |
2459651 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.758481 | 4.104520 | 7.731558 | 1.604186 | 3.327792 | 0.309803 | 9.706097 | 2.096721 | 0.8429 | 0.8388 | 0.1285 | 49.655646 | 42.120075 |
2459650 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.720849 | 5.237635 | 7.367904 | 1.466186 | 9.368965 | 0.968491 | 10.642246 | 2.443690 | 0.7235 | 0.7096 | 0.2727 | 5.070861 | 5.712205 |
2459649 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.520270 | 2.828319 | 5.153834 | 1.465501 | 3.780755 | 2.018690 | 2.282367 | -0.462435 | 0.6460 | 0.6333 | 0.3201 | 3.408932 | 3.667161 |
2459648 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | dish_ok | 100.00% | 81.63% | 81.63% | 0.00% | 100.00% | 0.00% | -0.144322 | -0.144322 | 1033.709744 | 1033.709744 | 31035.123225 | 31035.123225 | 7.935079 | 7.935079 | 0.2085 | 0.2085 | 0.0000 | 0.090327 | 0.090327 |
2459646 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.568052 | 2.781907 | 6.986458 | 1.398326 | 5.162075 | 1.783452 | 3.136145 | -0.832808 | 0.5820 | 0.5862 | 0.3265 | 3.786571 | 3.718643 |
2459645 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.895964 | 2.815615 | 7.899897 | 0.907243 | 5.956820 | 1.021545 | 5.862545 | 2.894231 | 0.6573 | 0.6773 | 0.2683 | 6.030815 | 6.184782 |
2459642 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.047536 | 3.139043 | 9.062518 | 2.217379 | 3.444413 | 2.529814 | 0.646353 | -0.890275 | 0.5699 | 0.5800 | 0.3298 | 3.573778 | 3.756947 |
2459641 | dish_ok | - | 55.70% | 55.70% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.4661 | 0.4612 | 0.0035 | nan | nan |
2459640 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.136467 | 3.756730 | 8.017028 | 1.484686 | 3.432131 | 2.764350 | 0.167245 | -0.956515 | 0.5699 | 0.5784 | 0.3225 | 3.692380 | 3.811792 |
2459639 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.028053 | 2.770427 | 7.749631 | 1.028002 | 3.854878 | 1.285609 | 0.532255 | -0.617527 | 0.5715 | 0.5829 | 0.3181 | 3.385318 | 3.497613 |
2459638 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6730 | 0.6855 | 0.2663 | nan | nan |
2459637 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.018254 | 3.248169 | 8.543057 | 2.089233 | 2.244023 | 2.227784 | 0.648016 | -0.844444 | 0.5551 | 0.5701 | 0.3245 | 3.410620 | 3.610872 |
2459636 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.970547 | 3.422888 | 8.561149 | 2.189122 | 1.847403 | 1.713593 | -0.321410 | -0.828439 | 0.5568 | 0.5712 | 0.3241 | 3.555983 | 3.744776 |
2459635 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.024026 | 3.861950 | 7.713252 | 1.924575 | 1.887989 | 2.527060 | 0.684349 | -0.934739 | 0.5690 | 0.5758 | 0.3254 | 4.289974 | 4.266134 |
2459634 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 10.284727 | 1.501317 | 152134.282251 | 1.501406 | 8.688745 | 1.172316 | 8.678259 | 1.161680 | 1.0000 | 1.0000 | 0.0000 | 0.081154 | 0.081643 |
2459633 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.199021 | 3.862349 | 9.054122 | 2.425576 | 0.841769 | 2.829028 | 1.813680 | -0.977982 | 0.5616 | 0.5757 | 0.3367 | 3.275505 | 3.590554 |
2459632 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.350805 | 3.553635 | 7.861623 | 1.958378 | 1.139398 | 1.871997 | -0.437017 | -0.945246 | 0.5689 | 0.5788 | 0.3348 | 3.628512 | 3.724469 |
2459631 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.503690 | 4.288259 | 9.090487 | 1.989920 | 1.598933 | 2.879932 | 1.486947 | -0.763532 | 0.5581 | 0.5709 | 0.3388 | 3.153956 | 3.489067 |
2459630 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 8.545634 | 4.754030 | 7.767156 | 1.541056 | 2.709269 | 3.958434 | 3.495057 | -0.428396 | 0.5701 | 0.5843 | 0.3303 | 3.385297 | 3.611570 |
2459629 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.301797 | 4.148922 | 9.241552 | 2.487472 | 1.631929 | 2.910321 | 1.015573 | -0.475595 | 0.5893 | 0.5941 | 0.3209 | 3.882008 | 4.172994 |
2459628 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.126878 | 3.382065 | 6.956249 | 1.912802 | 1.221944 | 1.998527 | 0.738366 | -0.870274 | 0.5706 | 0.5830 | 0.3388 | 3.145296 | 3.361871 |
2459627 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.778325 | 1.778325 | 1.787077 | 1.787077 | 1.924913 | 1.924913 | 1.891472 | 1.891472 | 1.0000 | 1.0000 | 0.0000 | 0.077282 | 0.077282 |
2459626 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.003909 | 2.977614 | 6.819340 | 1.001674 | 2.319865 | 2.108304 | 3.705920 | 0.190537 | 0.5929 | 0.6048 | 0.3397 | 3.255818 | 3.484679 |
2459625 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.265520 | 3.340538 | 7.271838 | 1.900933 | 1.939152 | 2.295050 | -0.031043 | -0.861204 | 0.5694 | 0.5781 | 0.3430 | 3.415943 | 3.593253 |
2459624 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.333158 | 3.815760 | 6.201404 | 1.819979 | 2.396158 | 2.523599 | 2.405459 | -0.670553 | 0.5834 | 0.5936 | 0.3330 | 4.112316 | 4.481262 |
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% | 3.895807 | 3.113538 | 13.111195 | 4.633207 | 0.395912 | 1.180098 | 0.049977 | -0.880508 | 0.5990 | 0.6070 | 0.3546 | 0.000000 | 0.000000 |
2459621 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | 3.391119 | 1.355283 | 7.452084 | 0.913960 | 0.626234 | 0.571764 | 2.524255 | -0.661073 | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 1.587828 | 0.763094 | 3.539247 | -0.349318 | 1.878764 | 0.006866 | 0.829430 | 0.478084 | 0.0304 | 0.0339 | 0.0024 | nan | nan |
2459619 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.258624 | 2.474168 | 7.383013 | 2.193120 | 2.226935 | 1.917483 | -0.085551 | -0.993388 | 0.5973 | 0.6084 | 0.3497 | 4.768290 | 1.966581 |
2459618 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.368602 | 2.988197 | 8.517496 | 2.152592 | 2.411711 | 2.263543 | 1.811764 | -0.875183 | 0.5965 | 0.6063 | 0.3629 | 2.547855 | 2.678490 |
2459617 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.234400 | 2.194109 | 7.585765 | 1.541439 | 3.067652 | 2.647292 | 1.965553 | -0.741431 | 0.5971 | 0.6150 | 0.3577 | 10.780926 | 21.272038 |
2459616 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.728116 | 2.789712 | 11.608199 | 3.752295 | 2.504981 | 2.870931 | 2.198075 | -0.858095 | 0.6110 | 0.6195 | 0.3565 | 2.897314 | 3.132684 |
2459615 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.607813 | 3.294496 | 7.239108 | 2.046804 | 4.122022 | 10.248451 | 6.187769 | 10.168818 | 0.5853 | 0.5919 | 0.3770 | 0.000000 | 0.000000 |
2459614 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.489503 | 2.916824 | 8.185666 | 1.806347 | 1.786201 | 1.355236 | 1.676481 | 2.104961 | 0.5931 | 0.5958 | 0.3793 | 5.290898 | 4.987846 |
2459613 | dish_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459612 | dish_ok | 100.00% | 67.57% | 67.57% | 0.00% | 100.00% | 0.00% | 4.346173 | 2.660804 | 8.019856 | 1.953056 | 5.152402 | 5.178768 | 3.975547 | 4.882249 | 0.3617 | 0.3735 | 0.1889 | 0.000000 | 0.000000 |
2459611 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.155905 | 3.676080 | 5.922768 | 1.677409 | 3.409311 | 4.855978 | 6.247327 | 5.955573 | 0.6179 | 0.6326 | 0.3429 | 3.470600 | 3.556293 |
2459610 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 15.440527 | 20.285403 | 5.952892 | 4.368488 | 40.055452 | 42.326510 | 38.957692 | 33.730134 | 0.6776 | 0.6725 | 0.2809 | 4.245136 | 4.635155 |
2459609 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.022341 | 3.592432 | 9.128815 | 3.097219 | 1.451951 | 2.151524 | 1.884408 | 0.430099 | 0.6442 | 0.6492 | 0.3179 | 3.726127 | 3.927641 |
2459608 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.588292 | 3.963119 | 10.867527 | 3.956704 | 5.571086 | 10.140364 | 5.035296 | 6.446178 | 0.5965 | 0.6059 | 0.3838 | 2.161830 | 2.236957 |
2459607 | dish_ok | 100.00% | 42.16% | 42.16% | 0.00% | 100.00% | 0.00% | 3.392671 | 4.143764 | 6.850925 | 3.730139 | 8.017181 | 3.766238 | -1.212520 | 1.179271 | 0.3582 | 0.3607 | 0.2322 | 3.861988 | 3.372310 |
2459605 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.692077 | -0.623223 | 0.591129 | 0.232174 | 0.705390 | 0.632890 | -1.156345 | 0.610582 | 0.0319 | 0.0392 | 0.0030 | nan | nan |
2459604 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.793624 | 3.060854 | 10.107205 | 2.005284 | 3.698785 | 2.382111 | 2.532304 | 0.835441 | 0.6570 | 0.6587 | 0.3213 | 4.516934 | 4.671611 |
2459603 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.384595 | 4.800843 | 8.861381 | 2.950688 | 0.419087 | -0.169454 | 1.154581 | -0.178786 | 0.7172 | 0.7131 | 0.3211 | 6.304407 | 5.844495 |
2459602 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.390245 | 3.280638 | 11.570500 | 3.244266 | 1.534985 | 1.203678 | 1.055881 | 0.018710 | 0.6347 | 0.6506 | 0.3618 | 3.416872 | 3.708956 |
2459598 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.326956 | 3.028750 | 9.094325 | 2.136241 | 2.472700 | 1.483568 | 0.708019 | -0.640677 | 0.6388 | 0.6475 | 0.3755 | 4.585031 | 4.452655 |
2459597 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.815113 | 2.977614 | 9.752536 | 2.702362 | 2.518800 | 1.568156 | 2.474334 | 1.177391 | 0.6309 | 0.6386 | 0.3550 | 3.580811 | 3.685273 |
2459596 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.095208 | 4.151900 | 7.991710 | 2.627178 | 3.527247 | 6.277170 | 2.749698 | 4.463038 | 0.6406 | 0.6472 | 0.3552 | 4.100890 | 4.088004 |
2459595 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.547500 | 6.567663 | 8.470992 | 2.184799 | 11.348357 | 5.365697 | 12.794707 | 3.947596 | 0.7289 | 0.7256 | 0.2251 | 4.726920 | 4.904575 |
2459594 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.271099 | 0.408177 | 10.129449 | 1.565987 | 4.759000 | 1.766208 | 9.638597 | 1.918186 | 0.7435 | 0.7454 | 0.2768 | 10.328034 | 10.545673 |
2459593 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.802657 | 3.118598 | 9.217535 | 2.214347 | 4.393491 | 2.294962 | 4.269784 | 0.738022 | 0.7060 | 0.6988 | 0.2633 | 4.371562 | 4.259797 |
2459592 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.113794 | -0.408720 | 2.361957 | -0.291137 | 0.191894 | 0.193823 | -1.829878 | -0.028505 | 0.0290 | 0.0299 | 0.0023 | nan | nan |
2459591 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.829506 | 3.541229 | 11.398287 | 3.183940 | 2.810159 | 1.295670 | 1.101864 | -0.826274 | 0.6468 | 0.6608 | 0.3765 | 3.624918 | 3.954881 |
2459590 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.059478 | 3.681769 | 10.994299 | 2.243647 | 2.491123 | 2.361424 | 0.670809 | -0.445866 | 0.6492 | 0.6600 | 0.3714 | 4.269852 | 4.264830 |
2459589 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.737374 | 3.250593 | 10.145260 | 1.566950 | 5.676253 | 1.581898 | 6.405083 | 2.257849 | 0.6665 | 0.6688 | 0.3139 | 3.640588 | 3.843025 |
2459588 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4.738518 | 3.167680 | 10.364522 | 3.754867 | 8.991520 | 2.460590 | 6.666692 | 1.910178 | 0.7552 | 0.7350 | 0.2304 | 6.721668 | 5.474048 |
2459587 | dish_ok | 100.00% | - | - | - | 100.00% | 0.00% | 354.093408 | 353.690421 | inf | inf | 111.992214 | 108.121779 | 516.674499 | 594.948225 | nan | nan | nan | 0.000000 | 0.000000 |
2459586 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.529710 | 1.495232 | 0.685286 | 0.047455 | 0.454480 | -0.037039 | 1.190838 | -0.484113 | 0.6446 | 0.6552 | 0.3664 | 3.574097 | 3.513161 |
2459585 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.432829 | 0.032976 | 1.854643 | -0.329892 | 0.807067 | -0.686358 | -0.455803 | -0.387714 | 0.0338 | 0.0316 | 0.0019 | 0.000000 | 0.000000 |
2459584 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 19.620945 | 19.750783 | 5.723496 | 7.294068 | 3.346749 | 12.187376 | 0.656105 | 0.256449 | 0.6044 | 0.6205 | 0.3703 | 0.000000 | 0.000000 |
2459583 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.324572 | 2.866812 | 2.414267 | 2.258979 | 2.116866 | 1.823119 | 0.667688 | 0.325292 | 0.6383 | 0.6495 | 0.3929 | 2.996903 | 2.957884 |
2459582 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.457700 | 3.013438 | 2.073824 | 1.990871 | 1.504372 | 2.166350 | 1.243844 | 1.393692 | 0.6484 | 0.6585 | 0.3886 | 3.914016 | 3.731414 |
2459581 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.100170 | 4.478787 | 3.029896 | 2.273919 | 1.337402 | 2.232789 | 0.487574 | -0.022362 | 0.6401 | 0.6539 | 0.3969 | 3.143689 | 3.156770 |
2459580 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.456478 | 3.096660 | 2.447215 | 2.462819 | 1.747839 | 2.574179 | 0.479748 | 0.392321 | 0.6544 | 0.6664 | 0.3849 | 4.419899 | 4.059331 |
2459579 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.524821 | 3.072479 | 3.070616 | 2.801002 | 1.736820 | 2.578699 | 0.840770 | 0.813052 | 0.6521 | 0.6642 | 0.3867 | 3.771266 | 3.932263 |
2459578 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.138119 | 0.941384 | 0.306567 | 0.552030 | 0.287321 | -0.182783 | 0.235173 | -0.579128 | 0.0303 | 0.0335 | 0.0034 | nan | nan |
2459577 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 9.624161 | 23.074249 | 1.991744 | 3.080526 | 7.230886 | 10.541040 | 15.952312 | 23.127872 | 0.6420 | 0.6424 | 0.3705 | 3.951111 | 3.692881 |
2459576 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.449051 | 2.730420 | 2.401411 | 1.087506 | 1.385690 | 0.688240 | 0.522638 | 0.156899 | 0.6701 | 0.6810 | 0.3847 | 0.000000 | 0.000000 |
2459575 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.984093 | 2.676374 | 1.633742 | 1.348461 | 1.087321 | 0.578897 | 2.086011 | 1.067634 | 0.7241 | 0.7249 | 0.3516 | 0.000000 | 0.000000 |
2459574 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.101240 | 2.828505 | 1.936198 | 1.008285 | 1.942873 | 0.630173 | 1.780692 | -0.953867 | 0.6729 | 0.6858 | 0.3740 | 3.746209 | 3.348399 |
2459573 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.216904 | 3.137930 | 3.091008 | 3.252840 | 1.044177 | 1.509759 | 0.480410 | -0.775295 | 0.6533 | 0.6662 | 0.3970 | 0.000000 | 0.000000 |
2459572 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.022978 | 2.827261 | 1.902565 | 1.207693 | 0.881518 | 1.118176 | 1.265043 | 0.657139 | 0.6567 | 0.6684 | 0.3967 | 4.311342 | 3.357764 |
2459571 | dish_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.068146 | 0.855278 | 0.175786 | 0.402850 | 0.859219 | -0.997846 | 0.166366 | -0.671850 | 0.0296 | 0.0363 | 0.0027 | 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 | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.047790 | 3.047807 | 2.540945 | 1.465883 | 2.977259 | 0.962966 | 2.959478 | 1.147231 | 0.7224 | 0.7285 | 0.2683 | 3.144576 | 3.025561 |
2459566 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 3.557055 | 3.062010 | 2.638964 | 2.109346 | 1.284970 | 0.770920 | 0.944919 | -1.056875 | 0.6588 | 0.6708 | 0.4009 | 8.335353 | 1.386516 |
2459565 | dish_ok | 0.00% | - | - | - | 100.00% | 0.00% | -2.569066 | -2.569066 | -2.410329 | -2.410329 | 0.475242 | 0.475242 | 0.005642 | 0.005642 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.502422 | 3.751235 | -0.156409 | 2.621271 | -0.749630 | 0.002746 | 0.108101 | -0.477929 | 0.6721 | 0.6643 | 0.3930 | 3.066847 | 2.684292 |
2459563 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.375607 | 8.156981 | 18.212059 | 23.739625 | 11.274057 | 15.902131 | 9.056070 | 7.688903 | 0.6524 | 0.6407 | 0.3992 | 0.000000 | 0.000000 |
2459562 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.733619 | 2.601644 | -0.500275 | 0.880320 | -1.612055 | -0.528146 | -0.111707 | -0.055210 | 0.6668 | 0.6588 | 0.3848 | 3.666381 | 2.900497 |
2459561 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.400956 | 3.024775 | 0.102717 | 1.450245 | -0.887590 | 0.082967 | -0.460690 | -0.764023 | 0.6674 | 0.6625 | 0.3841 | 1.888745 | 1.818057 |
2459560 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.867668 | 2.685041 | -0.323036 | 1.253826 | -0.659501 | 0.563317 | -0.052808 | -0.000977 | 0.6650 | 0.6560 | 0.3959 | 4.365294 | 3.304324 |
2459559 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.654360 | 3.687092 | 0.160652 | 1.739355 | -0.293030 | 1.037674 | -0.349286 | -0.445352 | 0.6659 | 0.6634 | 0.3903 | 2.921666 | 2.587372 |
2459558 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.329152 | 7.839314 | 9.780537 | 12.297936 | 10.512347 | 14.753330 | -0.972454 | -1.870641 | 0.6656 | 0.6554 | 0.4023 | 2.724315 | 2.555052 |
2459557 | dish_ok | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0360 | 0.0303 | 0.0010 | nan | nan |
2459556 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.528530 | 8.222722 | 10.060076 | 12.657791 | 9.337372 | 13.212654 | -2.104185 | -3.329560 | 0.6732 | 0.6666 | 0.3877 | 2.875497 | 2.733093 |
2459554 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6633 | 0.6552 | 0.4066 | nan | nan |
2459553 | dish_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6689 | 0.6629 | 0.3990 | nan | nan |
2459552 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.988303 | 9.410009 | 12.906868 | 17.510314 | 13.100720 | 20.472481 | 0.546120 | 0.249780 | 0.6690 | 0.6597 | 0.4069 | 8.004614 | 0.000000 |
2459551 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.208772 | 2.713938 | -0.206246 | 1.511627 | -1.557200 | 0.443519 | -1.361403 | -2.108821 | 0.6588 | 0.6552 | 0.4012 | 3.007037 | 2.719259 |
2459550 | dish_ok | - | 98.35% | 98.35% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0371 | 0.0378 | 0.0022 | nan | nan |
2459549 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.277649 | 7.549208 | 9.655876 | 12.886363 | 10.061620 | 14.663749 | -1.104434 | -2.527636 | 0.6589 | 0.6561 | 0.4113 | 2.825877 | 2.727444 |
2459542 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.670018 | 7.776602 | 19.123245 | 25.688623 | 0.033221 | 1.122230 | -1.230844 | -2.188514 | 0.7247 | 0.7080 | 0.3786 | 4.508431 | 3.851035 |
2459541 | dish_ok | 100.00% | 1.34% | 1.34% | 0.00% | 100.00% | 0.00% | 5.212721 | 6.662926 | 11.673933 | 15.122354 | 7.344400 | 11.688015 | 3.314583 | 3.727805 | 0.7131 | 0.6925 | 0.3526 | 3.127501 | 3.162994 |
2459540 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.719026 | 4.301619 | 1.492261 | 2.719833 | -0.029876 | 1.833077 | -0.188359 | 0.244417 | 0.7209 | 0.6867 | 0.3780 | 3.010482 | 2.551272 |
2459536 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.394472 | 11.829017 | 15.428447 | 21.151927 | 13.961279 | 20.708101 | -1.519363 | -4.171702 | 0.7002 | 0.6974 | 0.4166 | 3.845627 | 3.238689 |
2459535 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.097007 | 2.915414 | 1.051897 | 2.320207 | -2.883212 | 1.390696 | -1.509801 | -1.507704 | 0.7581 | 0.7178 | 0.3985 | 2.759175 | 2.604569 |
2459534 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.453915 | 2.679859 | 0.237384 | 1.464517 | -1.849531 | 0.336889 | -0.386878 | -1.581699 | 0.7450 | 0.7188 | 0.3823 | 2.913787 | 2.890364 |
2459533 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.827907 | 8.430733 | 10.154976 | 13.101408 | 8.610818 | 13.162495 | -1.383533 | -2.515403 | 0.6881 | 0.6785 | 0.4059 | 2.910707 | 2.864848 |
2459532 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.913414 | 9.783966 | 13.166564 | 16.773443 | 9.850913 | 16.474424 | -1.197941 | -2.337909 | 0.6887 | 0.6765 | 0.4079 | 3.216952 | 3.167294 |
2459530 | dish_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.073892 | 2.733970 | -0.034636 | 1.253419 | -1.520914 | 0.505590 | -1.315488 | -1.456816 | 0.7122 | 0.6961 | 0.4073 | 3.033029 | 2.875459 |
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.894476 | 4.921949 | 4.022481 | 9.113417 | 2.315618 | -0.065782 | 0.167997 | -0.790197 | 0.0383 | 0.0328 | 0.0014 | nan | nan |
2459508 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.808402 | 8.810798 | 8.798079 | 10.676553 | 9.096756 | 10.350166 | 8.189305 | 12.281454 | 0.8660 | 0.8690 | 0.3020 | 0.000000 | 0.000000 |
2459505 | dish_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.500730 | 6.195966 | 10.636153 | 12.394236 | 2.817012 | 6.553339 | -0.865072 | -0.486918 | 0.8669 | 0.8145 | 0.2508 | 6.758732 | 6.112065 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 21.333721 | -1.063063 | 0.270635 | -0.060833 | 0.394639 | 20.870586 | 21.333721 | 17.775646 | 18.465190 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.949382 | -1.078296 | -0.197967 | 0.258836 | 0.058510 | 1.122412 | 1.949382 | -1.064799 | -0.415142 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.365307 | -1.330941 | -0.105485 | -0.314199 | 0.079617 | 1.056963 | 2.365307 | 0.051290 | -0.015930 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.117117 | -0.240917 | -1.440470 | 0.609911 | -0.383712 | 1.117117 | -0.112762 | -0.372945 | 0.540823 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.512372 | -0.230963 | -1.078063 | 0.658728 | 0.135668 | 2.512372 | 1.540735 | -0.410532 | -0.678805 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.964716 | -1.246176 | -0.203672 | 0.038754 | -0.055089 | 2.131248 | 2.964716 | 1.463416 | 1.147412 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.925298 | 0.025464 | -1.244120 | -0.325773 | 0.533611 | 2.925298 | 2.419705 | -0.223550 | -0.712356 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.797947 | -1.070612 | -0.112583 | 0.070906 | -0.327095 | 1.032105 | 1.797947 | -0.440638 | -0.454538 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 3.091302 | -1.086673 | -0.339989 | -0.215337 | 0.203652 | 1.717874 | 3.091302 | -1.115672 | -0.210725 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.925412 | -1.105050 | -0.029890 | -0.393222 | 0.093944 | 2.603213 | 2.925412 | 0.306719 | 0.118403 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.857612 | -0.807235 | -0.219026 | -0.123632 | 0.223541 | 0.354799 | 1.857612 | -0.866807 | -0.669722 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.872001 | -0.036273 | -0.715570 | -0.170970 | -0.037011 | 1.872001 | 1.738799 | -0.146343 | 1.783171 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 2.143498 | -0.871088 | -0.123386 | 0.133759 | -0.155275 | 2.143498 | 1.851387 | -0.513766 | -0.138388 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.606806 | -0.263807 | -0.864389 | -0.514980 | 0.646616 | 1.606806 | 1.527449 | -0.038492 | -0.496569 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.607372 | -0.904646 | 0.188344 | -0.147003 | -0.267112 | 1.465673 | 1.607372 | -1.209749 | -0.273477 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 9.583244 | -0.351621 | -1.078695 | -0.561040 | 0.289361 | 1.970030 | 2.008864 | 2.493281 | 9.583244 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 2.841861 | 0.205110 | -1.079759 | -0.079892 | -0.557752 | 0.897591 | 0.785258 | 0.351881 | 2.841861 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.292576 | -0.150263 | -1.559716 | 0.362932 | 0.382189 | 1.292576 | 0.595961 | -0.300667 | 0.384095 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 1.105365 | 0.631979 | -0.834555 | -0.053605 | 1.105365 | 0.478145 | 0.671659 | -0.893399 | -1.177236 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 14.647376 | -1.307755 | 1.297379 | 1.359296 | 0.018535 | 11.621406 | 1.449393 | 14.647376 | -0.074049 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 15.626471 | 7.355878 | 1.316558 | 13.031701 | 0.753889 | 15.626471 | 1.279877 | -2.395732 | 1.229050 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 16.212481 | 6.203431 | 1.417625 | 13.730631 | 1.053564 | 16.212481 | 1.563547 | -1.245704 | 0.074075 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 11.703729 | 1.780524 | 5.924518 | 0.449337 | 11.703729 | 1.646354 | 10.343088 | 2.380550 | 0.662516 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 14.873901 | 5.714344 | 1.237077 | 13.816555 | 0.477839 | 14.873901 | 2.433890 | -0.072232 | 0.746362 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 38.601093 | 10.510646 | 0.499340 | 38.601093 | 6.236448 | 31.836116 | 1.821731 | -1.647524 | -0.441814 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 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 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.255405 | -0.987456 | 0.857022 | 0.010493 | 0.201256 | -0.644515 | 2.255405 | -0.099087 | -0.036208 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Shape | 1.842103 | -1.186089 | 1.842103 | -0.142452 | 0.390685 | -0.677554 | 1.331747 | -0.947670 | -0.116600 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.333777 | 0.142531 | -1.007255 | 0.665038 | -0.878442 | 1.333777 | -0.039592 | 0.132952 | -0.379105 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.315750 | -1.229713 | 0.359993 | -0.218864 | 1.223930 | -0.760919 | 1.315750 | -0.863568 | 0.217379 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 2.429083 | -0.889081 | -0.885023 | 1.278334 | 0.017320 | 0.525759 | -0.250505 | -0.080260 | 2.429083 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 1.575635 | -0.874399 | -0.203957 | -0.347639 | 0.046672 | -0.221559 | 0.311765 | 1.575635 | -0.137673 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 1.251682 | -0.123282 | 0.021622 | -0.016403 | 0.271120 | 0.263248 | 0.363787 | 0.082923 | 1.251682 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 0.287470 | -0.166735 | -0.200310 | 0.287470 | 0.055640 | 0.247896 | 0.197370 | 0.034645 | -0.274395 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 0.267592 | -0.890704 | -0.503823 | -0.526816 | -0.856830 | 0.039947 | -0.102883 | 0.267592 | -0.584043 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 0.746419 | -0.982379 | -0.560214 | -0.561906 | -0.900832 | -0.793045 | -0.946176 | 0.746419 | -0.496061 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 2.212519 | -0.529857 | -0.896343 | -0.481746 | -0.378353 | -0.570098 | -0.502312 | -0.340854 | 2.212519 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 0.500209 | -0.257606 | -0.373497 | 0.107364 | 0.243228 | -0.191520 | 0.105377 | 0.175776 | 0.500209 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 0.241096 | -0.057953 | -0.006543 | 0.241096 | 0.235595 | 0.025496 | -0.167886 | 0.158622 | -0.066409 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 1.260542 | -0.590886 | -1.182565 | -0.295388 | -0.613756 | 0.040877 | 0.787526 | 1.260542 | -0.267355 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 5.354688 | -0.074426 | -0.251984 | 0.004132 | -0.176200 | 1.299439 | 1.714915 | 5.108437 | 5.354688 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Power | 0.189154 | -0.566601 | -0.743181 | -0.101293 | 0.189154 | -0.517519 | -0.827598 | -0.360312 | -0.181198 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 5.843741 | -0.784468 | -0.761048 | -0.533831 | -0.322751 | -0.941970 | 1.728213 | 1.143840 | 5.843741 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 0.489386 | -0.898901 | -0.365382 | -0.332463 | 0.195769 | -0.138960 | 0.050061 | -0.391977 | 0.489386 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 1.029241 | -0.582255 | -0.265729 | -0.009164 | -0.213519 | -0.013548 | -0.092218 | 1.029241 | -0.299191 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 0.490807 | -0.617408 | -0.791676 | 0.005115 | 0.105357 | 0.159297 | 0.490807 | -0.496763 | -0.262561 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 0.218276 | -0.479921 | -0.620673 | -0.003890 | 0.218276 | -0.354720 | -0.020767 | -0.627923 | -0.381392 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 2.444864 | -0.687304 | -0.360712 | 0.379137 | 0.237556 | 0.699069 | 0.471986 | 2.444864 | 0.044368 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Discontinuties | 2.297756 | -0.330151 | -0.919765 | 0.720463 | 0.042426 | 0.603940 | 0.394538 | -0.253783 | 2.297756 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 0.042896 | -0.093698 | -1.068054 | -0.200927 | -0.158689 | -0.512495 | 0.042896 | -0.611662 | -0.635251 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 0.211476 | -0.121341 | -0.704369 | 0.117735 | 0.211476 | -0.873341 | -0.591142 | -0.289563 | 0.147009 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Discontinuties | 0.342400 | -0.332620 | -1.067804 | -0.144269 | 0.099102 | -0.495989 | -0.416579 | 0.342400 | -0.471568 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 0.830460 | -0.540406 | -0.845137 | -0.928389 | -0.848560 | 0.100502 | 0.830460 | -0.708311 | 0.040858 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | Not Found | ee Temporal Variability | 1.636619 | -0.630640 | -0.718342 | -0.956892 | -0.047200 | 0.328271 | 1.636619 | -0.590869 | -0.125866 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Power | 0.451376 | -0.341326 | -0.038842 | 0.451376 | 0.300487 | -0.509960 | -0.735663 | -0.194311 | -0.352771 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Shape | -0.003457 | -0.003457 | -0.968534 | -0.696041 | -0.574193 | -0.250770 | -0.748589 | -1.533151 | -1.079096 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 0.013534 | -0.581242 | -1.145553 | -0.775761 | -0.310416 | -0.089676 | 0.013534 | -0.495414 | -0.291338 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.990178 | 0.087895 | -0.470691 | -0.616013 | -0.686918 | 1.990178 | 1.414981 | -0.427845 | -0.358441 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Discontinuties | -0.190118 | -0.544953 | -0.463501 | -0.651561 | -0.816381 | -1.625908 | -1.112658 | -0.413725 | -0.190118 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.222064 | 0.052236 | -0.852510 | -0.876198 | -0.278981 | 1.222064 | -0.526292 | -0.557004 | -0.060525 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 0.681429 | -0.477747 | -0.823394 | -0.704475 | 0.009779 | 0.681429 | -0.775541 | -0.381145 | -0.042119 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Shape | 1.230327 | 1.230327 | 1.097305 | 0.007264 | -0.570183 | 0.529035 | -0.050496 | -0.115979 | 0.068930 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.161982 | -1.004557 | -0.270077 | -0.853811 | -0.546773 | -0.011876 | 1.161982 | -0.095700 | -0.447445 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.506014 | -0.925060 | -0.512911 | -1.015170 | -0.937211 | 0.575743 | 1.506014 | -0.279582 | -0.450467 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.179356 | -0.975697 | -0.560482 | -0.824230 | -0.948316 | 0.629318 | 1.179356 | -0.240085 | -0.764986 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Shape | 2.981975 | 2.837709 | 2.981975 | 0.142579 | -0.453535 | 0.280605 | 1.678436 | -0.173887 | 0.832725 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.437485 | -0.703008 | -0.951166 | -1.031066 | -1.049015 | 1.437485 | 0.819337 | -0.532406 | -0.237601 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.811516 | -0.920129 | -1.092278 | -0.951763 | -1.101843 | 1.359409 | 1.811516 | -0.416562 | -0.700882 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 2.724521 | -0.857456 | -0.733114 | -0.941429 | -0.927985 | 2.724521 | 2.396380 | 0.018163 | -0.556749 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.082495 | -0.822028 | -0.423666 | -0.792395 | -0.886928 | 0.589934 | 1.082495 | -0.072776 | -0.469597 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.330362 | -1.051965 | -0.858128 | -0.967150 | -1.061324 | 0.963970 | 1.330362 | -0.419179 | -0.624220 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Shape | 3.347763 | 2.659860 | 3.347763 | 0.202050 | 0.129029 | 1.147496 | 1.356665 | 0.292123 | -0.103814 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 0.558017 | -0.744938 | -0.874737 | -0.812499 | -0.764224 | 0.558017 | 0.003401 | -0.686435 | -0.694167 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 0.241797 | -0.975583 | -0.813277 | -0.917769 | -0.907105 | -0.037858 | 0.241797 | -0.150997 | -0.537792 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Temporal Variability | 0.772984 | -0.507393 | -0.707190 | -0.768866 | -0.656937 | 0.669000 | 0.772984 | -0.285085 | -0.232056 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 2.447316 | -0.305805 | -0.880721 | -0.882452 | -0.748581 | 2.447316 | 1.026639 | -0.553018 | -0.031312 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 0.886437 | -0.754576 | -0.876085 | -0.730943 | -0.855920 | 0.886437 | 0.051680 | -0.521004 | 0.019098 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Shape | 2.437035 | 2.370139 | 2.437035 | -0.638852 | -0.002195 | 0.555881 | 1.215385 | -0.395167 | -0.450055 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.149624 | -0.969932 | -0.667109 | -0.844201 | -0.713209 | -0.167050 | 1.149624 | -0.025829 | -0.600937 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Shape | 3.118953 | 3.118953 | 2.806181 | -0.315422 | -0.358913 | 0.975118 | 0.760458 | -0.173653 | -0.219695 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | nn Shape | -0.043701 | -0.043701 | -0.110021 | -0.703940 | -0.673081 | -0.894387 | -0.108949 | -0.561379 | -0.476336 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | digital_ok | ee Temporal Variability | 1.042184 | 0.027855 | 0.005395 | -0.493573 | -0.557541 | 0.209463 | 1.042184 | -0.488664 | -0.559099 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | nn Shape | 2.830234 | 2.442555 | 2.830234 | -0.579546 | 0.194140 | 0.660468 | 1.473429 | 0.079194 | 0.213307 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | nn Shape | 0.750589 | 0.750589 | 0.320792 | -1.444819 | -0.559265 | -1.169157 | -0.957707 | -0.817226 | -0.381406 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | ee Temporal Variability | 1.026765 | 0.039445 | -0.021175 | -0.416953 | -0.529789 | 0.025862 | 1.026765 | -0.566894 | -0.549211 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | ee Temporal Variability | 1.389472 | -0.687329 | 0.028317 | -0.960788 | -0.933937 | 0.388296 | 1.389472 | -0.117248 | -0.397758 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | ee Temporal Variability | 0.370369 | -0.550494 | 0.265778 | -1.277421 | -0.753360 | -0.723703 | 0.370369 | 0.168097 | -1.423583 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | ee Shape | 2.161285 | 2.161285 | 2.092103 | -0.893143 | -0.358480 | -0.015933 | -0.567703 | 0.870532 | -0.523368 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | nn Shape | 2.392205 | 2.392205 | 2.319825 | -0.006657 | -0.454307 | 0.200540 | 0.039906 | -0.280735 | 0.159470 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | ee Temporal Discontinuties | 11906.083028 | 3237.563305 | 3237.563305 | 3040.134341 | 3040.134341 | 2365.032501 | 2365.032501 | 11906.083028 | 11906.083028 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | nn Temporal Discontinuties | 2882.540480 | 772.543135 | 772.543135 | 700.612528 | 700.612528 | 725.380782 | 725.380782 | 2882.540480 | 2882.540480 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | ee Temporal Discontinuties | 1845.137770 | 642.769449 | 642.769449 | 659.603509 | 659.603509 | 577.654539 | 577.654539 | 1845.137770 | 1845.137770 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | N02 | dish_ok | nn Shape | 2.594742 | 2.594742 | 2.387144 | -0.365076 | -0.720455 | 0.466049 | -0.070502 | -0.488555 | -0.310502 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 2 | dish_ok | nn Shape | 2.521557 | 1.965254 | 2.521557 | -0.513168 | 0.028697 | 1.182327 | 2.002585 | -0.060571 | 0.385794 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 2 | dish_ok | nn Shape | 8.233360 | 7.458534 | 8.233360 | -0.393261 | -0.160330 | 0.160550 | 0.139050 | 0.639599 | 0.124592 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 2 | dish_ok | ee Power | 8.603336 | 3.509458 | 2.380420 | 8.603336 | 0.699905 | 3.822023 | 1.242217 | 2.836003 | -0.391443 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 2 | dish_ok | ee Power | 9.358852 | 4.483925 | 3.203059 | 9.358852 | 1.402750 | 5.663271 | 1.240190 | 3.215280 | -0.564865 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
9 | 2 | dish_ok | ee Power | 7.825884 | 4.450921 | 2.710572 | 7.825884 | 0.006272 | 4.828252 | 0.712658 | 2.853773 | -0.424839 |