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 = "92" csv_folder = "/home/obs/src/H5C_Notebooks/_rtp_summary_" auto_metrics_folder = "/home/obs/src/H5C_Notebooks/auto_metrics_inspect"
display(HTML(f'<h1 style=font-size:50px><u>Antenna {antenna} Report</u><p></p></h1>'))
import numpy as np
import pandas as pd
pd.set_option('display.max_rows', 1000)
import glob
import re
from hera_notebook_templates.utils import status_colors, Antenna
# load csvs and auto_metrics htmls in reverse chronological order
csvs = sorted(glob.glob(os.path.join(csv_folder, 'rtp_summary_table*.csv')))[::-1]
print(f'Found {len(csvs)} csvs in {csv_folder}')
auto_metric_htmls = sorted(glob.glob(auto_metrics_folder + '/auto_metrics_inspect_*.html'))[::-1]
print(f'Found {len(auto_metric_htmls)} auto_metrics notebooks in {auto_metrics_folder}')
Found 255 csvs in /home/obs/src/H5C_Notebooks/_rtp_summary_ Found 248 auto_metrics notebooks in /home/obs/src/H5C_Notebooks/auto_metrics_inspect
# Per-season options
mean_round_modz_cut = 4
dead_cut = 0.4
crossed_cut = 0.0
def jd_to_summary_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/_rtp_summary_/rtp_summary_{jd}.html'
def jd_to_auto_metrics_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/auto_metrics_inspect/auto_metrics_inspect_{jd}.html'
this_antenna = None
jds = []
# parse information about antennas and nodes
for csv in csvs:
df = pd.read_csv(csv)
for n in range(len(df)):
# Add this day to the antenna
row = df.loc[n]
if isinstance(row['Ant'], str) and '<a href' in row['Ant']:
antnum = int(row['Ant'].split('</a>')[0].split('>')[-1]) # it's a link, extract antnum
else:
antnum = int(row['Ant'])
if antnum != int(antenna):
continue
if np.issubdtype(type(row['Node']), np.integer):
row['Node'] = str(row['Node'])
if type(row['Node']) == str and row['Node'].isnumeric():
row['Node'] = 'N' + ('0' if len(row['Node']) == 1 else '') + row['Node']
if this_antenna is None:
this_antenna = Antenna(row['Ant'], row['Node'])
jd = [int(s) for s in re.split('_|\.', csv) if s.isdigit()][-1]
jds.append(jd)
this_antenna.add_day(jd, row)
break
# build dataframe
to_show = {'JDs': [f'<a href="{jd_to_summary_url(jd)}" target="_blank">{jd}</a>' for jd in jds]}
to_show['A Priori Status'] = [this_antenna.statuses[jd] for jd in jds]
df = pd.DataFrame(to_show)
# create bar chart columns for flagging percentages:
bar_cols = {}
bar_cols['Auto Metrics Flags'] = [this_antenna.auto_flags[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jee)'] = [this_antenna.dead_flags_Jee[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jnn)'] = [this_antenna.dead_flags_Jnn[jd] for jd in jds]
bar_cols['Crossed Fraction in Ant Metrics'] = [this_antenna.crossed_flags[jd] for jd in jds]
bar_cols['Flag Fraction Before Redcal'] = [this_antenna.flags_before_redcal[jd] for jd in jds]
bar_cols['Flagged By Redcal chi^2 Fraction'] = [this_antenna.redcal_flags[jd] for jd in jds]
for col in bar_cols:
df[col] = bar_cols[col]
z_score_cols = {}
z_score_cols['ee Shape Modified Z-Score'] = [this_antenna.ee_shape_zs[jd] for jd in jds]
z_score_cols['nn Shape Modified Z-Score'] = [this_antenna.nn_shape_zs[jd] for jd in jds]
z_score_cols['ee Power Modified Z-Score'] = [this_antenna.ee_power_zs[jd] for jd in jds]
z_score_cols['nn Power Modified Z-Score'] = [this_antenna.nn_power_zs[jd] for jd in jds]
z_score_cols['ee Temporal Variability Modified Z-Score'] = [this_antenna.ee_temp_var_zs[jd] for jd in jds]
z_score_cols['nn Temporal Variability Modified Z-Score'] = [this_antenna.nn_temp_var_zs[jd] for jd in jds]
z_score_cols['ee Temporal Discontinuties Modified Z-Score'] = [this_antenna.ee_temp_discon_zs[jd] for jd in jds]
z_score_cols['nn Temporal Discontinuties Modified Z-Score'] = [this_antenna.nn_temp_discon_zs[jd] for jd in jds]
for col in z_score_cols:
df[col] = z_score_cols[col]
ant_metrics_cols = {}
ant_metrics_cols['Average Dead Ant Metric (Jee)'] = [this_antenna.Jee_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Dead Ant Metric (Jnn)'] = [this_antenna.Jnn_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Crossed Ant Metric'] = [this_antenna.crossed_metrics[jd] for jd in jds]
for col in ant_metrics_cols:
df[col] = ant_metrics_cols[col]
redcal_cols = {}
redcal_cols['Median chi^2 Per Antenna (Jee)'] = [this_antenna.Jee_chisqs[jd] for jd in jds]
redcal_cols['Median chi^2 Per Antenna (Jnn)'] = [this_antenna.Jnn_chisqs[jd] for jd in jds]
for col in redcal_cols:
df[col] = redcal_cols[col]
# style dataframe
table = df.style.hide_index()\
.applymap(lambda val: f'background-color: {status_colors[val]}' if val in status_colors else '', subset=['A Priori Status']) \
.background_gradient(cmap='viridis', vmax=mean_round_modz_cut * 3, vmin=0, axis=None, subset=list(z_score_cols.keys())) \
.background_gradient(cmap='bwr_r', vmin=dead_cut-.25, vmax=dead_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.background_gradient(cmap='bwr_r', vmin=crossed_cut-.25, vmax=crossed_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.background_gradient(cmap='plasma', vmax=4, vmin=1, axis=None, subset=list(redcal_cols.keys())) \
.applymap(lambda val: 'font-weight: bold' if val < dead_cut else '', subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val < crossed_cut else '', subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.applymap(lambda val: 'color: red' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.bar(subset=list(bar_cols.keys()), vmin=0, vmax=1) \
.format({col: '{:,.4f}'.format for col in z_score_cols}) \
.format({col: '{:,.4f}'.format for col in ant_metrics_cols}) \
.format('{:,.2%}', na_rep='-', subset=list(bar_cols.keys())) \
.set_table_styles([dict(selector="th",props=[('max-width', f'70pt')])])
This table reproduces each night's row for this antenna from the RTP Summary notebooks. For more info on the columns, see those notebooks, linked in the JD column.
display(HTML(f'<h2>Antenna {antenna}, Node {this_antenna.node}:</h2>'))
HTML(table.render(render_links=True, escape=False))
JDs | A Priori Status | Auto Metrics Flags | Dead Fraction in Ant Metrics (Jee) | Dead Fraction in Ant Metrics (Jnn) | Crossed Fraction in Ant Metrics | Flag Fraction Before Redcal | Flagged By Redcal chi^2 Fraction | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | Average Dead Ant Metric (Jee) | Average Dead Ant Metric (Jnn) | Average Crossed Ant Metric | Median chi^2 Per Antenna (Jee) | Median chi^2 Per Antenna (Jnn) |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2459810 | RF_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459809 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 42.726618 | 55.058187 | 2.922592 | 4.499085 | 30.461183 | 45.723252 | 1.135684 | 6.542389 | 0.2692 | 0.1856 | 0.1166 | 0.000000 | 0.000000 |
2459808 | RF_maintenance | 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 |
2459807 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 29.154071 | 43.990271 | 7.889560 | 9.716336 | 24.594607 | 26.645453 | 18.668777 | 33.559139 | 0.2678 | 0.2153 | 0.0983 | 4.326353 | 3.282166 |
2459806 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 52.900797 | 68.677220 | 4.183287 | 5.777436 | 33.551848 | 38.064366 | 3.583490 | 18.706401 | 0.2288 | 0.1805 | 0.0747 | 3.337434 | 2.956720 |
2459805 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 26.368195 | 38.376772 | 11.831507 | 14.010330 | 20.887704 | 25.220455 | 6.842164 | 11.594299 | 0.2422 | 0.1934 | 0.0959 | 3.061932 | 2.147405 |
2459804 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 30.477263 | 44.262850 | 10.569719 | 13.887573 | 23.092687 | 27.429722 | 4.265092 | 7.842080 | 0.2527 | 0.2024 | 0.0940 | 3.121062 | 2.342419 |
2459803 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 36.648342 | 54.032390 | 13.292013 | 17.028613 | 24.400968 | 26.899606 | 13.256272 | 26.142263 | 0.2680 | 0.2183 | 0.0973 | 3.414483 | 2.261204 |
2459802 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 40.560146 | 56.934735 | 6.746482 | 9.011893 | 35.999960 | 42.245918 | 5.175465 | 15.308827 | 0.2592 | 0.1979 | 0.0996 | 0.000000 | 0.000000 |
2459801 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 31.054561 | 43.986220 | 9.873461 | 12.429914 | 40.968824 | 46.570463 | 13.546801 | 32.429715 | 0.2716 | 0.2172 | 0.0979 | 4.230938 | 3.231977 |
2459800 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 32.320180 | 46.457640 | 10.061669 | 12.416654 | 26.442583 | 28.394779 | 20.591103 | 40.700854 | 0.2731 | 0.2215 | 0.1010 | 4.911511 | 3.629641 |
2459799 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 49.870470 | 63.424510 | 4.047264 | 5.567960 | 45.133966 | 50.323118 | 2.584566 | 13.335164 | 0.2386 | 0.1877 | 0.0761 | 2.846731 | 2.520834 |
2459798 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 30.805304 | 43.411968 | 9.987511 | 12.813467 | 22.971632 | 23.888627 | 12.692491 | 22.030306 | 0.2635 | 0.2102 | 0.0970 | 3.338594 | 2.759310 |
2459797 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 26.241532 | 38.601826 | 9.374454 | 11.405415 | 29.703177 | 30.602846 | 17.445501 | 32.824218 | 0.2739 | 0.2188 | 0.1019 | 2.975159 | 2.002653 |
2459796 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 28.515932 | 39.857045 | 12.078233 | 16.150285 | 25.200169 | 25.998230 | 16.974036 | 29.611026 | 0.2716 | 0.2186 | 0.0940 | 2.605716 | 2.222079 |
2459795 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 32.969060 | 46.615119 | 9.824563 | 12.942581 | 27.076762 | 27.284228 | 16.056929 | 30.036812 | 0.2740 | 0.2222 | 0.1019 | 3.651860 | 2.740658 |
2459794 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 32.301335 | 47.996895 | 10.143893 | 13.608414 | 35.948650 | 36.321995 | 25.326642 | 38.289587 | 0.1079 | 0.1032 | 0.0151 | 0.000000 | 0.000000 |
2459793 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 24.842994 | 39.414763 | 9.653148 | 13.007637 | 36.042587 | 37.300654 | 11.205292 | 19.238826 | 0.0974 | 0.0950 | 0.0127 | 0.000000 | 0.000000 |
2459792 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 48.209155 | 68.454153 | 3.952074 | 5.742209 | 28.598470 | 33.732034 | 8.945372 | 8.659425 | 0.0776 | 0.0776 | 0.0052 | 0.000000 | 0.000000 |
2459791 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 30.092733 | 47.178109 | 10.922512 | 13.955293 | 38.757120 | 39.220797 | 6.696749 | 8.710528 | 0.0958 | 0.0924 | 0.0126 | 0.972598 | 0.976625 |
2459790 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 48.456506 | 74.710902 | 9.957742 | 12.310009 | 50.977011 | 54.789464 | 10.601602 | 26.232621 | 0.0959 | 0.0923 | 0.0127 | 7.996896 | 9.797230 |
2459789 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 43.942106 | 68.271209 | 10.563153 | 13.335106 | 48.268747 | 49.737059 | 23.362422 | 48.563205 | 0.0933 | 0.0901 | 0.0121 | 0.000000 | 0.000000 |
2459788 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 39.405324 | 59.259880 | 10.612650 | 13.312654 | 54.024175 | 57.044390 | 9.535531 | 22.980692 | 0.0769 | 0.0746 | 0.0102 | 0.000000 | 0.000000 |
2459787 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 40.308950 | 62.370823 | 7.873692 | 9.487029 | 34.006234 | 36.159644 | 8.750439 | 15.968508 | 0.1047 | 0.0981 | 0.0133 | 0.000000 | 0.000000 |
2459786 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 43.396074 | 67.949436 | 8.920015 | 11.591281 | 54.931139 | 58.775750 | 10.071593 | 19.767939 | 0.0929 | 0.0908 | 0.0100 | 0.000000 | 0.000000 |
2459785 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 38.382466 | 54.598463 | 7.318850 | 10.080597 | 30.756956 | 36.946114 | 18.188532 | 15.381902 | 0.0780 | 0.0783 | 0.0059 | 0.000000 | 0.000000 |
2459784 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 40.818227 | 61.182087 | 8.437885 | 10.404199 | 51.714714 | 53.068430 | 1.066954 | 3.152131 | 0.0985 | 0.0936 | 0.0116 | 0.000000 | 0.000000 |
2459783 | digital_ok | 100.00% | 88.95% | 100.00% | 0.00% | 100.00% | 0.00% | 36.337462 | 53.899596 | 3.651008 | 6.640504 | 24.004193 | 24.487794 | 6.910155 | 13.819661 | 0.3034 | 0.2424 | 0.1096 | 4.506955 | 4.067597 |
2459782 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459781 | digital_ok | 100.00% | 79.14% | 100.00% | 0.00% | 100.00% | 0.00% | 6.461609 | 9.805749 | 2.448681 | 4.744797 | 16.211044 | 16.385882 | 1.741192 | 4.767011 | 0.3558 | 0.2589 | 0.1617 | 2.662643 | 2.295693 |
2459778 | digital_ok | 100.00% | 63.48% | 87.65% | 0.00% | 100.00% | 0.00% | 11.593171 | 11.630566 | 0.841965 | 4.284127 | 13.740275 | 13.934146 | 2.689926 | 12.038813 | 0.3688 | 0.3436 | 0.1728 | 4.005597 | 4.349483 |
2459776 | digital_ok | 100.00% | 67.70% | 95.46% | 0.00% | 100.00% | 0.00% | 22.825905 | 23.701625 | -0.060756 | 2.388368 | 16.510953 | 17.061814 | 2.043161 | 11.664695 | 0.3608 | 0.3211 | 0.1591 | 2.842327 | 2.754499 |
2459774 | digital_ok | - | 66.77% | 89.62% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.3589 | 0.3233 | 0.1705 | nan | nan |
2459773 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.217859 | 11.646280 | 4.974547 | 0.928805 | 18.164682 | 12.449799 | -1.037273 | 11.484942 | 0.2968 | 0.3108 | 0.1327 | 5.408757 | 7.749032 |
2459772 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 4.639827 | 6.832204 | 0.357975 | 0.353269 | 3.895887 | 1.268558 | -0.454228 | 6.378242 | 0.3157 | 0.3283 | 0.1324 | 5.163450 | 8.290913 |
2459771 | digital_ok | 100.00% | 57.57% | 88.18% | 0.00% | 100.00% | 0.00% | 5.036405 | 7.292010 | -0.136168 | 0.851046 | 2.408345 | 2.271817 | 0.013949 | 8.712002 | 0.3754 | 0.3559 | 0.1670 | 4.916047 | 6.157487 |
2459770 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 8.529257 | 12.129150 | 3.949526 | 0.619293 | 11.954200 | 6.755883 | -0.920584 | 4.511005 | 0.3110 | 0.3228 | 0.1370 | 4.825475 | 9.040197 |
2459769 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.787861 | 13.705923 | 5.695902 | 0.623847 | 14.818226 | 7.783119 | -0.560555 | 9.002114 | 0.3074 | 0.3199 | 0.1388 | 4.440390 | 8.115228 |
2459768 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 10.376573 | 14.565911 | 6.184889 | 0.820153 | 13.316206 | 5.845562 | -1.837233 | 15.392149 | 0.3130 | 0.3246 | 0.1373 | 5.445089 | 9.570416 |
2459767 | digital_ok | 100.00% | 78.49% | 100.00% | 0.00% | 100.00% | 0.00% | 6.359859 | 10.027931 | 0.583086 | 0.249351 | 3.042088 | 1.627700 | -0.938764 | 8.820092 | 0.3542 | 0.3602 | 0.1322 | 4.330382 | 6.587952 |
2459766 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 5.869765 | 9.389870 | 0.178103 | 0.264522 | 2.605238 | 0.714737 | -0.751517 | 7.906306 | 0.3226 | 0.3313 | 0.1381 | 4.457928 | 7.912300 |
2459765 | digital_ok | 100.00% | 97.31% | 100.00% | 0.00% | 100.00% | 0.00% | 12.606316 | 18.678253 | 7.554560 | 1.104074 | 15.124143 | 7.180606 | -1.441428 | 18.054526 | 0.3259 | 0.3329 | 0.1395 | 5.594353 | 9.598369 |
2459764 | RF_maintenance | - | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459763 | 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 |
2459761 | digital_ok | 100.00% | 86.56% | 100.00% | 0.00% | 100.00% | 0.00% | 10.145776 | 16.059453 | 4.614056 | 0.694615 | 6.796480 | 6.202437 | -1.531497 | 17.850371 | 0.3328 | 0.3271 | 0.1449 | 2.682214 | 2.887700 |
2459760 | 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 |
2459759 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.676278 | 12.004474 | 26.593251 | 27.612906 | 3.468008 | 2.970578 | 4.360712 | 5.390960 | 0.0410 | 0.0619 | 0.0074 | 1.239173 | 1.261821 |
2459758 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 15.315864 | 19.061187 | 39.732098 | 41.600119 | 8.067421 | 5.420877 | 4.316075 | 5.455733 | 0.0334 | 0.0434 | 0.0037 | 1.324972 | 1.371347 |
2459757 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 10.914565 | 13.163209 | 37.770313 | 39.042051 | 6.852052 | 5.900163 | 4.835756 | 6.042641 | 0.0330 | 0.0448 | 0.0043 | 1.297219 | 1.318874 |
2459755 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 16.139200 | 20.010353 | 35.912933 | 37.338245 | 11.196100 | 8.322294 | 3.482351 | 4.346234 | 0.0345 | 0.0469 | 0.0054 | 1.426370 | 1.458928 |
2459754 | 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 |
2459753 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 18.318564 | 22.745267 | 38.333974 | 39.996482 | 9.910802 | 7.120324 | 4.751831 | 5.514995 | 0.0342 | 0.0483 | 0.0057 | 1.269492 | 1.286286 |
2459752 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 20.892850 | 26.122699 | 88.588023 | 91.355905 | 25.844891 | 18.706262 | 5.568251 | 6.238155 | 0.0343 | 0.0472 | 0.0061 | 0.000000 | 0.000000 |
2459750 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 23.499254 | 27.839595 | 91.163878 | 93.903607 | 28.062827 | 26.175865 | 4.279085 | 4.979412 | 0.0352 | 0.0512 | 0.0070 | 1.352992 | 1.401510 |
2459749 | 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 |
2459748 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 15.429307 | 19.619824 | 48.584056 | 50.573389 | 12.478354 | 9.818834 | 5.729142 | 6.640040 | 0.0343 | 0.0476 | 0.0054 | 1.389086 | 1.411781 |
2459747 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 15.408187 | 14.491232 | 6.103888 | 6.756439 | -0.161412 | 0.451397 | 3.823063 | 4.553116 | 0.0405 | 0.0652 | 0.0093 | nan | nan |
2459746 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 53.770455 | 61.799192 | 67.481856 | 60.960875 | 244.033039 | 174.238273 | 981.908466 | 757.472520 | 0.0179 | 0.0168 | 0.0009 | nan | nan |
2459745 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 108.074134 | 67.176693 | 84.461624 | 64.531004 | 120.336235 | 68.418813 | 1699.272588 | 838.302090 | 0.0172 | 0.0166 | 0.0006 | 0.000000 | 0.000000 |
2459744 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 36.575875 | 36.493622 | 57.744264 | 39.889568 | 139.371075 | 68.260425 | 2541.989306 | 1402.171871 | 0.0175 | 0.0168 | 0.0004 | nan | nan |
2459743 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 125.142158 | 84.260182 | 328.849414 | 228.839935 | 50.985602 | 37.343128 | 1992.197456 | 639.854537 | 0.0173 | 0.0171 | 0.0005 | 0.810332 | 0.814558 |
2459742 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 34.967324 | 38.795621 | 69.059513 | 57.549910 | 236.668503 | 311.047545 | 1215.319361 | 997.645761 | 0.0179 | 0.0167 | 0.0007 | nan | nan |
2459741 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 75.349908 | 72.497430 | 102.983147 | 73.270553 | 657.347849 | 427.863464 | 1933.347995 | 1182.078647 | 0.0176 | 0.0167 | 0.0008 | nan | nan |
2459740 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 20.183058 | -0.138066 | 12.665761 | 0.453055 | 1.743791 | 0.853587 | 5.269521 | 1.366666 | 0.0303 | 0.0384 | 0.0021 | nan | nan |
2459738 | digital_ok | 100.00% | 100.00% | 0.00% | 0.00% | 100.00% | 0.00% | 17.831398 | -0.562897 | 104.623709 | 0.115463 | 26.592880 | 0.816861 | 7.609887 | 1.486851 | 0.0489 | 0.6908 | 0.4495 | 1.395963 | 8.232869 |
2459736 | digital_ok | 100.00% | 100.00% | 0.00% | 0.00% | 100.00% | 0.00% | 12.607105 | -0.588947 | 42.176948 | -0.147197 | 8.248061 | 0.069383 | 5.019234 | 0.265463 | 0.0510 | 0.6229 | 0.3917 | 1.305905 | 3.255250 |
2459734 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 16.562307 | -0.818889 | 5.719655 | -0.672917 | 1.347882 | -0.058376 | 2.521373 | 0.295353 | 0.0313 | 0.0446 | 0.0025 | nan | nan |
2459733 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 15.050617 | -0.952800 | 5.941421 | -0.979677 | 1.069534 | 0.196268 | 2.538430 | 0.203703 | 0.0401 | 0.0591 | 0.0056 | nan | nan |
2459732 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 19.655971 | -0.806622 | 6.585081 | -0.776850 | 0.863239 | 0.144562 | 3.156362 | 0.662908 | 0.0382 | 0.0539 | 0.0021 | nan | nan |
2459731 | digital_ok | 100.00% | 100.00% | 0.00% | 0.00% | 100.00% | 0.00% | 18.865323 | -0.449293 | 80.974901 | -0.373130 | 36.166791 | 2.162550 | 5.354955 | 0.593596 | 0.0549 | 0.6908 | 0.4779 | 1.340566 | 5.630585 |
2459730 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 15.024706 | -0.932536 | 6.051617 | -0.997670 | 1.295792 | -0.352672 | 2.740150 | 0.036842 | 0.0413 | 0.0432 | 0.0037 | nan | nan |
2459728 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 13.540454 | -0.478049 | 6.389879 | -0.635768 | 1.316925 | -0.371726 | 1.589583 | 0.448650 | 0.0296 | 0.0303 | 0.0020 | nan | nan |
2459726 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 10.212008 | -0.551830 | 4.680938 | -0.757682 | 0.341391 | 1.013089 | 3.426314 | 1.055908 | 0.0298 | 0.0351 | 0.0031 | nan | nan |
2459724 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459723 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 11.848930 | -0.621042 | 4.975430 | -0.823405 | 1.020882 | 0.107219 | 1.751849 | 0.131163 | 0.0310 | 0.0389 | 0.0023 | nan | nan |
2459722 | digital_ok | 100.00% | 100.00% | 0.00% | 0.00% | 100.00% | 0.00% | 26.796604 | -0.360917 | 112.148621 | -0.735132 | 23.259451 | -0.060234 | 12.246883 | 1.010928 | 0.0529 | 0.6275 | 0.4155 | 1.378277 | 4.261683 |
2459720 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 10.564885 | -0.560549 | 5.803951 | -0.736561 | 0.157040 | 3.271080 | 0.871629 | 10.131369 | 0.0315 | 0.0355 | 0.0010 | nan | nan |
2459719 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.630588 | -0.562005 | -0.684190 | -0.760440 | 3.366164 | 2.210024 | 11.529506 | 2.209312 | 0.0325 | 0.0396 | 0.0004 | nan | nan |
2459718 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.891158 | -0.422117 | -0.802121 | -0.172498 | 1.874652 | -0.207857 | 10.222316 | 0.667961 | 0.0299 | 0.0322 | 0.0008 | nan | nan |
2459717 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.784940 | -0.448775 | -0.919858 | -0.395099 | 0.939197 | 0.665113 | 11.524814 | 0.887465 | 0.0299 | 0.0352 | 0.0009 | nan | nan |
2459716 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.747098 | -0.459012 | -0.670699 | -0.583764 | 1.117568 | 1.914759 | 11.703139 | 1.685858 | 0.0321 | 0.0330 | 0.0008 | nan | nan |
2459715 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.734141 | -0.327687 | -0.444170 | -0.460822 | -0.849631 | -0.579733 | 6.250529 | 1.457927 | 0.6959 | 0.6167 | 0.4447 | 4.638066 | 4.130549 |
2459713 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -1.013123 | -0.520655 | -0.640650 | -0.551880 | 1.435767 | 2.982433 | 10.201293 | 1.745168 | 0.0315 | 0.0314 | 0.0009 | nan | nan |
2459712 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.489923 | -0.199240 | -0.987938 | -0.329663 | -1.018292 | -0.138455 | 1.841469 | -0.371639 | 0.6032 | 0.5871 | 0.3687 | 1.902446 | 1.821912 |
2459711 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.515931 | -0.401607 | -0.737097 | -0.901375 | -0.879670 | 0.216881 | 1.443597 | -0.256795 | 0.0309 | 0.0309 | 0.0008 | nan | nan |
2459710 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.315795 | -0.277411 | -0.624206 | -0.737128 | -0.120913 | 1.055641 | 5.313400 | -0.045578 | 0.0308 | 0.0328 | 0.0009 | nan | nan |
2459708 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.913729 | -0.377740 | -0.629517 | -0.258248 | -0.782622 | 0.264488 | 10.549657 | 2.292042 | 0.6963 | 0.6295 | 0.4207 | 0.000000 | 0.000000 |
2459707 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.164175 | -0.080100 | -0.173891 | -0.128553 | -0.155520 | -1.156074 | 8.583201 | 2.410065 | 0.0326 | 0.0379 | 0.0019 | 0.887535 | 0.872053 |
2459706 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.293649 | -1.345396 | -0.491623 | -0.035543 | 1.531461 | 70.377219 | 5.537827 | 0.759610 | 0.0328 | 0.0429 | 0.0019 | nan | nan |
2459705 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.998443 | -0.544773 | -1.127400 | -0.252664 | -0.138809 | 0.187460 | 11.794565 | 1.040384 | 0.0311 | 0.0476 | 0.0006 | nan | nan |
2459703 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.728010 | -0.957089 | -1.309567 | -0.498850 | 1.557468 | 1.160516 | 1.251121 | -0.582258 | 0.0321 | 0.0348 | 0.0048 | nan | nan |
2459702 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.965544 | -0.576053 | -0.411585 | 0.165761 | 0.795358 | 0.542809 | 8.536739 | 1.596037 | 0.6428 | 0.6408 | 0.3269 | 0.000000 | 0.000000 |
2459701 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.036917 | -0.765999 | -0.870920 | 0.225258 | 0.190286 | -0.010577 | 4.475554 | 0.852275 | 0.6527 | 0.6514 | 0.3175 | 7.524143 | 8.027325 |
2459697 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 4444.062953 | 4444.062953 | 4146.297990 | 4146.297990 | 2940.243360 | 2940.243360 | 14504.561314 | 14504.561314 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459696 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 814.289418 | 814.289418 | 735.744504 | 735.744504 | 763.827042 | 763.827042 | 3039.715900 | 3039.715900 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459695 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 706.026122 | 706.026122 | 700.263987 | 700.263987 | 637.763148 | 637.763148 | 2088.967410 | 2088.967410 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459694 | digital_ok | 100.00% | 0.54% | 0.00% | 0.00% | 100.00% | 0.00% | -1.075638 | -0.466215 | -1.138820 | -0.873379 | 15.160740 | 0.052731 | 6.882574 | 2.403796 | 0.6484 | 0.6182 | 0.4074 | 5.842815 | 5.509351 |
2459693 | 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 |
2459692 | 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 |
2459691 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.258445 | -0.761121 | 0.075469 | 0.369382 | -0.428364 | -0.705205 | 11.786529 | 1.785302 | 0.6042 | 0.6028 | 0.3358 | 11.460172 | 11.367111 |
2459690 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.184417 | -0.348893 | 0.350210 | 0.440450 | -0.229574 | -0.377405 | 7.297346 | 2.819705 | 0.6384 | 0.6292 | 0.3619 | 34.494299 | 27.870876 |
2459689 | digital_ok | 100.00% | - | - | - | - | - | -0.725673 | -0.570528 | -0.877149 | 0.250630 | -1.394055 | 1.341262 | 6.122048 | 0.865851 | nan | nan | nan | nan | nan |
2459688 | digital_ok | 0.00% | - | - | - | 0.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 1.729731 | 1.796882 |
2459687 | digital_ok | 0.00% | 98.92% | 99.46% | 0.00% | - | - | -0.894595 | 0.014240 | 0.160448 | -0.118422 | 2.269666 | 0.802238 | -0.149140 | -0.019711 | 0.3220 | 0.3284 | 0.1698 | nan | nan |
2459686 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.460389 | -0.923310 | -0.532319 | -0.103092 | -1.454181 | -0.335055 | 0.445391 | 1.256130 | 0.6253 | 0.6223 | 0.3519 | 1.506438 | 1.483461 |
2459685 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.203764 | -0.531159 | -0.681515 | -0.336262 | -1.483081 | -0.381152 | 0.713878 | 5.588101 | 0.6339 | 0.6264 | 0.3520 | 8.893742 | 7.459620 |
2459684 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.672109 | -0.716154 | -0.094864 | -0.043293 | -0.395003 | 2.245941 | 1.748948 | 3.239348 | 0.6226 | 0.6183 | 0.3571 | 1.145521 | 1.145806 |
2459676 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 6.67% | 0.00% | -1.308046 | -0.217110 | -0.351382 | 0.509958 | -1.207317 | -0.673980 | 3.039726 | 0.240767 | 0.6483 | 0.6466 | 0.3559 | 1.579896 | 1.536863 |
2459675 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 1.33% | -1.125949 | -0.087890 | -0.197462 | -0.189546 | -0.655906 | 0.717452 | 1.865044 | 0.023209 | 0.6509 | 0.6498 | 0.3552 | 1.493490 | 1.491171 |
2459674 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.970636 | -0.467345 | 0.113628 | -0.265452 | -0.666091 | -0.616865 | 2.120767 | -0.056659 | 0.6414 | 0.6429 | 0.3621 | 0.466394 | 0.452581 |
2459673 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 51.89% | 0.00% | -1.144742 | -0.241038 | -0.043574 | -0.099596 | -0.629035 | 0.999594 | 3.324223 | -0.012686 | 0.6520 | 0.6399 | 0.3837 | 0.000000 | 0.000000 |
2459672 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 8.00% | 0.00% | -1.352116 | -0.407776 | 0.140822 | -0.013314 | -0.981514 | -0.304664 | 1.686213 | 2.490390 | 0.6507 | 0.6490 | 0.3601 | 0.496817 | 0.485119 |
2459671 | 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 |
2459670 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.775644 | -0.353320 | -0.800869 | -0.068094 | 1.061591 | 1.081688 | 20.444706 | 1.213974 | 0.0322 | 0.0278 | 0.0006 | nan | nan |
2459668 | 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 |
2459665 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.021602 | -0.630331 | 0.010341 | -0.276467 | -0.591736 | -0.223971 | 12.030691 | 1.607756 | 0.6486 | 0.6535 | 0.3826 | 6.847403 | 6.947778 |
2459664 | digital_ok | 0.00% | 100.00% | 16.80% | 0.00% | - | - | 0.106097 | 1.554018 | 0.266578 | -0.067175 | 0.610383 | 1.557739 | -0.029388 | 0.084144 | 0.0322 | 0.1506 | 0.0013 | nan | nan |
2459663 | 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 |
2459662 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.415350 | -1.159318 | -0.703082 | -0.728832 | 2.946703 | 1.775703 | 16.391154 | 0.861480 | 0.0323 | 0.0343 | 0.0014 | nan | nan |
2459661 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.620536 | -0.280627 | 0.013290 | -0.258887 | -0.371435 | 0.870802 | 0.757950 | -0.183395 | 0.6716 | 0.6607 | 0.3239 | 1.932027 | 2.059410 |
2459660 | digital_ok | 0.00% | 0.64% | 0.64% | 0.00% | 0.00% | 0.00% | -0.746069 | -0.442068 | 0.666450 | 0.398663 | 0.702915 | 1.086527 | 1.852700 | 0.423459 | 0.6528 | 0.6356 | 0.3401 | 1.772500 | 1.720640 |
2459659 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.575222 | -0.304597 | 0.223371 | -0.330599 | 0.508574 | 0.608426 | 6.014621 | 1.147516 | 0.6269 | 0.6235 | 0.3574 | 9.307422 | 8.378459 |
2459658 | digital_ok | 0.00% | 0.64% | 0.64% | 0.00% | 0.00% | 0.00% | -1.250548 | -0.625735 | -0.357119 | -0.591148 | -0.812283 | 0.275402 | 3.611116 | 0.867299 | 0.6255 | 0.6227 | 0.3614 | 1.236406 | 1.191593 |
2459657 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.682104 | -0.237949 | 0.302404 | -0.076370 | -0.130201 | 0.914237 | 3.157473 | 0.275256 | 0.6512 | 0.6377 | 0.3497 | 1.659645 | 1.817544 |
2459656 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.011833 | -0.119585 | 0.599683 | -0.577771 | 0.532381 | 0.504541 | 8.824906 | 0.862850 | 0.6328 | 0.6333 | 0.3506 | 6.531562 | 6.582615 |
2459655 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.000678 | -0.695908 | -0.556266 | -0.138658 | 0.317373 | -0.294257 | 17.629060 | 0.086804 | 0.0365 | 0.0390 | 0.0040 | nan | nan |
2459653 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.820158 | -0.234490 | 0.367744 | -1.015452 | 0.098772 | -0.256172 | 1.934136 | -0.102502 | 0.6361 | 0.6351 | 0.3536 | 1.527293 | 1.557530 |
2459652 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.142268 | -0.262979 | -0.212223 | -0.826749 | -0.618925 | 0.135454 | 2.436090 | 0.129394 | 0.6382 | 0.6357 | 0.3509 | 1.134245 | 1.106688 |
2459651 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.010292 | -0.220988 | 0.224655 | -0.336262 | -1.035408 | 0.408540 | -0.167527 | -0.512389 | 0.8517 | 0.8592 | 0.1304 | 7.733735 | 7.994219 |
2459650 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.048704 | -0.283683 | 0.012886 | -0.605420 | -0.745585 | -0.678941 | -0.099004 | -0.482012 | 0.7714 | 0.7676 | 0.2541 | 2.393082 | 2.530407 |
2459649 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.983673 | -0.565712 | 0.700089 | -0.233398 | -0.062420 | 1.053691 | 5.116468 | 0.972023 | 0.6748 | 0.6648 | 0.3184 | 6.840416 | 7.053442 |
2459648 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | digital_ok | 0.00% | 81.63% | 81.63% | 0.00% | 0.00% | 0.00% | -1.783127 | -1.783127 | -1.839043 | -1.839043 | -25.120417 | -25.120417 | -4.525280 | -4.525280 | 0.2410 | 0.2410 | 0.0000 | 0.065521 | 0.065521 |
2459646 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.036429 | -0.461793 | 0.583397 | -0.380350 | -0.219095 | 0.222926 | 5.306499 | 0.961811 | 0.5787 | 0.5821 | 0.3028 | 6.791938 | 6.548590 |
2459645 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.008319 | -0.605969 | 0.260499 | -0.162264 | -0.492040 | 0.205800 | 1.306484 | -0.121680 | 0.6825 | 0.7109 | 0.2392 | 2.014156 | 2.295896 |
2459642 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.932960 | -0.567848 | 0.824749 | -0.343250 | -0.058143 | 0.782655 | 3.186126 | 0.637677 | 0.5706 | 0.5729 | 0.3042 | 1.593642 | 1.651137 |
2459641 | digital_ok | - | 55.70% | 48.99% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.4949 | 0.4914 | 0.0184 | nan | nan |
2459640 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 1.08% | -0.903928 | -0.253509 | 0.239366 | -0.550203 | -0.664571 | 0.721475 | 2.303122 | -0.017104 | 0.5602 | 0.5688 | 0.3061 | 1.511891 | 1.564547 |
2459639 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.064136 | -0.477954 | -0.020991 | -0.240657 | -1.106952 | 1.086682 | 1.764294 | -0.003043 | 0.5688 | 0.5738 | 0.2999 | 1.756216 | 1.851781 |
2459638 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6891 | 0.7194 | 0.2562 | nan | nan |
2459637 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.831821 | -0.366306 | 0.389157 | 0.304682 | -0.686110 | 1.034821 | 1.152564 | 0.185935 | 0.5517 | 0.5517 | 0.3051 | 1.615671 | 1.726842 |
2459636 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 1.08% | -0.940765 | -0.433551 | 0.455366 | 0.069454 | -0.868974 | 0.999568 | 0.617627 | 0.777312 | 0.5529 | 0.5529 | 0.3065 | 1.601493 | 1.724525 |
2459635 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.00% | -0.784995 | -0.156341 | 0.594529 | 0.551175 | -0.705012 | 0.590974 | 0.863992 | 1.406109 | 0.5584 | 0.5580 | 0.3096 | 1.585090 | 1.704196 |
2459634 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 1.729754 | 1.729754 | 1.728371 | 1.728371 | 1.406177 | 1.406177 | 1.383573 | 1.383573 | 1.0000 | 1.0000 | 0.0000 | 0.643280 | 0.643280 |
2459633 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.15% | 0.54% | -0.752068 | -0.266807 | 1.009855 | 0.001662 | -0.264517 | 1.299064 | 2.245660 | -0.256804 | 0.5498 | 0.5519 | 0.3232 | 1.390422 | 1.441908 |
2459632 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.830247 | -0.244721 | 0.737494 | -0.261444 | -1.100508 | 0.991524 | 0.919474 | -0.573587 | 0.5593 | 0.5604 | 0.3184 | 1.638955 | 1.725451 |
2459631 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.925979 | -0.247570 | 0.696720 | -0.380106 | -0.463433 | 1.168886 | 2.598375 | -0.208062 | 0.5612 | 0.5658 | 0.3144 | 1.591703 | 1.721808 |
2459630 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | -0.807460 | -0.388192 | 0.560258 | -0.275624 | -1.094490 | 1.489778 | 3.190431 | -0.013163 | 0.5638 | 0.5665 | 0.3121 | 1.481809 | 1.632115 |
2459629 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.54% | -0.935374 | -0.360140 | 0.704303 | -0.028976 | -0.794422 | 1.435735 | 2.241541 | 0.153349 | 0.5841 | 0.5801 | 0.3022 | 1.415905 | 1.410380 |
2459628 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.633432 | -0.247026 | 0.840951 | -0.125763 | -0.304003 | 0.389368 | 3.019127 | -0.103749 | 0.5605 | 0.5610 | 0.3198 | 1.471805 | 1.493613 |
2459627 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 60.81% | 2.244908 | 2.244908 | 2.252045 | 2.252045 | 2.387916 | 2.387916 | 2.319155 | 2.319155 | 1.0000 | 1.0000 | 0.0000 | 0.062115 | 0.062115 |
2459626 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.891144 | -0.076948 | 0.347849 | -0.153860 | -0.616191 | 1.312330 | 9.992354 | 1.261951 | 0.5809 | 0.5811 | 0.3205 | 5.527119 | 4.899685 |
2459625 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.922136 | -0.362680 | 0.392194 | 0.220697 | -1.285509 | 0.882624 | 0.838134 | 0.112800 | 0.5720 | 0.5732 | 0.3192 | 1.542607 | 1.651571 |
2459624 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 0.00% | -1.071448 | -0.517119 | 0.737957 | -0.003826 | -1.038887 | 0.454458 | 3.914353 | 0.324983 | 0.5778 | 0.5758 | 0.3106 | 1.633263 | 1.831874 |
2459623 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459622 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | -0.828054 | -0.543080 | 1.494970 | 0.173326 | -0.901368 | 0.867587 | 1.575190 | -0.142352 | 0.5662 | 0.5632 | 0.3395 | 11.629948 | 14.793938 |
2459621 | digital_ok | 0.00% | - | - | - | 100.00% | 0.00% | -1.255575 | -1.182562 | 0.249443 | -0.554187 | -0.527062 | 0.085267 | -0.593963 | -0.380525 | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.382385 | -0.363904 | -0.509918 | -0.239566 | -0.799528 | -0.375772 | 6.736253 | 1.321696 | 0.0329 | 0.0557 | 0.0013 | nan | nan |
2459619 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 87.57% | 12.43% | -0.394535 | -0.318639 | 0.516498 | 0.016753 | -0.531201 | 0.246708 | 1.594684 | -0.012890 | 0.5608 | 0.5589 | 0.3326 | 0.000000 | 0.000000 |
2459618 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.714577 | -0.691554 | 0.994162 | 0.197158 | -0.746021 | 0.876953 | 5.169336 | 0.561901 | 0.5820 | 0.5788 | 0.3329 | 14.024831 | 12.423952 |
2459617 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 80.11% | 17.74% | -0.830624 | -0.352134 | 0.656899 | -0.525321 | -0.511386 | 0.508931 | 3.845720 | 0.647078 | 0.5926 | 0.5928 | 0.3228 | 0.000000 | 0.000000 |
2459616 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.00% | -0.614782 | -0.589959 | 1.297559 | 0.646326 | -1.064627 | 1.357634 | 1.368731 | 0.091782 | 0.6007 | 0.5977 | 0.3309 | 1.241252 | 1.361823 |
2459615 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | -0.727981 | -0.697255 | 0.719888 | -0.246286 | -0.757650 | 0.924483 | 2.522770 | -0.077435 | 0.5790 | 0.5797 | 0.3442 | 1.151048 | 1.194183 |
2459614 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 75.27% | 24.73% | -0.576419 | -0.438747 | 0.556993 | -0.457704 | -1.034086 | 0.804583 | 0.677054 | 0.029500 | 0.5819 | 0.5817 | 0.3416 | 0.000000 | 0.000000 |
2459613 | digital_ok | 100.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459612 | digital_ok | 0.00% | 67.57% | 67.57% | 0.00% | 96.22% | 0.00% | -0.650398 | -0.789748 | 0.687686 | -0.078054 | -0.936282 | 1.204507 | -0.279513 | 0.056245 | 0.3972 | 0.4218 | 0.2003 | 0.000000 | 0.000000 |
2459611 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.251770 | -0.736538 | 0.135261 | -0.586991 | -1.653707 | -0.503347 | 2.459552 | -0.296168 | 0.6125 | 0.6227 | 0.3108 | 1.751968 | 1.753230 |
2459610 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 353.399188 | 353.436943 | inf | inf | 47.485284 | 46.251951 | 599.670817 | 568.112495 | nan | nan | nan | 0.000000 | 0.000000 |
2459609 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.768636 | -0.616436 | 0.421837 | 0.363778 | -0.819440 | 0.885208 | 0.158623 | -0.434493 | 0.6301 | 0.6333 | 0.2914 | 1.638823 | 1.856521 |
2459608 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | -1.117219 | -0.743209 | 0.721554 | -0.044929 | -1.385159 | 1.008675 | 0.673858 | 0.844410 | 0.6015 | 0.6073 | 0.3462 | 1.508887 | 1.586988 |
2459607 | digital_ok | 0.00% | 40.00% | 40.00% | 0.00% | 1.18% | 15.29% | -1.152302 | -0.404346 | 0.513588 | 0.878691 | 0.199351 | 1.090294 | -0.256217 | 1.958418 | 0.3866 | 0.3881 | 0.2113 | 1.526574 | 1.497611 |
2459605 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.670838 | -0.502313 | -0.472795 | -0.867239 | -0.820809 | 0.008908 | -1.528211 | 0.009491 | 0.0329 | 0.0779 | 0.0022 | nan | nan |
2459604 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 353.629447 | 353.868196 | inf | inf | 53.233288 | 57.704251 | 553.648399 | 565.985709 | nan | nan | nan | 0.000000 | 0.000000 |
2459603 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | -0.485973 | 0.051129 | 0.248705 | 0.516614 | -0.072408 | 0.811218 | 0.671609 | 0.439418 | 0.7241 | 0.7352 | 0.2805 | 2.946464 | 3.196377 |
2459602 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.00% | -0.964582 | -0.578969 | 0.671672 | 0.615436 | -1.048781 | 0.990750 | 2.171034 | -0.192776 | 0.6227 | 0.6386 | 0.3280 | 1.949723 | 2.145739 |
2459598 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.00% | -0.981046 | -0.636510 | 0.607628 | 0.608046 | -0.958258 | 1.507531 | 0.319788 | 1.158378 | 0.6271 | 0.6311 | 0.3466 | 1.503649 | 1.520517 |
2459597 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.61% | 1.08% | -1.024000 | -0.617126 | 0.773659 | 1.062032 | -1.109552 | 1.027563 | 2.700725 | 0.238887 | 0.6223 | 0.6312 | 0.3153 | 1.721629 | 1.735911 |
2459596 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.61% | 0.00% | -1.144698 | -0.784841 | 0.630960 | 0.734964 | -1.481925 | 1.327135 | 0.660626 | 1.006081 | 0.6326 | 0.6344 | 0.3329 | 1.588195 | 1.629361 |
2459595 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.08% | 0.00% | -1.192431 | -0.338373 | -0.027825 | -0.304796 | -0.752202 | -0.658387 | -0.305710 | -0.306045 | 0.7280 | 0.7337 | 0.2081 | 1.835501 | 2.217680 |
2459594 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.08% | 0.00% | 0.256838 | -0.889126 | -0.272264 | -0.671629 | -1.228788 | 0.506679 | -0.657752 | -0.386627 | 0.7612 | 0.7785 | 0.2503 | 3.122706 | 3.133377 |
2459593 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.15% | 0.00% | -1.007296 | -0.565118 | 0.626412 | 0.167736 | -1.277119 | -0.497123 | -0.384695 | -0.513702 | 0.6951 | 0.6905 | 0.2422 | 2.178478 | 2.447237 |
2459592 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.374263 | -1.162765 | -0.034537 | -0.873197 | -0.973314 | -0.297195 | -1.114421 | -0.027927 | 0.0307 | 0.0473 | 0.0009 | nan | nan |
2459591 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.62% | 0.00% | -1.205328 | -0.529986 | 0.634379 | 0.175845 | -1.162145 | 0.135938 | 0.352537 | -0.187819 | 0.6249 | 0.6340 | 0.3507 | 1.594875 | 1.616919 |
2459590 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.62% | 0.00% | -0.942804 | -0.460791 | 0.357174 | 0.047162 | -1.594981 | 0.684733 | 0.919108 | -0.478442 | 0.6334 | 0.6401 | 0.3430 | 1.844202 | 1.915235 |
2459589 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.69% | 0.00% | -1.323094 | -0.634483 | -0.073242 | -0.553542 | -1.450550 | -0.974936 | -0.151099 | -0.629384 | 0.6751 | 0.6729 | 0.2758 | 1.763797 | 1.823264 |
2459588 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.69% | 0.00% | -0.089585 | -0.508967 | 0.270849 | 0.344463 | -0.729787 | 0.505842 | -0.781749 | -0.413964 | 0.7362 | 0.7207 | 0.2213 | 2.301464 | 2.283721 |
2459587 | digital_ok | 0.00% | - | - | - | 2.80% | 1.40% | -1.288014 | -0.535367 | 1.326175 | 0.802525 | 0.585626 | -0.715390 | 0.017142 | -0.113945 | nan | nan | nan | 0.422109 | 0.433215 |
2459586 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.70% | 0.54% | 0.027794 | 0.743951 | 1.302932 | 2.030425 | 2.257281 | 3.944041 | 1.809768 | 0.934717 | 0.6366 | 0.6467 | 0.3332 | 1.588961 | 1.602444 |
2459585 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 5.922911 | 7.057796 | 3.642707 | 4.388599 | 4.771447 | 6.370886 | 6.679323 | 0.620899 | 0.0326 | 0.0410 | 0.0012 | 0.000000 | 0.000000 |
2459584 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.60% | -1.247895 | -0.391821 | 0.172480 | -1.091496 | -0.035166 | 0.179246 | -0.113033 | -0.678886 | 0.5818 | 0.5920 | 0.3461 | 0.894439 | 0.949404 |
2459583 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.23% | 0.00% | -1.246372 | 0.262365 | 0.789546 | 0.131370 | -0.844951 | 1.634460 | 0.886051 | -0.177714 | 0.6344 | 0.6462 | 0.3625 | 1.485289 | 1.591585 |
2459582 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.70% | 0.00% | -1.010826 | -0.244232 | 0.556567 | 0.240873 | -0.678762 | 1.540572 | 1.685921 | -0.213299 | 0.6393 | 0.6476 | 0.3655 | 1.494295 | 1.542786 |
2459581 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 19.46% | 0.00% | -1.293720 | 0.101578 | 1.026960 | -0.389681 | -0.412345 | 1.039256 | 2.082276 | 0.277023 | 0.6301 | 0.6405 | 0.3760 | 1.467142 | 1.471721 |
2459580 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.76% | 0.00% | -1.108827 | -0.249401 | 0.469700 | -0.217327 | -0.929327 | 1.323973 | 1.291409 | 0.199543 | 0.6445 | 0.6531 | 0.3636 | 1.507094 | 1.463662 |
2459579 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.76% | 0.00% | -0.864311 | -0.032509 | 0.939147 | 0.457963 | -0.478129 | 0.873542 | 2.980125 | 0.007058 | 0.6405 | 0.6499 | 0.3678 | 1.553495 | 1.588572 |
2459578 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459577 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 0.00% | -1.326647 | -0.029875 | 0.767978 | -0.264850 | -0.235217 | 1.121656 | 2.030135 | 0.437364 | 0.6333 | 0.6436 | 0.3727 | 1.331216 | 1.317155 |
2459576 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.30% | 0.00% | -0.864549 | 0.054936 | 0.674261 | -0.035175 | 0.534319 | 1.616911 | 2.891732 | 1.152775 | 0.6625 | 0.6719 | 0.3651 | 1.553310 | 1.593181 |
2459575 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 13.98% | 13.44% | -0.730007 | -0.421639 | 0.437148 | 0.056921 | -0.424838 | 1.351133 | 0.640925 | -0.006195 | 0.7349 | 0.7377 | 0.3113 | 1.541456 | 1.760648 |
2459574 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 0.00% | -0.560280 | -0.064254 | 0.516900 | 0.022573 | 0.505387 | 0.523232 | 1.093439 | -0.178623 | 0.6667 | 0.6760 | 0.3589 | 1.564230 | 1.593028 |
2459573 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 0.00% | -0.426227 | 0.195795 | 1.083879 | 0.224643 | -0.425039 | 0.749556 | 2.447990 | 0.305037 | 0.6535 | 0.6662 | 0.3667 | 1.399644 | 1.453456 |
2459572 | 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 |
2459571 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.936566 | -0.401434 | -0.896760 | -0.742532 | -0.115628 | 1.470389 | 8.524693 | -0.311598 | 0.0288 | 0.0338 | 0.0008 | nan | nan |
2459570 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 7.607742 | 7.355319 | 9.450834 | 8.470038 | 6.183109 | 7.018118 | 5.056691 | 4.357310 | 0.6427 | 0.6666 | 0.3562 | 0.000000 | 0.000000 |
2459569 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.32% | 1.08% | -0.486795 | -0.085916 | 0.819644 | -0.131650 | 0.602301 | -0.295171 | 0.696991 | -0.216320 | 0.7435 | 0.7466 | 0.2278 | 2.527552 | 2.202977 |
2459566 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.32% | 0.00% | -1.005814 | -0.096655 | 1.017914 | -0.064931 | -0.256209 | 0.308363 | 1.045417 | -0.406417 | 0.6531 | 0.6592 | 0.3773 | 1.545576 | 1.616997 |
2459565 | digital_ok | 0.00% | - | - | - | 100.00% | 0.00% | -1.423322 | -1.423322 | -1.357009 | -1.357009 | -0.584162 | -0.584162 | -0.612392 | -0.612392 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.20% | 0.00% | -0.622178 | -0.355896 | -0.443556 | 0.201402 | 2.349707 | 0.692059 | 1.323879 | 1.296008 | 0.6613 | 0.6637 | 0.3764 | 1.584149 | 1.540421 |
2459563 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.585188 | 1.721839 | 12.338768 | 10.992723 | 4.492601 | 3.542452 | 0.715055 | 0.102316 | 0.6569 | 0.6626 | 0.3690 | 6.253326 | 5.083167 |
2459562 | 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 |
2459561 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -0.269511 | -0.325328 | 0.588806 | 0.136625 | 0.473703 | 1.164688 | 1.976191 | -0.025183 | 0.6690 | 0.6814 | 0.3654 | 1.751922 | 1.742187 |
2459560 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -0.311383 | -0.485538 | 0.778861 | 0.088159 | 0.717066 | 1.172808 | 1.676744 | -0.145236 | 0.6614 | 0.6669 | 0.3782 | 1.688537 | 1.603366 |
2459559 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.38% | 0.54% | -0.508592 | -0.609459 | 0.663731 | -0.052572 | 0.674932 | 1.235054 | 2.342953 | 0.268432 | 0.6640 | 0.6719 | 0.3643 | 1.701606 | 1.632332 |
2459558 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.38% | 1.08% | -0.645138 | -0.035588 | 0.668952 | 0.226727 | -0.534050 | 1.190733 | 1.696177 | -0.327347 | 0.6659 | 0.6721 | 0.3698 | 1.495509 | 1.506026 |
2459557 | digital_ok | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0347 | 0.0443 | 0.0023 | nan | nan |
2459556 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -1.052226 | 0.150006 | 0.729953 | 0.172591 | -0.108917 | 0.892025 | 3.557322 | -0.204997 | 0.6625 | 0.6697 | 0.3707 | 1.559581 | 1.569646 |
2459554 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6652 | 0.6693 | 0.3816 | nan | nan |
2459553 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6644 | 0.6709 | 0.3782 | nan | nan |
2459552 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.223962 | 0.206217 | 1.370894 | -0.871297 | -0.605753 | -1.540771 | 3.265433 | -0.498267 | 0.6714 | 0.6750 | 0.3768 | 0.000000 | 0.000000 |
2459551 | 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 |
2459550 | digital_ok | - | 98.35% | 98.35% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0758 | 0.0776 | 0.0006 | nan | nan |
2459549 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -0.377582 | 0.019189 | 1.090767 | -0.305080 | -0.013433 | 1.105085 | 2.731690 | -0.333620 | 0.6637 | 0.6742 | 0.3820 | 1.706633 | 1.658229 |
2459542 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 22.32% | 0.00% | -0.747412 | -0.163710 | 0.196157 | 0.462543 | 0.587358 | -0.352017 | 2.049268 | 2.350772 | 0.7303 | 0.7307 | 0.3407 | 1.580317 | 1.532364 |
2459541 | digital_ok | 0.00% | 1.79% | 1.79% | 0.00% | 21.88% | 0.00% | -1.364189 | 0.078445 | 0.758222 | -0.666300 | 2.580979 | -0.475343 | 1.568196 | 0.629634 | 0.7205 | 0.7191 | 0.3140 | 1.704622 | 1.614233 |
2459540 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 21.88% | 0.00% | -0.751791 | -0.182415 | 0.567492 | 0.261392 | -0.123207 | 0.006573 | 0.720554 | 0.044042 | 0.7282 | 0.7235 | 0.3314 | 1.513162 | 1.490923 |
2459536 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.984797 | 0.347629 | 2.428988 | -0.491936 | 0.636971 | 0.104074 | 4.803132 | -0.056086 | 0.0866 | 0.0789 | 0.0128 | 0.000000 | 0.000000 |
2459535 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.589015 | -0.170349 | 0.655546 | 0.212568 | -0.142410 | -0.683211 | 1.062817 | 3.434986 | 0.0772 | 0.0853 | 0.0118 | 1.240373 | 1.247549 |
2459534 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.743753 | -0.342836 | 0.685777 | 0.346673 | 0.241951 | -0.023267 | 1.004963 | 0.510754 | 0.0921 | 0.0837 | 0.0138 | 1.146805 | 1.143805 |
2459533 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.414939 | -0.023890 | 0.789491 | 0.072911 | -0.712647 | 1.123816 | 1.849584 | -0.063222 | 0.0850 | 0.0810 | 0.0138 | 0.923111 | 0.916923 |
2459532 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.259077 | 0.224518 | 1.331189 | 0.455304 | -0.726000 | 0.154169 | 1.605137 | 0.011666 | 0.0833 | 0.0760 | 0.0125 | 0.967371 | 0.969744 |
2459530 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.611657 | -0.115922 | 0.582623 | 0.117403 | 0.819483 | 1.264702 | 2.143435 | 3.432963 | 0.0908 | 0.0878 | 0.0182 | 0.958113 | 0.963234 |
2459527 | digital_ok | 0.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459524 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.763599 | 0.235051 | 1.097987 | 0.301757 | 1.364813 | -0.458433 | 0.053776 | 0.216330 | 0.9056 | 0.9367 | 0.3011 | 0.000000 | 0.000000 |
2459523 | digital_ok | 0.00% | - | - | - | 100.00% | 0.00% | -1.513252 | 0.509417 | 1.956727 | 0.101170 | -0.679196 | -0.675225 | 2.101650 | 0.783507 | nan | nan | nan | 0.000000 | 0.000000 |
2459522 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.760100 | 0.699130 | 1.291043 | 0.049459 | -0.412025 | 1.482005 | 5.923120 | 7.833013 | 0.6597 | 0.7088 | 0.3592 | -0.000000 | -0.000000 |
2459513 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.891018 | -0.325714 | -0.622809 | -0.953752 | 0.229123 | 0.841795 | 5.396518 | 7.108969 | 0.0434 | 0.0613 | 0.0050 | nan | nan |
2459508 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 81.58% | 0.00% | -0.494151 | 0.015574 | 0.725462 | 0.497444 | 1.115429 | -0.079292 | 0.442754 | 0.312356 | 0.9103 | 0.9538 | 0.1912 | 0.000000 | 0.000000 |
2459505 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.578171 | 0.284138 | 0.972258 | -0.008937 | -0.728150 | -0.124337 | 3.757251 | 11.930865 | 0.8944 | 0.8687 | 0.1803 | 21.055859 | 15.216722 |
2459503 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 89.47% | 0.00% | 0.249246 | 0.239441 | 0.981849 | -0.017769 | 2.065242 | 0.116611 | 1.594594 | 0.186745 | 0.8744 | 0.8672 | 0.4603 | 0.000000 | 0.000000 |
2459501 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 76.74% | 0.00% | -0.236661 | 0.143708 | 0.350355 | 0.029418 | -0.016323 | -0.454400 | 0.995071 | 0.415723 | 0.8869 | 0.9160 | 0.3868 | 0.000000 | 0.000000 |
2459500 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 94.74% | 0.00% | -0.088964 | 0.102280 | 0.038317 | -0.083225 | 0.745997 | 0.271879 | -0.190737 | 1.211275 | 0.8971 | 0.9117 | 0.3810 | 0.000000 | 0.000000 |
2459499 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 97.37% | 0.00% | 0.236458 | 0.258298 | 0.623501 | 0.500996 | 1.024187 | 0.844278 | 0.689968 | 1.593292 | 0.8982 | 0.9441 | 0.1919 | 0.000000 | 0.000000 |
2459498 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 94.74% | 0.00% | -0.106967 | 0.286559 | 0.356754 | -0.060988 | 0.681559 | 0.039436 | 1.514661 | 0.011057 | 0.9043 | 0.9142 | 0.4162 | 0.000000 | 0.000000 |
2459497 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 97.37% | 0.00% | 0.096364 | 0.327919 | 0.176851 | -0.298592 | 0.098541 | -0.618498 | 1.299195 | 0.035117 | 0.9034 | 0.9300 | 0.3644 | 0.000000 | 0.000000 |
2459496 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 94.74% | 0.00% | 0.315291 | 0.217521 | 0.634256 | 0.089088 | 0.275929 | -0.598122 | 0.342790 | -0.101534 | 0.9080 | 0.9079 | 0.4172 | 0.000000 | 0.000000 |
2459495 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 94.74% | 0.00% | 0.155007 | 0.178944 | 0.564184 | -0.051140 | 0.308202 | -0.598066 | 0.666008 | 0.383096 | 0.9043 | 0.9035 | 0.4472 | 0.000000 | 0.000000 |
2459494 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 94.74% | 0.00% | 0.160908 | 0.337332 | 0.545623 | 0.348195 | 0.239947 | 0.016893 | 0.654868 | 0.008068 | 0.9017 | 0.8998 | 0.4452 | 0.000000 | 0.000000 |
2459492 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.385664 | 0.229959 | -0.084361 | -1.506501 | -1.059814 | -0.109695 | 6.669349 | 1.017501 | 0.7727 | 0.8181 | 0.3180 | 8.657441 | 7.753565 |
2459491 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 50.00% | 0.00% | -1.460354 | 1.119722 | -0.021462 | -1.395189 | -0.520925 | -0.665896 | 2.795007 | 0.113040 | 0.8052 | 0.8290 | 0.2657 | 0.618591 | 0.550133 |
2459490 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.428688 | 0.422958 | -0.387533 | -1.504879 | -0.534346 | -0.097021 | 7.226983 | 3.605611 | 0.7588 | 0.8103 | 0.3699 | 5.205262 | 4.945559 |
2459489 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 47.37% | 0.00% | -1.138992 | 0.949849 | -0.068567 | -1.575846 | -1.002291 | 0.116882 | 3.536164 | 0.650423 | 0.7738 | 0.8161 | 0.3245 | 1.490648 | 1.456668 |
2459488 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.260933 | 1.192209 | 0.232487 | -1.057948 | -1.101707 | 0.555225 | 10.665156 | 2.502217 | 0.7743 | 0.8178 | 0.3459 | 0.000000 | 0.000000 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | ee Shape | nan | nan | nan | nan | nan | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 55.058187 | 55.058187 | 42.726618 | 4.499085 | 2.922592 | 45.723252 | 30.461183 | 6.542389 | 1.135684 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 43.990271 | 43.990271 | 29.154071 | 9.716336 | 7.889560 | 26.645453 | 24.594607 | 33.559139 | 18.668777 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 68.677220 | 52.900797 | 68.677220 | 4.183287 | 5.777436 | 33.551848 | 38.064366 | 3.583490 | 18.706401 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 38.376772 | 26.368195 | 38.376772 | 11.831507 | 14.010330 | 20.887704 | 25.220455 | 6.842164 | 11.594299 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 44.262850 | 44.262850 | 30.477263 | 13.887573 | 10.569719 | 27.429722 | 23.092687 | 7.842080 | 4.265092 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 54.032390 | 36.648342 | 54.032390 | 13.292013 | 17.028613 | 24.400968 | 26.899606 | 13.256272 | 26.142263 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 56.934735 | 56.934735 | 40.560146 | 9.011893 | 6.746482 | 42.245918 | 35.999960 | 15.308827 | 5.175465 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Temporal Variability | 46.570463 | 43.986220 | 31.054561 | 12.429914 | 9.873461 | 46.570463 | 40.968824 | 32.429715 | 13.546801 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 46.457640 | 46.457640 | 32.320180 | 12.416654 | 10.061669 | 28.394779 | 26.442583 | 40.700854 | 20.591103 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 63.424510 | 63.424510 | 49.870470 | 5.567960 | 4.047264 | 50.323118 | 45.133966 | 13.335164 | 2.584566 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | RF_maintenance | nn Shape | 43.411968 | 30.805304 | 43.411968 | 9.987511 | 12.813467 | 22.971632 | 23.888627 | 12.692491 | 22.030306 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 38.601826 | 38.601826 | 26.241532 | 11.405415 | 9.374454 | 30.602846 | 29.703177 | 32.824218 | 17.445501 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 39.857045 | 28.515932 | 39.857045 | 12.078233 | 16.150285 | 25.200169 | 25.998230 | 16.974036 | 29.611026 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 46.615119 | 46.615119 | 32.969060 | 12.942581 | 9.824563 | 27.284228 | 27.076762 | 30.036812 | 16.056929 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 47.996895 | 32.301335 | 47.996895 | 10.143893 | 13.608414 | 35.948650 | 36.321995 | 25.326642 | 38.289587 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 39.414763 | 24.842994 | 39.414763 | 9.653148 | 13.007637 | 36.042587 | 37.300654 | 11.205292 | 19.238826 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 68.454153 | 48.209155 | 68.454153 | 3.952074 | 5.742209 | 28.598470 | 33.732034 | 8.945372 | 8.659425 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 47.178109 | 30.092733 | 47.178109 | 10.922512 | 13.955293 | 38.757120 | 39.220797 | 6.696749 | 8.710528 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 74.710902 | 74.710902 | 48.456506 | 12.310009 | 9.957742 | 54.789464 | 50.977011 | 26.232621 | 10.601602 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 68.271209 | 68.271209 | 43.942106 | 13.335106 | 10.563153 | 49.737059 | 48.268747 | 48.563205 | 23.362422 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 59.259880 | 59.259880 | 39.405324 | 13.312654 | 10.612650 | 57.044390 | 54.024175 | 22.980692 | 9.535531 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 62.370823 | 40.308950 | 62.370823 | 7.873692 | 9.487029 | 34.006234 | 36.159644 | 8.750439 | 15.968508 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 67.949436 | 67.949436 | 43.396074 | 11.591281 | 8.920015 | 58.775750 | 54.931139 | 19.767939 | 10.071593 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 54.598463 | 54.598463 | 38.382466 | 10.080597 | 7.318850 | 36.946114 | 30.756956 | 15.381902 | 18.188532 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 61.182087 | 40.818227 | 61.182087 | 8.437885 | 10.404199 | 51.714714 | 53.068430 | 1.066954 | 3.152131 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 53.899596 | 53.899596 | 36.337462 | 6.640504 | 3.651008 | 24.487794 | 24.004193 | 13.819661 | 6.910155 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Variability | 16.385882 | 6.461609 | 9.805749 | 2.448681 | 4.744797 | 16.211044 | 16.385882 | 1.741192 | 4.767011 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Variability | 13.934146 | 11.630566 | 11.593171 | 4.284127 | 0.841965 | 13.934146 | 13.740275 | 12.038813 | 2.689926 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 23.701625 | 22.825905 | 23.701625 | -0.060756 | 2.388368 | 16.510953 | 17.061814 | 2.043161 | 11.664695 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Variability | 18.164682 | 11.646280 | 9.217859 | 0.928805 | 4.974547 | 12.449799 | 18.164682 | 11.484942 | -1.037273 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 6.832204 | 4.639827 | 6.832204 | 0.357975 | 0.353269 | 3.895887 | 1.268558 | -0.454228 | 6.378242 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Discontinuties | 8.712002 | 7.292010 | 5.036405 | 0.851046 | -0.136168 | 2.271817 | 2.408345 | 8.712002 | 0.013949 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 12.129150 | 12.129150 | 8.529257 | 0.619293 | 3.949526 | 6.755883 | 11.954200 | 4.511005 | -0.920584 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Variability | 14.818226 | 13.705923 | 9.787861 | 0.623847 | 5.695902 | 7.783119 | 14.818226 | 9.002114 | -0.560555 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Discontinuties | 15.392149 | 10.376573 | 14.565911 | 6.184889 | 0.820153 | 13.316206 | 5.845562 | -1.837233 | 15.392149 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 10.027931 | 6.359859 | 10.027931 | 0.583086 | 0.249351 | 3.042088 | 1.627700 | -0.938764 | 8.820092 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 9.389870 | 9.389870 | 5.869765 | 0.264522 | 0.178103 | 0.714737 | 2.605238 | 7.906306 | -0.751517 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | 18.678253 | 18.678253 | 12.606316 | 1.104074 | 7.554560 | 7.180606 | 15.124143 | 18.054526 | -1.441428 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Discontinuties | 17.850371 | 16.059453 | 10.145776 | 0.694615 | 4.614056 | 6.202437 | 6.796480 | 17.850371 | -1.531497 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 27.612906 | 9.676278 | 12.004474 | 26.593251 | 27.612906 | 3.468008 | 2.970578 | 4.360712 | 5.390960 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 41.600119 | 15.315864 | 19.061187 | 39.732098 | 41.600119 | 8.067421 | 5.420877 | 4.316075 | 5.455733 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 39.042051 | 13.163209 | 10.914565 | 39.042051 | 37.770313 | 5.900163 | 6.852052 | 6.042641 | 4.835756 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 37.338245 | 16.139200 | 20.010353 | 35.912933 | 37.338245 | 11.196100 | 8.322294 | 3.482351 | 4.346234 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 39.996482 | 22.745267 | 18.318564 | 39.996482 | 38.333974 | 7.120324 | 9.910802 | 5.514995 | 4.751831 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 91.355905 | 20.892850 | 26.122699 | 88.588023 | 91.355905 | 25.844891 | 18.706262 | 5.568251 | 6.238155 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 93.903607 | 23.499254 | 27.839595 | 91.163878 | 93.903607 | 28.062827 | 26.175865 | 4.279085 | 4.979412 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Power | 50.573389 | 15.429307 | 19.619824 | 48.584056 | 50.573389 | 12.478354 | 9.818834 | 5.729142 | 6.640040 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 15.408187 | 15.408187 | 14.491232 | 6.103888 | 6.756439 | -0.161412 | 0.451397 | 3.823063 | 4.553116 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | Not Found | ee Temporal Discontinuties | 981.908466 | 61.799192 | 53.770455 | 60.960875 | 67.481856 | 174.238273 | 244.033039 | 757.472520 | 981.908466 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 1699.272588 | 67.176693 | 108.074134 | 64.531004 | 84.461624 | 68.418813 | 120.336235 | 838.302090 | 1699.272588 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 2541.989306 | 36.575875 | 36.493622 | 57.744264 | 39.889568 | 139.371075 | 68.260425 | 2541.989306 | 1402.171871 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 1992.197456 | 125.142158 | 84.260182 | 328.849414 | 228.839935 | 50.985602 | 37.343128 | 1992.197456 | 639.854537 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 1215.319361 | 34.967324 | 38.795621 | 69.059513 | 57.549910 | 236.668503 | 311.047545 | 1215.319361 | 997.645761 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 1933.347995 | 72.497430 | 75.349908 | 73.270553 | 102.983147 | 427.863464 | 657.347849 | 1182.078647 | 1933.347995 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 20.183058 | 20.183058 | -0.138066 | 12.665761 | 0.453055 | 1.743791 | 0.853587 | 5.269521 | 1.366666 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Power | 104.623709 | 17.831398 | -0.562897 | 104.623709 | 0.115463 | 26.592880 | 0.816861 | 7.609887 | 1.486851 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Power | 42.176948 | -0.588947 | 12.607105 | -0.147197 | 42.176948 | 0.069383 | 8.248061 | 0.265463 | 5.019234 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 16.562307 | -0.818889 | 16.562307 | -0.672917 | 5.719655 | -0.058376 | 1.347882 | 0.295353 | 2.521373 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 15.050617 | -0.952800 | 15.050617 | -0.979677 | 5.941421 | 0.196268 | 1.069534 | 0.203703 | 2.538430 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 19.655971 | -0.806622 | 19.655971 | -0.776850 | 6.585081 | 0.144562 | 0.863239 | 0.662908 | 3.156362 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Power | 80.974901 | -0.449293 | 18.865323 | -0.373130 | 80.974901 | 2.162550 | 36.166791 | 0.593596 | 5.354955 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 15.024706 | 15.024706 | -0.932536 | 6.051617 | -0.997670 | 1.295792 | -0.352672 | 2.740150 | 0.036842 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 13.540454 | -0.478049 | 13.540454 | -0.635768 | 6.389879 | -0.371726 | 1.316925 | 0.448650 | 1.589583 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 10.212008 | -0.551830 | 10.212008 | -0.757682 | 4.680938 | 1.013089 | 0.341391 | 1.055908 | 3.426314 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 11.848930 | -0.621042 | 11.848930 | -0.823405 | 4.975430 | 0.107219 | 1.020882 | 0.131163 | 1.751849 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Power | 112.148621 | 26.796604 | -0.360917 | 112.148621 | -0.735132 | 23.259451 | -0.060234 | 12.246883 | 1.010928 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Shape | 10.564885 | 10.564885 | -0.560549 | 5.803951 | -0.736561 | 0.157040 | 3.271080 | 0.871629 | 10.131369 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 11.529506 | -0.562005 | -0.630588 | -0.760440 | -0.684190 | 2.210024 | 3.366164 | 2.209312 | 11.529506 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 10.222316 | -0.891158 | -0.422117 | -0.802121 | -0.172498 | 1.874652 | -0.207857 | 10.222316 | 0.667961 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 11.524814 | -0.784940 | -0.448775 | -0.919858 | -0.395099 | 0.939197 | 0.665113 | 11.524814 | 0.887465 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 11.703139 | -0.747098 | -0.459012 | -0.670699 | -0.583764 | 1.117568 | 1.914759 | 11.703139 | 1.685858 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 6.250529 | -0.734141 | -0.327687 | -0.444170 | -0.460822 | -0.849631 | -0.579733 | 6.250529 | 1.457927 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 10.201293 | -0.520655 | -1.013123 | -0.551880 | -0.640650 | 2.982433 | 1.435767 | 1.745168 | 10.201293 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 1.841469 | -0.199240 | -0.489923 | -0.329663 | -0.987938 | -0.138455 | -1.018292 | -0.371639 | 1.841469 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 1.443597 | -0.401607 | -0.515931 | -0.901375 | -0.737097 | 0.216881 | -0.879670 | -0.256795 | 1.443597 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 5.313400 | -0.277411 | -0.315795 | -0.737128 | -0.624206 | 1.055641 | -0.120913 | -0.045578 | 5.313400 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 10.549657 | -0.913729 | -0.377740 | -0.629517 | -0.258248 | -0.782622 | 0.264488 | 10.549657 | 2.292042 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 8.583201 | -0.080100 | -0.164175 | -0.128553 | -0.173891 | -1.156074 | -0.155520 | 2.410065 | 8.583201 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Variability | 70.377219 | -1.345396 | -0.293649 | -0.035543 | -0.491623 | 70.377219 | 1.531461 | 0.759610 | 5.537827 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 11.794565 | -0.544773 | -0.998443 | -0.252664 | -1.127400 | 0.187460 | -0.138809 | 1.040384 | 11.794565 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Variability | 1.557468 | -0.957089 | -0.728010 | -0.498850 | -1.309567 | 1.160516 | 1.557468 | -0.582258 | 1.251121 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 8.536739 | -0.965544 | -0.576053 | -0.411585 | 0.165761 | 0.795358 | 0.542809 | 8.536739 | 1.596037 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 4.475554 | -0.765999 | -1.036917 | 0.225258 | -0.870920 | -0.010577 | 0.190286 | 0.852275 | 4.475554 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 14504.561314 | 4444.062953 | 4444.062953 | 4146.297990 | 4146.297990 | 2940.243360 | 2940.243360 | 14504.561314 | 14504.561314 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | nn Temporal Discontinuties | 3039.715900 | 814.289418 | 814.289418 | 735.744504 | 735.744504 | 763.827042 | 763.827042 | 3039.715900 | 3039.715900 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Discontinuties | 2088.967410 | 706.026122 | 706.026122 | 700.263987 | 700.263987 | 637.763148 | 637.763148 | 2088.967410 | 2088.967410 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | N10 | digital_ok | ee Temporal Variability | 15.160740 | -0.466215 | -1.075638 | -0.873379 | -1.138820 | 0.052731 | 15.160740 | 2.403796 | 6.882574 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | 10 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | 10 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | 10 | digital_ok | ee Temporal Discontinuties | 11.786529 | -1.258445 | -0.761121 | 0.075469 | 0.369382 | -0.428364 | -0.705205 | 11.786529 | 1.785302 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | 10 | digital_ok | ee Temporal Discontinuties | 7.297346 | -1.184417 | -0.348893 | 0.350210 | 0.440450 | -0.229574 | -0.377405 | 7.297346 | 2.819705 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
92 | 10 | digital_ok | ee Temporal Discontinuties | 6.122048 | -0.725673 | -0.570528 | -0.877149 | 0.250630 | -1.394055 | 1.341262 | 6.122048 | 0.865851 |