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 = "161" csv_folder = "/home/obs/src/H6C_Notebooks/_rtp_summary_" auto_metrics_folder = "/home/obs/src/H6C_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 159 csvs in /home/obs/src/H6C_Notebooks/_rtp_summary_ Found 156 auto_metrics notebooks in /home/obs/src/H6C_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) |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2459976 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.958335 | 28.802548 | -0.035429 | -0.557145 | 0.023031 | 0.995014 | -0.600390 | 0.054336 | 0.6314 | 0.5187 | 0.3388 | nan | nan |
2459975 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.982926 | 29.455576 | -0.032891 | -0.642967 | 0.096563 | 1.541903 | -0.375258 | 0.354093 | 0.6338 | 0.5222 | 0.3454 | nan | nan |
2459974 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.832484 | 27.781156 | -0.016363 | -0.616173 | 0.462493 | 1.393888 | 0.007835 | 0.951113 | 0.6387 | 0.5282 | 0.3434 | nan | nan |
2459973 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.967638 | 28.399401 | -0.082487 | -0.486244 | 0.060962 | 0.532227 | -0.447316 | 0.431277 | 0.6464 | 0.5348 | 0.3420 | nan | nan |
2459972 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.844138 | 27.276182 | 0.091991 | -0.591378 | 0.315357 | 2.270238 | -0.819958 | -0.417888 | 0.6318 | 0.5175 | 0.3448 | nan | nan |
2459971 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.928115 | 26.475514 | 0.078038 | -0.561977 | 0.131263 | 1.954130 | -0.361542 | 0.347252 | 0.6349 | 0.5168 | 0.3429 | nan | nan |
2459970 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.975149 | 29.165304 | 0.026636 | -0.497147 | -0.288096 | 1.904813 | 0.230529 | 0.996346 | 0.6387 | 0.5232 | 0.3432 | nan | nan |
2459969 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.911953 | 30.492588 | 0.011192 | -0.419943 | 0.003935 | 1.796600 | 0.117089 | 2.076501 | 0.6467 | 0.5239 | 0.3417 | nan | nan |
2459968 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.678260 | 6.498123 | -0.069253 | 0.329961 | -0.659695 | 7.641600 | 0.024232 | 1.065855 | 0.7596 | 0.6722 | 0.2172 | nan | nan |
2459967 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.114177 | 28.582312 | 0.059852 | -0.576607 | -0.648345 | 2.327574 | -0.493821 | 0.503445 | 0.6406 | 0.5213 | 0.3376 | nan | nan |
2459966 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.852630 | 30.576726 | -0.113115 | -0.613695 | -0.198853 | 2.694981 | -0.398261 | 0.895873 | 0.6417 | 0.5160 | 0.3348 | nan | nan |
2459965 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.051213 | 28.563710 | -0.012528 | -0.533824 | -0.442749 | 1.016735 | -0.534384 | 0.597704 | 0.6490 | 0.5324 | 0.3261 | nan | nan |
2459964 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.086129 | 25.944388 | 0.070839 | -0.698401 | -0.067951 | 2.341768 | 0.018298 | 0.902701 | 0.7004 | 0.5923 | 0.2811 | nan | nan |
2459963 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.814435 | 25.428215 | 0.108289 | -0.522080 | 0.207186 | 0.655760 | 0.465298 | 0.197464 | 0.7284 | 0.6340 | 0.2272 | nan | nan |
2459962 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.115027 | 28.763376 | 0.245025 | -0.752548 | 0.038716 | 2.272528 | 0.466594 | -0.414901 | 0.6908 | 0.5871 | 0.2923 | nan | nan |
2459961 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.122401 | 24.252416 | 0.085384 | -0.276481 | 0.016471 | 5.010706 | 0.263314 | 0.806404 | 0.7732 | 0.6781 | 0.2005 | nan | nan |
2459960 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.230751 | 29.745215 | -0.023034 | -0.583532 | -0.664038 | 2.048079 | -0.151136 | 0.004656 | 0.6700 | 0.5510 | 0.2913 | nan | nan |
2459959 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 289.512804 | 289.961434 | inf | inf | 3401.611575 | 3379.314657 | 4149.008975 | 4092.632429 | nan | nan | nan | nan | nan |
2459958 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.272680 | 29.582924 | -0.079187 | -0.690170 | -0.017713 | 1.668985 | -0.406436 | 0.185961 | 0.6441 | 0.5209 | 0.3383 | nan | nan |
2459957 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.064209 | 26.334024 | -0.168803 | -0.726692 | 0.058216 | 1.990413 | -0.281145 | 0.656973 | 0.6428 | 0.5305 | 0.3424 | nan | nan |
2459956 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.207368 | 25.879731 | -0.005856 | -0.484748 | -0.159006 | 2.945346 | 0.493507 | 1.051465 | 0.6917 | 0.5753 | 0.2812 | nan | nan |
2459955 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.048391 | 24.401918 | -0.119272 | -0.634128 | 0.116363 | 2.039240 | -0.243188 | 1.357723 | 0.6407 | 0.5177 | 0.3397 | nan | nan |
2459954 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.955516 | 28.122957 | -0.105135 | -0.461722 | -0.246602 | 1.704704 | -0.499186 | 0.243295 | 0.6396 | 0.5268 | 0.3471 | nan | nan |
2459953 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.104089 | 27.229016 | -0.046133 | -0.553734 | -0.310840 | 2.382449 | -0.292654 | 0.500990 | 0.6395 | 0.5284 | 0.3430 | nan | nan |
2459952 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.068290 | 30.303305 | -0.024132 | -0.411172 | -0.667350 | 1.611582 | -0.436451 | 0.947896 | 0.6486 | 0.5395 | 0.3436 | nan | nan |
2459951 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.708772 | 25.710074 | 0.018015 | -0.512168 | -0.036383 | 1.129294 | -0.374020 | 3.036398 | 0.6537 | 0.5472 | 0.3441 | nan | nan |
2459950 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.728549 | 30.132188 | -0.025164 | -0.530610 | 0.251113 | 2.016885 | -0.578759 | 0.039440 | 0.6557 | 0.5469 | 0.3514 | nan | nan |
2459949 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.041542 | 31.124467 | 0.016907 | -0.561843 | 0.185561 | 1.594428 | -0.357531 | 0.245008 | 0.6469 | 0.5269 | 0.3506 | nan | nan |
2459948 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.923993 | 29.272131 | -0.347718 | -0.850990 | 0.015506 | 0.744646 | -0.369376 | 0.552663 | 0.6738 | 0.5729 | 0.3237 | nan | nan |
2459947 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.036066 | 28.541574 | -0.225760 | -0.756277 | 0.071904 | 1.041332 | 0.124423 | 0.966189 | 0.6854 | 0.5586 | 0.3278 | nan | nan |
2459946 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.892382 | 27.714642 | -0.408850 | -0.729166 | 0.444658 | 1.863414 | 0.092917 | 1.303785 | 0.6546 | 0.5342 | 0.3425 | nan | nan |
2459945 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.961146 | 26.388248 | -0.326463 | -0.697233 | -0.317192 | 0.878659 | -0.281481 | 0.860697 | 0.6612 | 0.5468 | 0.3441 | nan | nan |
2459944 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.799973 | 26.871108 | -0.237003 | -0.633069 | 0.113324 | 0.935663 | -0.491234 | 1.806744 | 0.6658 | 0.5463 | 0.3423 | nan | nan |
2459943 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.740064 | 24.844738 | -0.276432 | -0.584774 | 0.333241 | 0.450645 | -0.705403 | 0.685269 | 0.6647 | 0.5523 | 0.3467 | nan | nan |
2459942 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.915602 | 29.930096 | -0.307099 | -0.699533 | 0.532679 | 1.074117 | -0.292652 | 0.830610 | 0.6699 | 0.5405 | 0.3359 | nan | nan |
2459941 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.883772 | 27.988631 | -0.360239 | -0.622354 | 0.741174 | 1.181762 | -0.292509 | 0.625159 | 0.6524 | 0.5254 | 0.3538 | nan | nan |
2459940 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.881278 | 28.288481 | -0.371018 | -0.606448 | 0.604510 | 0.801412 | -0.090501 | 0.755184 | 0.6607 | 0.5338 | 0.3518 | nan | nan |
2459939 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.913911 | 27.560112 | -0.316151 | -0.591403 | 0.861796 | 0.589228 | -0.142962 | 0.399920 | 0.6623 | 0.5373 | 0.3504 | nan | nan |
2459938 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.768654 | 26.267266 | -0.356999 | -0.689858 | 0.129375 | 0.621537 | -0.490596 | 2.796750 | 0.6628 | 0.5447 | 0.3475 | nan | nan |
2459937 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.987219 | 27.349776 | -0.254739 | -0.775590 | -0.104622 | 0.830068 | -0.370238 | 0.450683 | 0.6811 | 0.5713 | 0.3176 | nan | nan |
2459936 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.340651 | 21.538859 | -0.227976 | -1.263830 | -0.072812 | 1.333876 | 0.377955 | 0.815067 | 0.7981 | 0.7207 | 0.1759 | nan | nan |
2459935 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.014299 | 27.427411 | -0.573577 | -0.750494 | -0.333508 | 1.200956 | -0.044187 | 0.855148 | 0.6662 | 0.5519 | 0.3507 | nan | nan |
2459934 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.995068 | 34.094963 | -0.572630 | -0.632563 | 0.282072 | 1.400590 | -0.235955 | 0.401217 | 0.6729 | 0.5553 | 0.3510 | nan | nan |
2459933 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.862369 | 27.683549 | -0.552370 | -0.660994 | -0.100690 | 1.178015 | -0.581426 | -0.088640 | 0.6733 | 0.5663 | 0.3493 | nan | nan |
2459932 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.834238 | 33.512699 | -0.577684 | -0.474155 | -1.138616 | 0.612266 | -0.068927 | 1.353527 | 0.6093 | 0.5018 | 0.3076 | nan | nan |
2459931 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.995360 | 31.012927 | -0.429591 | -0.671796 | -0.090687 | 1.076248 | -0.284171 | 0.051523 | 0.6816 | 0.5696 | 0.3353 | nan | nan |
2459930 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.869101 | 27.042599 | -0.420854 | -0.505110 | 0.148346 | 0.939846 | -0.066825 | 0.142150 | 0.6785 | 0.5690 | 0.3440 | nan | nan |
2459929 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | 0.496929 | 30.912231 | -0.052468 | 0.120093 | -0.001485 | -0.360049 | 0.392239 | -0.171487 | 0.7887 | 0.7123 | 0.1846 | nan | nan |
2459928 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.858147 | 26.150532 | -0.383989 | -1.059025 | 0.106246 | 0.776211 | -0.121660 | 0.733267 | 0.6608 | 0.5442 | 0.3407 | nan | nan |
2459927 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.605222 | 29.121608 | -0.406918 | -0.571465 | 0.995166 | 0.298672 | 0.041291 | 0.009761 | 0.6108 | 0.5097 | 0.3004 | nan | nan |
2459926 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.075303 | 22.461857 | 0.013852 | -0.692524 | -0.122821 | -1.222318 | 0.025664 | -1.029480 | 0.7978 | 0.7507 | 0.1669 | nan | nan |
2459925 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.391458 | 15.348508 | -0.276056 | -0.246664 | -0.531677 | 1.636883 | 0.345342 | -0.366746 | 0.7735 | 0.6743 | 0.2143 | nan | nan |
2459924 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.934328 | 28.832558 | -0.236450 | -0.941125 | 0.164729 | 0.195720 | -0.601736 | -0.641377 | 0.6828 | 0.5842 | 0.3260 | nan | nan |
2459923 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.174496 | 30.153389 | -0.320700 | -0.717370 | -0.426742 | -0.510898 | 0.023416 | -0.622993 | 0.7220 | 0.6265 | 0.2951 | nan | nan |
2459922 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.113578 | 27.783717 | -0.523034 | -0.748974 | 0.208046 | 1.404724 | -0.214187 | 1.746023 | 0.6716 | 0.5525 | 0.3464 | nan | nan |
2459921 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.932951 | 26.285124 | -0.703836 | -0.650382 | 0.132697 | 0.822445 | -0.459431 | 1.541216 | 0.6853 | 0.5524 | 0.3596 | nan | nan |
2459920 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.055210 | 27.268778 | -0.394926 | -0.551293 | 0.163217 | 0.389156 | -0.283762 | 1.370659 | 0.6704 | 0.5526 | 0.3689 | nan | nan |
2459919 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.846932 | 29.077667 | -0.298971 | -0.507663 | -0.004718 | 1.383997 | -0.366034 | 1.383794 | 0.6752 | 0.5636 | 0.3449 | nan | nan |
2459918 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.966282 | 32.333053 | -0.459274 | -0.636825 | 0.029874 | 0.256411 | -0.491475 | 0.966776 | 0.6790 | 0.5675 | 0.3481 | nan | nan |
2459917 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.019453 | 27.893115 | -0.269166 | -0.785795 | 0.524392 | 0.480351 | -0.330040 | 0.899145 | 0.7122 | 0.5956 | 0.3879 | nan | nan |
2459916 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.716323 | 28.941989 | -0.363596 | -0.677732 | -0.044670 | 0.499253 | -0.553582 | -0.005451 | 0.6801 | 0.5754 | 0.3496 | nan | nan |
2459915 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.982137 | 29.275165 | -0.342717 | -0.792065 | 0.069797 | 0.368617 | -0.393768 | 0.252285 | 0.7201 | 0.6096 | 0.3187 | nan | nan |
2459914 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.157884 | 30.451465 | -0.494096 | -0.934094 | -0.206719 | 1.140882 | -0.214319 | 0.561829 | 0.7378 | 0.6477 | 0.2735 | nan | nan |
2459913 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.577405 | 30.881017 | -0.481241 | -0.819501 | 0.666955 | 0.782919 | 0.156826 | 1.174777 | 0.7035 | 0.5733 | 0.3571 | nan | nan |
2459912 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.621334 | 27.077660 | -0.513018 | -0.693631 | -0.054078 | 0.015919 | -0.403215 | 0.590489 | 0.6757 | 0.5692 | 0.3508 | nan | nan |
2459911 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.793590 | 26.905097 | -0.511620 | -0.733083 | 0.127905 | -0.189644 | -0.567141 | 1.099574 | 0.6738 | 0.5654 | 0.3546 | nan | nan |
2459910 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.684469 | 26.773038 | -0.540038 | -0.763915 | 0.219542 | -0.463217 | -0.520344 | 0.264205 | 0.6789 | 0.5742 | 0.3520 | nan | nan |
2459909 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.742369 | 27.989864 | -0.517170 | -0.756849 | 0.090688 | -0.743126 | -0.365896 | 0.314180 | 0.6759 | 0.5710 | 0.3527 | nan | nan |
2459908 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.745828 | 29.833002 | -0.500355 | -0.638260 | -0.211987 | -0.602826 | -0.354646 | 0.530236 | 0.6821 | 0.5830 | 0.3483 | nan | nan |
2459907 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.751626 | 29.923173 | -0.589055 | -0.712452 | -0.206464 | -0.419174 | -0.432934 | 0.184985 | 0.6765 | 0.5774 | 0.3491 | nan | nan |
2459906 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.685181 | 29.473222 | -0.656697 | -0.757727 | 0.247010 | 0.557946 | -0.494036 | 0.892231 | 0.6682 | 0.5718 | 0.3505 | nan | nan |
2459905 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.624122 | 27.510956 | -0.503957 | -0.785739 | 0.143860 | 1.404896 | -0.173979 | 0.874184 | 0.6573 | 0.5585 | 0.3546 | nan | nan |
2459904 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.724632 | 28.011658 | -0.538528 | -0.722332 | -0.248642 | 1.010372 | -0.036470 | 1.726132 | 0.6604 | 0.5593 | 0.3491 | nan | nan |
2459903 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.796560 | 29.948117 | -0.539461 | -0.763485 | -0.102772 | 0.326444 | -0.096170 | 1.128554 | 0.6624 | 0.5596 | 0.3543 | nan | nan |
2459902 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.710723 | 33.343800 | -0.599964 | -0.769992 | -0.242421 | 0.362215 | -0.314117 | 0.763033 | 0.6692 | 0.5611 | 0.3478 | nan | nan |
2459901 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.655861 | 33.677115 | -0.521959 | -0.775477 | -0.105541 | -0.070238 | -0.367118 | 0.477416 | 0.6781 | 0.5621 | 0.3567 | nan | nan |
2459900 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.653343 | 32.283088 | -0.523329 | -0.728571 | 0.710815 | -0.206142 | -0.487551 | 0.538463 | 0.6305 | 0.5367 | 0.3054 | nan | nan |
2459898 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.710246 | 28.436714 | -0.612330 | -0.749983 | 0.281852 | 0.337905 | 0.076700 | 0.704712 | 0.6740 | 0.5674 | 0.3527 | nan | nan |
2459897 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.650044 | 26.916329 | -0.722340 | -0.797204 | -0.423160 | 0.670361 | -0.344426 | 1.333461 | 0.6739 | 0.5558 | 0.3614 | nan | nan |
2459896 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.765378 | 27.886707 | -0.628205 | -0.793844 | -0.130052 | -0.080466 | -0.267337 | 0.145126 | 0.6737 | 0.5587 | 0.3602 | nan | nan |
2459895 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.886713 | 30.329330 | -0.528306 | -0.894821 | -0.589332 | 0.541291 | -0.198562 | -0.101584 | 0.7627 | 0.6549 | 0.2450 | nan | nan |
2459894 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.813052 | 31.304725 | -0.626809 | -0.816584 | -0.383548 | 0.742227 | 0.025221 | 1.413108 | 0.6789 | 0.5548 | 0.3525 | nan | nan |
2459893 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.881662 | 32.719339 | -0.628047 | -0.856194 | -0.202643 | 0.288516 | -0.209044 | 1.123783 | 0.6835 | 0.5695 | 0.3498 | nan | nan |
2459892 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459891 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.939936 | 29.454785 | -0.712614 | -0.886551 | -0.785024 | 0.591655 | 0.202817 | 1.272837 | 0.6786 | 0.5668 | 0.3516 | nan | nan |
2459890 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.019653 | 29.328666 | -0.572496 | -1.095312 | -0.478081 | 0.668110 | -0.372913 | 0.401573 | 0.6803 | 0.5642 | 0.3499 | nan | nan |
2459889 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.144847 | 33.428959 | -1.409532 | -0.968349 | -1.303110 | 0.411695 | -0.545663 | 1.664873 | 0.6883 | 0.5703 | 0.3484 | nan | nan |
2459888 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.874372 | 27.907903 | -1.187431 | -0.941023 | -0.139652 | 0.678459 | -0.952858 | 0.284559 | 0.7013 | 0.5952 | 0.3372 | nan | nan |
2459887 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.843743 | 29.900464 | -1.006209 | -1.372575 | -0.171542 | -0.098308 | -0.483680 | 0.884198 | 0.6869 | 0.5699 | 0.3519 | nan | nan |
2459886 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.538436 | 35.426146 | -0.868228 | -0.873185 | 11.262321 | 8.448360 | 0.240964 | 0.523309 | 0.7622 | 0.6520 | 0.2938 | nan | nan |
2459885 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.687102 | 45.378981 | 0.205576 | 8.320910 | -0.693808 | 7.234911 | 0.115692 | 5.163214 | 0.7283 | 0.6128 | 0.3108 | nan | nan |
2459884 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.918606 | 28.561604 | -0.555478 | -0.993914 | 0.507701 | 0.182833 | -0.502665 | 0.929077 | 0.6942 | 0.5686 | 0.3511 | nan | nan |
2459883 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.495697 | 37.404151 | -0.183747 | 7.341901 | -0.546922 | 3.687199 | -0.343385 | 3.505842 | 0.6868 | 0.5738 | 0.3379 | nan | nan |
2459882 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.800748 | 58.118641 | -0.078788 | 8.315502 | -0.968100 | 5.139108 | 0.001371 | 1.933028 | 0.6867 | 0.5665 | 0.3393 | nan | nan |
2459881 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.668215 | 34.825442 | -0.266146 | 9.614200 | -1.641767 | 9.838823 | 0.838670 | 7.764864 | 0.7291 | 0.6389 | 0.2886 | nan | nan |
2459880 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.540070 | 41.630177 | -0.611207 | 7.816576 | -0.686195 | 3.009770 | 0.328461 | 1.866332 | 0.6825 | 0.5704 | 0.3481 | nan | nan |
2459879 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.563624 | 24.940365 | -0.110118 | -1.210764 | 0.629145 | -1.727625 | 0.416821 | 1.474437 | 0.6745 | 0.5672 | 0.3593 | nan | nan |
2459878 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.203201 | 37.429106 | -0.294447 | 9.826741 | -0.567378 | 5.463467 | 0.238768 | 4.631557 | 0.6806 | 0.5766 | 0.3509 | nan | nan |
2459876 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.342140 | 40.013101 | -0.401217 | 6.418545 | -0.828670 | 15.405593 | 0.548800 | 4.409804 | 0.7037 | 0.5623 | 0.3487 | nan | nan |
2459875 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.729418 | 44.014943 | 0.043374 | 9.195177 | -0.428853 | 6.775731 | -0.315049 | 3.910557 | 0.7128 | 0.6005 | 0.3390 | nan | nan |
2459874 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.558311 | 61.586483 | -0.436399 | 4.236007 | -0.109400 | 8.717268 | 0.379119 | 2.546880 | 0.7025 | 0.5579 | 0.3441 | nan | nan |
2459873 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.473997 | 46.327908 | -0.301757 | 6.009883 | -1.162151 | 3.712061 | -0.426017 | 1.516455 | 0.7069 | 0.5573 | 0.3383 | nan | nan |
2459872 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.717818 | 40.923244 | 0.649895 | 8.542731 | -1.109456 | 10.144708 | 0.467301 | 1.864222 | 0.6993 | 0.5462 | 0.3556 | nan | nan |
2459871 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.828565 | 33.659365 | 0.316634 | 8.692666 | 0.117373 | 8.265343 | -0.193984 | 0.896809 | 0.7066 | 0.5556 | 0.3482 | nan | nan |
2459870 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.647195 | 55.788755 | 0.247064 | 5.989598 | -0.650701 | 5.355011 | 1.620247 | 3.083724 | 0.7120 | 0.5671 | 0.3425 | nan | nan |
2459869 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.895836 | 45.936963 | 0.288621 | 5.216791 | -0.647766 | 6.213847 | 0.205687 | 2.407092 | 0.7165 | 0.5888 | 0.3366 | nan | nan |
2459868 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.730773 | 49.951335 | -0.227386 | 9.006257 | -0.853778 | 4.992799 | 0.197361 | 5.062141 | 0.6995 | 0.5514 | 0.3589 | nan | nan |
2459867 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.469208 | 36.692978 | 0.103240 | 6.517662 | -0.835670 | 2.337289 | 0.094470 | 2.332941 | 0.7135 | 0.5624 | 0.3567 | nan | nan |
2459866 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.409173 | 41.203578 | 0.170116 | 5.430427 | -0.063287 | 4.741923 | 2.655675 | 3.365839 | 0.7118 | 0.5623 | 0.3506 | nan | nan |
2459865 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.741785 | 45.291111 | 2.425434 | 7.921193 | -0.765099 | 5.749869 | 0.552622 | 5.214926 | 0.7282 | 0.5833 | 0.3289 | nan | nan |
2459864 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.699672 | 56.336234 | -0.494319 | 2.988932 | -0.287913 | 4.761150 | 1.593323 | 4.582923 | 0.7077 | 0.5536 | 0.3663 | nan | nan |
2459863 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.252064 | 35.724516 | -0.691150 | -1.287768 | -0.904263 | 9.686206 | -0.026938 | 1.592120 | 0.7043 | 0.5496 | 0.3609 | nan | nan |
2459862 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459861 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.091106 | 28.663842 | -0.635725 | -0.137481 | -0.206183 | 11.437013 | 0.081412 | 0.884722 | 0.7171 | 0.5389 | 0.3768 | nan | nan |
2459860 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -1.231026 | 30.374194 | 0.288075 | 1.749527 | -0.740828 | 15.828286 | -0.024621 | 0.197517 | 0.7243 | 0.5450 | 0.3755 | nan | nan |
2459859 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | - | - | -0.959208 | 27.480639 | -0.741289 | 0.094764 | 0.144549 | 11.241255 | -0.401710 | 0.333129 | 0.7293 | 0.5617 | 0.3669 | nan | nan |
2459858 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.017653 | 28.818069 | -0.735696 | -0.531159 | -0.050166 | 27.365867 | -0.183587 | 1.519927 | 0.7377 | 0.5576 | 0.3804 | 3.363855 | 3.743417 |
2459857 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.583879 | 3.312173 | 0.063269 | -0.541720 | 0.728824 | 40.480935 | 0.450701 | 2.941898 | 0.0318 | 0.0568 | 0.0123 | nan | nan |
2459856 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.444162 | 41.303977 | 0.599368 | 3.196638 | -0.636913 | 5.854469 | 1.580963 | 1.992218 | 0.7294 | 0.5896 | 0.3558 | 2.984818 | 3.545198 |
2459855 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.714605 | 41.081202 | -0.568684 | 1.742671 | -0.839403 | 0.568840 | 0.616846 | 0.422985 | 0.7005 | 0.6045 | 0.3766 | 2.758890 | 3.054311 |
2459854 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.896400 | 40.536170 | -0.795362 | 1.911161 | -0.346930 | 1.134115 | 2.652223 | 2.168795 | 0.7109 | 0.6282 | 0.3877 | 2.764692 | 2.816699 |
2459853 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.110955 | 33.855299 | -0.889591 | 2.616594 | -0.812570 | 2.617360 | 0.971309 | 0.995616 | 0.7427 | 0.5724 | 0.3893 | 3.258959 | 3.806512 |
2459852 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.160995 | 33.009958 | -0.915127 | 0.991707 | -0.669427 | 8.865125 | -0.279609 | 6.083698 | 0.8277 | 0.7649 | 0.2210 | 4.848048 | 6.689541 |
2459851 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.380483 | 36.264023 | -0.828646 | 3.084831 | 0.706532 | 16.331332 | 1.109473 | 5.786170 | 0.7607 | 0.6243 | 0.3197 | 3.224116 | 3.841494 |
2459850 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.271508 | 36.465140 | -0.859567 | 2.485532 | -0.452181 | 6.257115 | 0.762054 | 5.029419 | 0.7480 | 0.6544 | 0.3225 | 2.987410 | 3.009646 |
2459849 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.144742 | 39.396410 | -0.790779 | 5.780321 | -0.890169 | 3.123300 | 0.250560 | 1.303461 | 0.7478 | 0.6421 | 0.3315 | 3.154924 | 3.351186 |
2459848 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.102518 | 35.101765 | -0.049729 | 3.973588 | -0.862796 | 6.239710 | -0.143521 | 0.866898 | 0.7262 | 0.6500 | 0.3469 | 3.038977 | 3.132287 |
2459847 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.463081 | 37.322374 | 0.113747 | 3.667211 | -0.741732 | 6.201463 | 0.619913 | 1.273528 | 0.7333 | 0.5620 | 0.4022 | 3.262066 | 3.478640 |
2459845 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.227927 | 43.870884 | 0.235940 | 5.906438 | -0.032053 | 4.511321 | 0.912775 | -0.049169 | 0.7222 | 0.6239 | 0.3663 | 4.885812 | 3.942792 |
2459844 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.810289 | 11.837282 | -0.249454 | 4.589678 | 0.076472 | 0.054460 | 1.388243 | 2.457379 | 0.0582 | 0.0311 | 0.0167 | nan | nan |
2459843 | digital_ok | 100.00% | 1.20% | 0.66% | 0.00% | 100.00% | 0.00% | 0.211239 | 48.373963 | -1.042684 | 2.905020 | -1.065983 | 3.692106 | 1.486002 | 1.458147 | 0.7364 | 0.6335 | 0.3700 | 4.550561 | 4.537585 |
2459842 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.202979 | 27.544690 | -0.041379 | -1.099124 | -0.329438 | -1.338046 | 0.294905 | 0.439375 | 0.7601 | 0.5274 | 0.2842 | 6.090828 | 7.005307 |
2459841 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.889920 | 17.920277 | -0.043538 | 4.195848 | -0.410754 | -0.871053 | 1.765475 | 2.274508 | 0.0518 | 0.0313 | 0.0142 | nan | nan |
2459839 | digital_ok | 100.00% | - | - | - | - | - | -0.834274 | -0.103926 | 1.800155 | 0.431072 | 0.090950 | 0.867758 | 2.627676 | 5.712328 | nan | nan | nan | nan | nan |
2459838 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.319681 | 40.575711 | -0.033076 | 2.219002 | -1.093536 | 7.008780 | -0.229491 | -0.658904 | 0.7593 | 0.6069 | 0.3725 | 4.558382 | 6.679960 |
2459836 | digital_ok | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0477 | 0.0404 | 0.0011 | nan | nan |
2459835 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.136696 | -1.449721 | -0.979244 | 0.146251 | 1.175174 | -0.476172 | -0.105997 | -0.313076 | 0.0517 | 0.0391 | 0.0036 | nan | nan |
2459833 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.476245 | 3.984046 | -0.288190 | 0.465219 | 1.956292 | 1.797578 | 1.308168 | 1.814849 | 0.0534 | 0.0386 | 0.0053 | nan | nan |
2459832 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.969164 | 61.806844 | -0.249408 | 1.793948 | -0.130133 | 1.157305 | 0.119545 | -0.866670 | 0.8104 | 0.4510 | 0.5548 | 3.659217 | 4.111296 |
2459831 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -1.181366 | -0.516843 | 1.735250 | 0.400461 | -0.864422 | -0.753741 | 1.144323 | 3.183470 | 0.0300 | 0.0273 | 0.0018 | nan | nan |
2459830 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.555585 | 60.507530 | -0.112832 | 2.810776 | -1.132600 | 3.806272 | 0.377015 | -0.977370 | 0.8106 | 0.4674 | 0.5340 | 5.394621 | 5.835751 |
2459829 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.534655 | 67.837109 | -0.574766 | 2.670522 | -0.851723 | 7.016131 | 1.660569 | -0.419870 | 0.7636 | 0.5774 | 0.3902 | 15.558675 | 11.754189 |
2459828 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.205524 | 51.540714 | -0.594704 | 2.506795 | -0.407746 | 2.782781 | 0.589796 | -0.462290 | 0.8071 | 0.4765 | 0.5193 | 0.000000 | 0.000000 |
2459827 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.454356 | 51.434703 | 0.315470 | 3.716702 | -0.586916 | 5.639604 | 1.696920 | 0.751064 | 0.7680 | 0.5721 | 0.3926 | 0.000000 | 0.000000 |
2459826 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.573727 | 46.767091 | 0.140852 | 3.568694 | -0.342235 | 4.507760 | 0.236950 | -0.371639 | 0.8034 | 0.4835 | 0.4927 | -0.000000 | -0.000000 |
2459825 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.402250 | 49.596129 | -0.623880 | 2.486033 | -0.540379 | 2.228813 | 0.165087 | -0.335924 | 0.8045 | 0.5041 | 0.4802 | 5.833701 | 7.225373 |
2459824 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.259982 | 38.781677 | -0.551153 | 2.852730 | -1.020749 | 5.048968 | 0.400006 | 0.032477 | 0.7319 | 0.6345 | 0.3306 | 7.180972 | 7.556650 |
2459823 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.130860 | 43.349897 | -0.075021 | 4.220495 | 0.334774 | 7.168843 | 0.040306 | 2.964432 | 0.7749 | 0.5483 | 0.4438 | 5.850605 | 11.186245 |
2459822 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.443754 | 48.503298 | -0.251031 | 3.697681 | -0.210308 | 3.491791 | 0.844100 | 0.359348 | 0.8077 | 0.5334 | 0.4693 | 4.635795 | 7.219739 |
2459821 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.142449 | 55.080117 | -0.268602 | 3.825003 | -0.837822 | 3.639351 | -0.045811 | 1.976110 | 0.7995 | 0.5416 | 0.4601 | 3.847857 | 5.524364 |
2459820 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.223410 | 54.188611 | 0.017797 | 3.374370 | -1.021847 | 14.154436 | 0.096333 | -0.472536 | 0.7759 | 0.5719 | 0.3928 | 5.081601 | 6.505013 |
2459817 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.402479 | 48.302335 | -0.630452 | 3.282215 | -0.988595 | 7.767924 | -0.541760 | -0.403361 | 0.8024 | 0.5831 | 0.4450 | 3.764483 | 5.451903 |
2459816 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.283495 | 40.214213 | -0.500380 | 3.289582 | -0.883631 | 12.938910 | 0.125598 | 0.940348 | 0.8465 | 0.5113 | 0.5578 | 4.223013 | 5.730492 |
2459815 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.449172 | 42.200971 | -0.601028 | 3.448751 | -0.694312 | 11.988252 | 0.340821 | 4.510820 | 0.7986 | 0.6043 | 0.4570 | 3.557594 | 5.005712 |
2459814 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459813 | 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 |
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 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.802548 | 28.802548 | -0.958335 | -0.557145 | -0.035429 | 0.995014 | 0.023031 | 0.054336 | -0.600390 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.455576 | -0.982926 | 29.455576 | -0.032891 | -0.642967 | 0.096563 | 1.541903 | -0.375258 | 0.354093 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.781156 | -0.832484 | 27.781156 | -0.016363 | -0.616173 | 0.462493 | 1.393888 | 0.007835 | 0.951113 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.399401 | -0.967638 | 28.399401 | -0.082487 | -0.486244 | 0.060962 | 0.532227 | -0.447316 | 0.431277 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.276182 | -0.844138 | 27.276182 | 0.091991 | -0.591378 | 0.315357 | 2.270238 | -0.819958 | -0.417888 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.475514 | -0.928115 | 26.475514 | 0.078038 | -0.561977 | 0.131263 | 1.954130 | -0.361542 | 0.347252 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.165304 | 29.165304 | -0.975149 | -0.497147 | 0.026636 | 1.904813 | -0.288096 | 0.996346 | 0.230529 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.492588 | -0.911953 | 30.492588 | 0.011192 | -0.419943 | 0.003935 | 1.796600 | 0.117089 | 2.076501 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Temporal Variability | 7.641600 | -0.678260 | 6.498123 | -0.069253 | 0.329961 | -0.659695 | 7.641600 | 0.024232 | 1.065855 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.582312 | -1.114177 | 28.582312 | 0.059852 | -0.576607 | -0.648345 | 2.327574 | -0.493821 | 0.503445 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.576726 | 30.576726 | -0.852630 | -0.613695 | -0.113115 | 2.694981 | -0.198853 | 0.895873 | -0.398261 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.563710 | 28.563710 | -1.051213 | -0.533824 | -0.012528 | 1.016735 | -0.442749 | 0.597704 | -0.534384 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.763376 | 28.763376 | -1.115027 | -0.752548 | 0.245025 | 2.272528 | 0.038716 | -0.414901 | 0.466594 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 24.252416 | 24.252416 | -1.122401 | -0.276481 | 0.085384 | 5.010706 | 0.016471 | 0.806404 | 0.263314 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.745215 | 29.745215 | -1.230751 | -0.583532 | -0.023034 | 2.048079 | -0.664038 | 0.004656 | -0.151136 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | ee Power | inf | 289.512804 | 289.961434 | inf | inf | 3401.611575 | 3379.314657 | 4149.008975 | 4092.632429 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.582924 | 29.582924 | -1.272680 | -0.690170 | -0.079187 | 1.668985 | -0.017713 | 0.185961 | -0.406436 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.334024 | 26.334024 | -1.064209 | -0.726692 | -0.168803 | 1.990413 | 0.058216 | 0.656973 | -0.281145 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 25.879731 | 25.879731 | -1.207368 | -0.484748 | -0.005856 | 2.945346 | -0.159006 | 1.051465 | 0.493507 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 24.401918 | -1.048391 | 24.401918 | -0.119272 | -0.634128 | 0.116363 | 2.039240 | -0.243188 | 1.357723 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.122957 | 28.122957 | -0.955516 | -0.461722 | -0.105135 | 1.704704 | -0.246602 | 0.243295 | -0.499186 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.229016 | 27.229016 | -1.104089 | -0.553734 | -0.046133 | 2.382449 | -0.310840 | 0.500990 | -0.292654 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.303305 | 30.303305 | -1.068290 | -0.411172 | -0.024132 | 1.611582 | -0.667350 | 0.947896 | -0.436451 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 25.710074 | 25.710074 | -0.708772 | -0.512168 | 0.018015 | 1.129294 | -0.036383 | 3.036398 | -0.374020 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.132188 | 30.132188 | -0.728549 | -0.530610 | -0.025164 | 2.016885 | 0.251113 | 0.039440 | -0.578759 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 31.124467 | -1.041542 | 31.124467 | 0.016907 | -0.561843 | 0.185561 | 1.594428 | -0.357531 | 0.245008 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.272131 | -0.923993 | 29.272131 | -0.347718 | -0.850990 | 0.015506 | 0.744646 | -0.369376 | 0.552663 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.541574 | 28.541574 | -1.036066 | -0.756277 | -0.225760 | 1.041332 | 0.071904 | 0.966189 | 0.124423 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.714642 | 27.714642 | -0.892382 | -0.729166 | -0.408850 | 1.863414 | 0.444658 | 1.303785 | 0.092917 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.388248 | 26.388248 | -0.961146 | -0.697233 | -0.326463 | 0.878659 | -0.317192 | 0.860697 | -0.281481 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.871108 | -0.799973 | 26.871108 | -0.237003 | -0.633069 | 0.113324 | 0.935663 | -0.491234 | 1.806744 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 24.844738 | 24.844738 | -0.740064 | -0.584774 | -0.276432 | 0.450645 | 0.333241 | 0.685269 | -0.705403 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.930096 | 29.930096 | -0.915602 | -0.699533 | -0.307099 | 1.074117 | 0.532679 | 0.830610 | -0.292652 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.988631 | 27.988631 | -0.883772 | -0.622354 | -0.360239 | 1.181762 | 0.741174 | 0.625159 | -0.292509 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.288481 | 28.288481 | -0.881278 | -0.606448 | -0.371018 | 0.801412 | 0.604510 | 0.755184 | -0.090501 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.560112 | 27.560112 | -0.913911 | -0.591403 | -0.316151 | 0.589228 | 0.861796 | 0.399920 | -0.142962 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.267266 | 26.267266 | -0.768654 | -0.689858 | -0.356999 | 0.621537 | 0.129375 | 2.796750 | -0.490596 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.349776 | -0.987219 | 27.349776 | -0.254739 | -0.775590 | -0.104622 | 0.830068 | -0.370238 | 0.450683 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 21.538859 | -1.340651 | 21.538859 | -0.227976 | -1.263830 | -0.072812 | 1.333876 | 0.377955 | 0.815067 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.427411 | 27.427411 | -1.014299 | -0.750494 | -0.573577 | 1.200956 | -0.333508 | 0.855148 | -0.044187 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 34.094963 | -0.995068 | 34.094963 | -0.572630 | -0.632563 | 0.282072 | 1.400590 | -0.235955 | 0.401217 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.683549 | 27.683549 | -0.862369 | -0.660994 | -0.552370 | 1.178015 | -0.100690 | -0.088640 | -0.581426 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 33.512699 | 33.512699 | -0.834238 | -0.474155 | -0.577684 | 0.612266 | -1.138616 | 1.353527 | -0.068927 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 31.012927 | -0.995360 | 31.012927 | -0.429591 | -0.671796 | -0.090687 | 1.076248 | -0.284171 | 0.051523 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.042599 | -0.869101 | 27.042599 | -0.420854 | -0.505110 | 0.148346 | 0.939846 | -0.066825 | 0.142150 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.912231 | 30.912231 | 0.496929 | 0.120093 | -0.052468 | -0.360049 | -0.001485 | -0.171487 | 0.392239 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.150532 | 26.150532 | -0.858147 | -1.059025 | -0.383989 | 0.776211 | 0.106246 | 0.733267 | -0.121660 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.121608 | 29.121608 | -0.605222 | -0.571465 | -0.406918 | 0.298672 | 0.995166 | 0.009761 | 0.041291 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 22.461857 | 22.461857 | -1.075303 | -0.692524 | 0.013852 | -1.222318 | -0.122821 | -1.029480 | 0.025664 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 15.348508 | -0.391458 | 15.348508 | -0.276056 | -0.246664 | -0.531677 | 1.636883 | 0.345342 | -0.366746 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.832558 | -0.934328 | 28.832558 | -0.236450 | -0.941125 | 0.164729 | 0.195720 | -0.601736 | -0.641377 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.153389 | 30.153389 | -1.174496 | -0.717370 | -0.320700 | -0.510898 | -0.426742 | -0.622993 | 0.023416 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.783717 | 27.783717 | -1.113578 | -0.748974 | -0.523034 | 1.404724 | 0.208046 | 1.746023 | -0.214187 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.285124 | -0.932951 | 26.285124 | -0.703836 | -0.650382 | 0.132697 | 0.822445 | -0.459431 | 1.541216 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.268778 | 27.268778 | -1.055210 | -0.551293 | -0.394926 | 0.389156 | 0.163217 | 1.370659 | -0.283762 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.077667 | -0.846932 | 29.077667 | -0.298971 | -0.507663 | -0.004718 | 1.383997 | -0.366034 | 1.383794 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 32.333053 | 32.333053 | -0.966282 | -0.636825 | -0.459274 | 0.256411 | 0.029874 | 0.966776 | -0.491475 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.893115 | 27.893115 | -1.019453 | -0.785795 | -0.269166 | 0.480351 | 0.524392 | 0.899145 | -0.330040 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.941989 | -0.716323 | 28.941989 | -0.363596 | -0.677732 | -0.044670 | 0.499253 | -0.553582 | -0.005451 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.275165 | -0.982137 | 29.275165 | -0.342717 | -0.792065 | 0.069797 | 0.368617 | -0.393768 | 0.252285 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.451465 | -1.157884 | 30.451465 | -0.494096 | -0.934094 | -0.206719 | 1.140882 | -0.214319 | 0.561829 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.881017 | 30.881017 | -0.577405 | -0.819501 | -0.481241 | 0.782919 | 0.666955 | 1.174777 | 0.156826 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.077660 | 27.077660 | -0.621334 | -0.693631 | -0.513018 | 0.015919 | -0.054078 | 0.590489 | -0.403215 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.905097 | 26.905097 | -0.793590 | -0.733083 | -0.511620 | -0.189644 | 0.127905 | 1.099574 | -0.567141 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.773038 | 26.773038 | -0.684469 | -0.763915 | -0.540038 | -0.463217 | 0.219542 | 0.264205 | -0.520344 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.989864 | 27.989864 | -0.742369 | -0.756849 | -0.517170 | -0.743126 | 0.090688 | 0.314180 | -0.365896 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.833002 | -0.745828 | 29.833002 | -0.500355 | -0.638260 | -0.211987 | -0.602826 | -0.354646 | 0.530236 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.923173 | 29.923173 | -0.751626 | -0.712452 | -0.589055 | -0.419174 | -0.206464 | 0.184985 | -0.432934 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.473222 | 29.473222 | -0.685181 | -0.757727 | -0.656697 | 0.557946 | 0.247010 | 0.892231 | -0.494036 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.510956 | 27.510956 | -0.624122 | -0.785739 | -0.503957 | 1.404896 | 0.143860 | 0.874184 | -0.173979 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.011658 | 28.011658 | -0.724632 | -0.722332 | -0.538528 | 1.010372 | -0.248642 | 1.726132 | -0.036470 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.948117 | 29.948117 | -0.796560 | -0.763485 | -0.539461 | 0.326444 | -0.102772 | 1.128554 | -0.096170 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 33.343800 | -0.710723 | 33.343800 | -0.599964 | -0.769992 | -0.242421 | 0.362215 | -0.314117 | 0.763033 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 33.677115 | -0.655861 | 33.677115 | -0.521959 | -0.775477 | -0.105541 | -0.070238 | -0.367118 | 0.477416 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 32.283088 | -0.653343 | 32.283088 | -0.523329 | -0.728571 | 0.710815 | -0.206142 | -0.487551 | 0.538463 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.436714 | 28.436714 | -0.710246 | -0.749983 | -0.612330 | 0.337905 | 0.281852 | 0.704712 | 0.076700 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 26.916329 | 26.916329 | -0.650044 | -0.797204 | -0.722340 | 0.670361 | -0.423160 | 1.333461 | -0.344426 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.886707 | 27.886707 | -0.765378 | -0.793844 | -0.628205 | -0.080466 | -0.130052 | 0.145126 | -0.267337 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 30.329330 | -0.886713 | 30.329330 | -0.528306 | -0.894821 | -0.589332 | 0.541291 | -0.198562 | -0.101584 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 31.304725 | 31.304725 | -0.813052 | -0.816584 | -0.626809 | 0.742227 | -0.383548 | 1.413108 | 0.025221 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 32.719339 | -0.881662 | 32.719339 | -0.628047 | -0.856194 | -0.202643 | 0.288516 | -0.209044 | 1.123783 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.454785 | -0.939936 | 29.454785 | -0.712614 | -0.886551 | -0.785024 | 0.591655 | 0.202817 | 1.272837 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.328666 | 29.328666 | -1.019653 | -1.095312 | -0.572496 | 0.668110 | -0.478081 | 0.401573 | -0.372913 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 33.428959 | -1.144847 | 33.428959 | -1.409532 | -0.968349 | -1.303110 | 0.411695 | -0.545663 | 1.664873 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 27.907903 | 27.907903 | -0.874372 | -0.941023 | -1.187431 | 0.678459 | -0.139652 | 0.284559 | -0.952858 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 29.900464 | 29.900464 | -0.843743 | -1.372575 | -1.006209 | -0.098308 | -0.171542 | 0.884198 | -0.483680 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 35.426146 | -0.538436 | 35.426146 | -0.868228 | -0.873185 | 11.262321 | 8.448360 | 0.240964 | 0.523309 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 45.378981 | 45.378981 | -0.687102 | 8.320910 | 0.205576 | 7.234911 | -0.693808 | 5.163214 | 0.115692 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 28.561604 | 28.561604 | -0.918606 | -0.993914 | -0.555478 | 0.182833 | 0.507701 | 0.929077 | -0.502665 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 37.404151 | 37.404151 | -0.495697 | 7.341901 | -0.183747 | 3.687199 | -0.546922 | 3.505842 | -0.343385 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 58.118641 | 58.118641 | -0.800748 | 8.315502 | -0.078788 | 5.139108 | -0.968100 | 1.933028 | 0.001371 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 34.825442 | 34.825442 | -0.668215 | 9.614200 | -0.266146 | 9.838823 | -1.641767 | 7.764864 | 0.838670 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 41.630177 | 41.630177 | -0.540070 | 7.816576 | -0.611207 | 3.009770 | -0.686195 | 1.866332 | 0.328461 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 24.940365 | 24.940365 | -0.563624 | -1.210764 | -0.110118 | -1.727625 | 0.629145 | 1.474437 | 0.416821 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 37.429106 | 37.429106 | -0.203201 | 9.826741 | -0.294447 | 5.463467 | -0.567378 | 4.631557 | 0.238768 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 40.013101 | -0.342140 | 40.013101 | -0.401217 | 6.418545 | -0.828670 | 15.405593 | 0.548800 | 4.409804 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 44.014943 | -0.729418 | 44.014943 | 0.043374 | 9.195177 | -0.428853 | 6.775731 | -0.315049 | 3.910557 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 61.586483 | -0.558311 | 61.586483 | -0.436399 | 4.236007 | -0.109400 | 8.717268 | 0.379119 | 2.546880 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
161 | N13 | digital_ok | nn Shape | 46.327908 | -0.473997 | 46.327908 | -0.301757 | 6.009883 | -1.162151 | 3.712061 | -0.426017 | 1.516455 |