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 = "178" csv_folder = "/home/obs/src/H5C_Notebooks/_rtp_summary_" auto_metrics_folder = "/home/obs/src/H5C_Notebooks/auto_metrics_inspect"
display(HTML(f'<h1 style=font-size:50px><u>Antenna {antenna} Report</u><p></p></h1>'))
import numpy as np
import pandas as pd
pd.set_option('display.max_rows', 1000)
import glob
import re
from hera_notebook_templates.utils import status_colors, Antenna
# load csvs and auto_metrics htmls in reverse chronological order
csvs = sorted(glob.glob(os.path.join(csv_folder, 'rtp_summary_table*.csv')))[::-1]
print(f'Found {len(csvs)} csvs in {csv_folder}')
auto_metric_htmls = sorted(glob.glob(auto_metrics_folder + '/auto_metrics_inspect_*.html'))[::-1]
print(f'Found {len(auto_metric_htmls)} auto_metrics notebooks in {auto_metrics_folder}')
Found 255 csvs in /home/obs/src/H5C_Notebooks/_rtp_summary_ Found 248 auto_metrics notebooks in /home/obs/src/H5C_Notebooks/auto_metrics_inspect
# Per-season options
mean_round_modz_cut = 4
dead_cut = 0.4
crossed_cut = 0.0
def jd_to_summary_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/_rtp_summary_/rtp_summary_{jd}.html'
def jd_to_auto_metrics_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/auto_metrics_inspect/auto_metrics_inspect_{jd}.html'
this_antenna = None
jds = []
# parse information about antennas and nodes
for csv in csvs:
df = pd.read_csv(csv)
for n in range(len(df)):
# Add this day to the antenna
row = df.loc[n]
if isinstance(row['Ant'], str) and '<a href' in row['Ant']:
antnum = int(row['Ant'].split('</a>')[0].split('>')[-1]) # it's a link, extract antnum
else:
antnum = int(row['Ant'])
if antnum != int(antenna):
continue
if np.issubdtype(type(row['Node']), np.integer):
row['Node'] = str(row['Node'])
if type(row['Node']) == str and row['Node'].isnumeric():
row['Node'] = 'N' + ('0' if len(row['Node']) == 1 else '') + row['Node']
if this_antenna is None:
this_antenna = Antenna(row['Ant'], row['Node'])
jd = [int(s) for s in re.split('_|\.', csv) if s.isdigit()][-1]
jds.append(jd)
this_antenna.add_day(jd, row)
break
# build dataframe
to_show = {'JDs': [f'<a href="{jd_to_summary_url(jd)}" target="_blank">{jd}</a>' for jd in jds]}
to_show['A Priori Status'] = [this_antenna.statuses[jd] for jd in jds]
df = pd.DataFrame(to_show)
# create bar chart columns for flagging percentages:
bar_cols = {}
bar_cols['Auto Metrics Flags'] = [this_antenna.auto_flags[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jee)'] = [this_antenna.dead_flags_Jee[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jnn)'] = [this_antenna.dead_flags_Jnn[jd] for jd in jds]
bar_cols['Crossed Fraction in Ant Metrics'] = [this_antenna.crossed_flags[jd] for jd in jds]
bar_cols['Flag Fraction Before Redcal'] = [this_antenna.flags_before_redcal[jd] for jd in jds]
bar_cols['Flagged By Redcal chi^2 Fraction'] = [this_antenna.redcal_flags[jd] for jd in jds]
for col in bar_cols:
df[col] = bar_cols[col]
z_score_cols = {}
z_score_cols['ee Shape Modified Z-Score'] = [this_antenna.ee_shape_zs[jd] for jd in jds]
z_score_cols['nn Shape Modified Z-Score'] = [this_antenna.nn_shape_zs[jd] for jd in jds]
z_score_cols['ee Power Modified Z-Score'] = [this_antenna.ee_power_zs[jd] for jd in jds]
z_score_cols['nn Power Modified Z-Score'] = [this_antenna.nn_power_zs[jd] for jd in jds]
z_score_cols['ee Temporal Variability Modified Z-Score'] = [this_antenna.ee_temp_var_zs[jd] for jd in jds]
z_score_cols['nn Temporal Variability Modified Z-Score'] = [this_antenna.nn_temp_var_zs[jd] for jd in jds]
z_score_cols['ee Temporal Discontinuties Modified Z-Score'] = [this_antenna.ee_temp_discon_zs[jd] for jd in jds]
z_score_cols['nn Temporal Discontinuties Modified Z-Score'] = [this_antenna.nn_temp_discon_zs[jd] for jd in jds]
for col in z_score_cols:
df[col] = z_score_cols[col]
ant_metrics_cols = {}
ant_metrics_cols['Average Dead Ant Metric (Jee)'] = [this_antenna.Jee_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Dead Ant Metric (Jnn)'] = [this_antenna.Jnn_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Crossed Ant Metric'] = [this_antenna.crossed_metrics[jd] for jd in jds]
for col in ant_metrics_cols:
df[col] = ant_metrics_cols[col]
redcal_cols = {}
redcal_cols['Median chi^2 Per Antenna (Jee)'] = [this_antenna.Jee_chisqs[jd] for jd in jds]
redcal_cols['Median chi^2 Per Antenna (Jnn)'] = [this_antenna.Jnn_chisqs[jd] for jd in jds]
for col in redcal_cols:
df[col] = redcal_cols[col]
# style dataframe
table = df.style.hide_index()\
.applymap(lambda val: f'background-color: {status_colors[val]}' if val in status_colors else '', subset=['A Priori Status']) \
.background_gradient(cmap='viridis', vmax=mean_round_modz_cut * 3, vmin=0, axis=None, subset=list(z_score_cols.keys())) \
.background_gradient(cmap='bwr_r', vmin=dead_cut-.25, vmax=dead_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.background_gradient(cmap='bwr_r', vmin=crossed_cut-.25, vmax=crossed_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.background_gradient(cmap='plasma', vmax=4, vmin=1, axis=None, subset=list(redcal_cols.keys())) \
.applymap(lambda val: 'font-weight: bold' if val < dead_cut else '', subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val < crossed_cut else '', subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.applymap(lambda val: 'color: red' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.bar(subset=list(bar_cols.keys()), vmin=0, vmax=1) \
.format({col: '{:,.4f}'.format for col in z_score_cols}) \
.format({col: '{:,.4f}'.format for col in ant_metrics_cols}) \
.format('{:,.2%}', na_rep='-', subset=list(bar_cols.keys())) \
.set_table_styles([dict(selector="th",props=[('max-width', f'70pt')])])
This table reproduces each night's row for this antenna from the RTP Summary notebooks. For more info on the columns, see those notebooks, linked in the JD column.
display(HTML(f'<h2>Antenna {antenna}, Node {this_antenna.node}:</h2>'))
HTML(table.render(render_links=True, escape=False))
JDs | A Priori Status | Auto Metrics Flags | Dead Fraction in Ant Metrics (Jee) | Dead Fraction in Ant Metrics (Jnn) | Crossed Fraction in Ant Metrics | Flag Fraction Before Redcal | Flagged By Redcal chi^2 Fraction | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | Average Dead Ant Metric (Jee) | Average Dead Ant Metric (Jnn) | Average Crossed Ant Metric | Median chi^2 Per Antenna (Jee) | Median chi^2 Per Antenna (Jnn) |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2459810 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459809 | digital_ok | 0.00% | 0.00% | 4.08% | 0.00% | 8.00% | 4.00% | -0.710360 | -0.712957 | 1.175160 | -0.294805 | -1.348785 | 0.246118 | 0.359785 | 1.579745 | 0.7447 | 0.4604 | 0.5587 | 1.966782 | 1.335628 |
2459808 | 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 |
2459807 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.953745 | -1.307088 | 0.650223 | -0.710334 | 0.008494 | -0.792602 | 0.290568 | -0.352669 | 0.6781 | 0.6009 | 0.4472 | 1.903049 | 1.817887 |
2459806 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.642490 | -1.501318 | 1.220445 | -0.575049 | -0.667093 | -0.636730 | -0.099619 | -0.543077 | 0.6658 | 0.5533 | 0.3992 | 2.071815 | 1.815011 |
2459805 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.767361 | -1.234166 | 1.488574 | -0.859238 | -0.132794 | -0.813233 | 1.041276 | -0.971039 | 0.6796 | 0.6183 | 0.4425 | 2.856441 | 2.770205 |
2459804 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.989208 | -1.286810 | 0.994076 | -0.617840 | -0.560577 | -1.194631 | -0.593926 | -0.956484 | 0.6776 | 0.6178 | 0.4294 | 2.732736 | 2.555130 |
2459803 | 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 |
2459802 | digital_ok | 0.00% | 0.00% | 1.67% | 0.00% | 1.67% | 0.00% | -1.124005 | -1.493571 | 0.930273 | -0.595190 | -0.519267 | -1.221958 | -0.163495 | -0.431600 | 0.6834 | 0.5176 | 0.4746 | 1.946290 | 1.807233 |
2459801 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | -0.708366 | -1.505785 | 1.138924 | -0.684887 | 0.387304 | -1.490136 | -0.453396 | -1.190927 | 0.6807 | 0.5985 | 0.4411 | 2.388528 | 2.179935 |
2459800 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.672178 | -1.293094 | 1.072713 | -0.813205 | -0.318472 | -1.068925 | 0.023862 | -1.131332 | 0.6484 | 0.6167 | 0.4087 | 2.107287 | 1.939489 |
2459799 | 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 |
2459798 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | -0.998273 | -1.189684 | 1.051769 | -0.771210 | -0.520753 | -0.862381 | -0.405088 | -0.433175 | 0.6335 | 0.6070 | 0.4104 | 2.573353 | 2.656294 |
2459797 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.826166 | -1.191010 | 0.895470 | -0.874804 | -0.629757 | -0.775662 | 0.026045 | 0.683950 | 0.6325 | 0.6089 | 0.4014 | 1.393395 | 1.367058 |
2459796 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 28.95% | 47.37% | -0.830398 | -1.092493 | 0.890286 | -0.783551 | -0.804574 | -0.948115 | -0.006700 | -1.097947 | 0.6207 | 0.6015 | 0.3838 | 4.328548 | 3.431804 |
2459795 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 18.42% | -0.486409 | -0.956084 | 0.933012 | -0.419628 | -0.610781 | -0.907859 | 0.412420 | -0.633618 | 0.6248 | 0.6123 | 0.3874 | 1.590280 | 1.534213 |
2459794 | digital_ok | 0.00% | 18.82% | 18.82% | 0.00% | 68.42% | 0.00% | -0.602478 | -1.198161 | 0.725363 | -0.793166 | -0.319608 | -0.684118 | 1.461767 | 3.103301 | 0.6044 | 0.5909 | 0.3869 | 0.000000 | 0.000000 |
2459793 | digital_ok | 0.00% | 18.82% | 21.51% | 0.00% | 31.58% | 0.00% | -0.665765 | -0.984695 | 1.076340 | -0.955359 | -0.501802 | -1.971427 | -0.375624 | -1.023403 | 0.5863 | 0.5775 | 0.3814 | 1.174942 | 1.176169 |
2459792 | digital_ok | 0.00% | 4.83% | 5.37% | 0.00% | 5.35% | 0.00% | -0.623418 | -1.436541 | 1.054768 | -1.039796 | -0.879594 | -1.101893 | 0.730905 | -0.143755 | 0.6408 | 0.5360 | 0.3840 | 1.863572 | 1.616867 |
2459791 | digital_ok | 0.00% | 32.43% | 32.43% | 0.00% | 32.43% | 0.00% | -0.642636 | -1.016422 | 1.445372 | -0.778194 | -0.673466 | -1.235891 | -0.680569 | -0.940447 | 0.5593 | 0.5513 | 0.3593 | 1.891570 | 1.861324 |
2459790 | digital_ok | 0.00% | 29.57% | 34.95% | 0.00% | 39.47% | 0.00% | -0.376969 | -1.756645 | 1.678083 | -0.748220 | -0.233138 | -0.926556 | -0.149233 | 0.675365 | 0.5539 | 0.5448 | 0.3581 | 1.150282 | 1.122988 |
2459789 | digital_ok | 0.00% | 32.26% | 32.26% | 0.00% | 36.84% | 0.00% | -1.395057 | -1.644625 | -1.021440 | -0.246362 | -1.549435 | -0.684946 | -0.707629 | -1.578590 | 0.5473 | 0.5384 | 0.3601 | 1.692104 | 1.588183 |
2459788 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.009123 | -1.675821 | -0.865146 | -0.466842 | -1.837784 | -0.498231 | -0.654347 | -0.904429 | 0.0596 | 0.0508 | 0.0071 | 1.091296 | 1.097296 |
2459787 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.063748 | -1.355434 | -1.000563 | -0.950249 | -1.364610 | -0.864126 | -0.745107 | -1.275808 | 0.0605 | 0.0521 | 0.0086 | 1.258593 | 1.254300 |
2459786 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.280324 | -1.487137 | -0.834329 | -0.545858 | -1.734001 | -0.742059 | -0.696808 | -0.661810 | 0.0598 | 0.0513 | 0.0085 | 0.928268 | 0.935007 |
2459785 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.919251 | -0.835822 | -0.746537 | -0.958910 | -1.632582 | -1.043950 | -0.000069 | -0.672132 | 0.0706 | 0.0595 | 0.0073 | 1.232737 | 1.230841 |
2459784 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.680785 | -1.189950 | -0.739916 | -1.093147 | -1.039002 | -1.256509 | -0.096957 | -0.946356 | 0.0616 | 0.0571 | 0.0082 | 1.198380 | 1.199798 |
2459783 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.742323 | -1.439001 | -1.500136 | -1.070893 | -1.540005 | -1.757106 | -0.342148 | -0.720892 | 0.0690 | 0.0631 | 0.0107 | 1.320184 | 1.320045 |
2459782 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.048275 | -1.334860 | -0.739948 | -0.665063 | -1.378627 | -1.254890 | -0.488481 | -0.617106 | 0.0757 | 0.0596 | 0.0116 | 1.223545 | 1.222391 |
2459781 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.682481 | -0.963370 | -0.400668 | -0.655157 | 0.373032 | 0.200034 | -0.085681 | -0.385980 | 0.0663 | 0.0629 | 0.0055 | 1.239995 | 1.240591 |
2459778 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.960907 | -1.124039 | -1.127315 | -0.768713 | -0.971708 | -1.083331 | -0.442587 | -0.762248 | 0.0780 | 0.0694 | 0.0083 | 1.242502 | 1.243434 |
2459776 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 6.08% | 0.00% | -0.363375 | -0.336169 | -1.206834 | -0.492981 | -1.427387 | -0.666856 | -0.485456 | -1.179421 | 0.7398 | 0.6325 | 0.4190 | 1.548968 | 1.318268 |
2459774 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.7206 | 0.6287 | 0.4048 | nan | nan |
2459773 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.409138 | -1.048647 | 4.105783 | -1.029037 | 3.513950 | -0.711277 | 2.118358 | 1.683655 | 0.4862 | 0.4858 | 0.2994 | 3.590674 | 4.358271 |
2459772 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.049336 | -0.876321 | 1.400312 | -0.262459 | 1.263100 | -0.118092 | 0.736243 | 3.779991 | 0.4840 | 0.4856 | 0.2875 | 1.283856 | 1.286442 |
2459771 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.287408 | -1.172340 | 1.416129 | -0.739405 | 1.342801 | -0.638914 | 0.927412 | -0.429934 | 0.7147 | 0.6107 | 0.4132 | 1.740962 | 1.538447 |
2459770 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | 0.00% | -0.486605 | -1.347712 | 2.306282 | -0.892661 | 1.778405 | -0.880334 | 0.541117 | -0.815931 | 0.4769 | 0.4751 | 0.2976 | 1.284851 | 1.302136 |
2459769 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.417927 | -1.267034 | 2.976294 | -0.894191 | 1.574120 | -1.005690 | 0.117342 | -0.902449 | 0.4746 | 0.4718 | 0.3019 | 1.352859 | 1.308706 |
2459768 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.125839 | -0.909132 | 3.504150 | -0.862636 | 2.095865 | -0.976607 | 0.676567 | -0.893425 | 0.4827 | 0.4776 | 0.3069 | 1.325753 | 1.325466 |
2459767 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.375487 | -0.803963 | 1.781864 | -0.220879 | 1.242588 | 0.206774 | 0.849957 | 3.312449 | 0.5167 | 0.5127 | 0.2932 | 1.305206 | 1.295555 |
2459766 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.260152 | -0.890932 | 1.674419 | -0.231262 | 1.139526 | -0.172941 | 0.647463 | 3.356690 | 0.4977 | 0.4946 | 0.3140 | 1.327494 | 1.330293 |
2459765 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.119489 | -0.782158 | 4.431046 | -0.956163 | 2.708941 | -1.466655 | 1.003950 | -0.566704 | 0.4883 | 0.4852 | 0.3152 | 3.351379 | 3.718792 |
2459764 | digital_ok | - | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459763 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.022925 | -1.111494 | 2.079546 | -0.842858 | -0.822065 | -0.875558 | -0.529636 | -0.909748 | 0.7115 | 0.6199 | 0.4716 | 1.252488 | 1.124675 |
2459761 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.014388 | -0.860876 | 3.364920 | -0.811024 | 1.293882 | -0.819349 | 1.070643 | 0.041142 | 0.5231 | 0.5248 | 0.3338 | 1.258734 | 1.234917 |
2459760 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.027274 | -1.130597 | 3.151104 | -0.741659 | 2.554567 | -1.229147 | 1.923531 | 0.290188 | 0.5341 | 0.5283 | 0.3417 | 0.000000 | 0.000000 |
2459759 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459758 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.378754 | -1.079570 | 1.678205 | -0.385663 | 0.808019 | -0.707649 | 0.316019 | -0.057337 | 0.0594 | 0.0656 | 0.0066 | 1.286193 | 1.284267 |
2459757 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.011687 | -1.322276 | 1.484687 | -0.518834 | 1.259651 | -0.658589 | 0.396702 | 0.781134 | 0.0545 | 0.0641 | 0.0063 | 1.376386 | 1.362064 |
2459755 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.265904 | -1.038663 | 1.799910 | -0.285316 | 1.288460 | -0.184876 | 3.255349 | 3.900099 | 0.0500 | 0.0592 | 0.0033 | 0.000000 | 0.000000 |
2459754 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.242801 | -1.251884 | 1.443555 | -0.732610 | 0.627530 | -1.200629 | 0.141470 | -0.247352 | 0.0603 | 0.0652 | 0.0069 | 1.253535 | 1.250180 |
2459753 | digital_ok | 0.00% | 16.67% | 16.67% | 0.00% | 18.42% | 0.00% | -0.002848 | -1.457002 | 2.002784 | -0.887017 | 1.434037 | -0.840771 | 0.984436 | -0.505604 | 0.5442 | 0.5352 | 0.3317 | 1.413853 | 1.474181 |
2459752 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.032912 | -0.824903 | 4.947815 | 0.853906 | 2.421072 | -0.350058 | 2.497707 | -0.210856 | 0.6135 | 0.6046 | 0.3846 | 0.000000 | 0.000000 |
2459750 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 9.19% | 2.16% | 0.252948 | -0.911561 | 3.728646 | -0.980688 | 3.259755 | -0.987999 | 0.539131 | -0.603047 | 0.7255 | 0.6232 | 0.4116 | 1.414502 | 1.282647 |
2459749 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.135381 | -0.943061 | 2.008949 | -0.254911 | 0.390309 | -0.831110 | 0.613558 | 7.596473 | 0.6416 | 0.6389 | 0.3937 | 3.747975 | 4.785658 |
2459748 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.113114 | -1.090674 | 2.441385 | -0.511053 | -0.312181 | -0.834656 | 0.708370 | -0.432364 | 0.6359 | 0.6287 | 0.4058 | 1.444825 | 1.558733 |
2459747 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.087198 | 2.413678 | 2.773097 | 5.336323 | 51.995709 | 58.989679 | 114.673981 | 129.581457 | 0.0388 | 0.0367 | 0.0023 | nan | nan |
2459746 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.849997 | 4.898733 | 3.815275 | 8.775533 | 28.090238 | 30.137931 | 94.566819 | 105.273152 | 0.0457 | 0.0446 | 0.0036 | nan | nan |
2459745 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.381101 | -1.163041 | 1.726679 | -0.611141 | 1.334919 | 0.218130 | 0.975911 | 0.685129 | 0.6690 | 0.6600 | 0.4091 | 1.465969 | 1.617516 |
2459744 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.158875 | 3.058822 | 3.172280 | 6.034161 | 13.890093 | 10.274837 | 98.404284 | 114.120407 | 0.0412 | 0.0387 | 0.0018 | nan | nan |
2459743 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.205555 | -1.128957 | 5.375364 | -0.734331 | 3.702246 | -1.241106 | 0.782076 | -0.376777 | 0.7219 | 0.6184 | 0.4281 | 3.493318 | 3.097204 |
2459742 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.155568 | 3.491287 | 4.376493 | 8.488832 | 28.082001 | 31.068228 | 56.059387 | 63.024067 | 0.0426 | 0.0380 | 0.0012 | nan | nan |
2459741 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 4.053926 | 6.885148 | 6.728045 | 11.889936 | 34.646011 | 37.685452 | 68.890674 | 77.096493 | 0.0406 | 0.0415 | 0.0015 | nan | nan |
2459740 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.377516 | 3.553768 | 5.956939 | 10.496350 | 19.346469 | 20.571672 | 115.226088 | 130.198813 | 0.0407 | 0.0355 | 0.0014 | nan | nan |
2459738 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.084553 | -0.760493 | 5.126036 | -1.252188 | 1.421857 | -1.443925 | 0.929372 | -0.305755 | 0.7074 | 0.6918 | 0.4416 | 4.742092 | 5.905361 |
2459736 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.251502 | -1.026721 | 1.351520 | -0.517730 | 1.162549 | -0.435935 | 0.315193 | -0.431473 | 0.7209 | 0.6136 | 0.4318 | 1.692998 | 1.629175 |
2459734 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.741108 | 3.132882 | 3.204108 | 5.609471 | 32.830445 | 38.073897 | 68.774205 | 77.768035 | 0.0397 | 0.0336 | 0.0015 | nan | nan |
2459733 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.186498 | 2.723670 | 2.211953 | 4.702888 | 11.996832 | 13.814372 | 91.760336 | 104.113312 | 0.0326 | 0.0340 | 0.0015 | nan | nan |
2459732 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459731 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.407390 | -0.635177 | 3.905323 | -0.863317 | -0.008703 | -0.731376 | 0.356293 | -0.398799 | 0.7040 | 0.6901 | 0.4201 | 1.614751 | 1.919881 |
2459730 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.799811 | 2.179785 | 2.721115 | 5.350197 | 19.698645 | 22.606524 | 90.705477 | 102.674672 | 0.0363 | 0.0361 | 0.0024 | nan | nan |
2459728 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.656935 | 2.141994 | 2.522005 | 5.322676 | 19.709105 | 22.459010 | 63.265379 | 72.081315 | 0.0389 | 0.0392 | 0.0024 | nan | nan |
2459726 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.407646 | 1.563750 | 1.715899 | 3.790797 | 25.133539 | 29.829648 | 110.486990 | 125.702551 | 0.0421 | 0.0385 | 0.0014 | nan | nan |
2459724 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.182431 | 2.564384 | 1.894992 | 4.224488 | 32.270649 | 36.955929 | 114.872200 | 131.332434 | 0.0371 | 0.0353 | 0.0013 | nan | nan |
2459723 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.474912 | 1.911287 | 1.488983 | 3.588221 | 10.845364 | 12.149795 | 67.463361 | 77.692632 | 0.0388 | 0.0363 | 0.0020 | nan | nan |
2459722 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.965972 | -0.773222 | 5.037004 | -1.212398 | 3.443566 | -0.924028 | 1.833877 | 5.174835 | 0.7079 | 0.6197 | 0.4447 | 3.889770 | 4.119990 |
2459720 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.188236 | 1.646843 | 0.845792 | 3.069884 | 46.440028 | 53.148556 | 50.368623 | 58.015998 | 0.0385 | 0.0369 | 0.0022 | nan | nan |
2459719 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.343218 | 2.448870 | 0.612986 | 3.101144 | 50.934507 | 59.505073 | 84.017378 | 102.264715 | 0.0382 | 0.0389 | 0.0030 | nan | nan |
2459718 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.300270 | 2.840221 | 1.941077 | 4.285145 | 67.721035 | 79.614425 | 116.900325 | 135.255718 | 0.0412 | 0.0369 | 0.0017 | nan | nan |
2459717 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459716 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.791911 | 2.195056 | 1.372622 | 3.281862 | 22.268509 | 25.823561 | 109.087247 | 126.345846 | 0.0351 | 0.0322 | 0.0009 | nan | nan |
2459715 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.109147 | -0.586494 | 3.816882 | -1.060597 | 2.874309 | -1.230575 | 1.370426 | -0.303987 | 0.6872 | 0.6094 | 0.4472 | 3.292207 | 3.361135 |
2459713 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.239217 | 3.223289 | 1.238309 | 3.529031 | 21.149544 | 24.428133 | 96.848133 | 113.506813 | 0.0362 | 0.0337 | 0.0013 | nan | nan |
2459712 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.345658 | -1.093663 | 4.384029 | -0.885261 | 3.574113 | -1.049384 | 1.831863 | 0.131256 | 0.5713 | 0.5490 | 0.3808 | 3.056512 | 3.054785 |
2459711 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.383190 | 1.338160 | 0.206083 | 1.529765 | 5.910249 | 6.608305 | 36.044011 | 41.948497 | 0.0354 | 0.0324 | 0.0009 | nan | nan |
2459710 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.597041 | 1.546680 | 0.371516 | 2.057268 | 13.830729 | 16.022418 | 47.222204 | 55.283522 | 0.0335 | 0.0314 | 0.0006 | nan | nan |
2459708 | digital_ok | 100.00% | 0.00% | 39.39% | 0.00% | 100.00% | 0.00% | 0.012989 | 0.908155 | 3.890273 | 16.263427 | 3.362135 | 94.356177 | 2.270014 | 2.347129 | 0.6865 | 0.3982 | 0.4598 | 0.000000 | 0.000000 |
2459707 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.499273 | 0.033190 | 0.142091 | -0.157079 | 1.010029 | 0.948308 | 29.408168 | 34.545901 | 0.0318 | 0.0312 | 0.0006 | 0.000000 | 0.000000 |
2459706 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.430508 | 1.399079 | -0.046468 | 1.410053 | 7.316877 | 8.887240 | 36.729837 | 43.649557 | 0.0347 | 0.0329 | 0.0005 | nan | nan |
2459705 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.086906 | 3.097861 | -0.130305 | 2.836913 | 15.558018 | 18.421714 | 82.130917 | 98.640704 | 0.0352 | 0.0318 | 0.0002 | nan | nan |
2459703 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.411885 | 2.801587 | 1.226942 | 5.217885 | 100.477467 | 118.069448 | 58.626381 | 69.511406 | 0.0321 | 0.0338 | 0.0052 | nan | nan |
2459702 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.881868 | -0.831362 | 2.764215 | -1.081345 | -0.679393 | -1.203708 | 0.512662 | -0.516416 | 0.6375 | 0.6406 | 0.3483 | 0.000000 | 0.000000 |
2459701 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.048230 | -0.905267 | 1.820710 | -0.703494 | -0.442489 | -1.576547 | 0.385127 | -0.695857 | 0.6458 | 0.6491 | 0.3425 | 1.742964 | 2.141649 |
2459697 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 24.471761 | 24.471761 | 23.136921 | 23.136921 | 19.374402 | 19.374402 | 29.450240 | 29.450240 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459696 | 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 |
2459695 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 1.899475 | 1.899475 | 1.879159 | 1.879159 | 1.834042 | 1.834042 | 2.031462 | 2.031462 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459694 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.32% | 2.16% | 0.027852 | -1.356338 | 2.143878 | -0.994584 | 1.596053 | -1.010436 | 0.177135 | -0.255041 | 0.6540 | 0.6149 | 0.4083 | 1.617771 | 1.621055 |
2459693 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.444854 | -0.888629 | 3.294775 | 0.990945 | 2.294204 | -0.148877 | 5.971067 | 0.692875 | 0.7013 | 0.6784 | 0.2968 | 4.644116 | 4.132292 |
2459692 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 1.149681 | -0.028755 | 1.808222 | -0.292990 | 0.383771 | 3.406556 | 3.231998 | -0.514340 | 0.7521 | 0.7631 | 0.2142 | 2.240064 | 2.542243 |
2459691 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | 0.00% | -1.704223 | -1.681426 | 2.389222 | -1.082456 | -0.155331 | -1.303340 | 0.577975 | -0.170058 | 0.6115 | 0.6154 | 0.3368 | 1.025379 | 1.018957 |
2459690 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.406487 | -1.470977 | 2.898324 | -0.503790 | 0.709640 | -1.050987 | 0.470272 | -1.019881 | 0.6295 | 0.6275 | 0.3643 | -0.000000 | -0.000000 |
2459689 | digital_ok | 0.00% | - | - | - | - | - | -0.814016 | -1.094760 | 3.029888 | -0.886844 | 1.639779 | -1.169051 | 0.652077 | -0.356665 | nan | nan | nan | nan | nan |
2459688 | digital_ok | 0.00% | - | - | - | 0.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 1.572238 | 1.794903 |
2459687 | digital_ok | 0.00% | 98.92% | 98.92% | 0.00% | - | - | -0.358346 | -1.172551 | 2.513728 | -0.372445 | -0.473146 | -0.603594 | 0.639260 | -0.817091 | 0.2995 | 0.3360 | 0.1732 | nan | nan |
2459686 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.146705 | -1.468022 | 2.108887 | -0.627573 | 0.452744 | -1.330818 | 0.196778 | -0.584541 | 0.6186 | 0.6219 | 0.3552 | 1.364950 | 1.350801 |
2459685 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.63% | 0.00% | -1.101823 | -1.095009 | 2.100613 | -0.816738 | 0.636325 | -1.078349 | 0.341530 | -0.488981 | 0.6296 | 0.6284 | 0.3542 | 1.476953 | 1.391902 |
2459684 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.641575 | -1.726488 | 2.473341 | -0.548837 | 0.042957 | -1.255375 | -0.760967 | -0.979562 | 0.6288 | 0.6307 | 0.3566 | 1.351576 | 1.367844 |
2459676 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | -0.461462 | -1.350194 | 3.584781 | -0.898180 | 1.266421 | 0.067336 | -0.284249 | -0.494446 | 0.6381 | 0.6454 | 0.3635 | 10.071924 | 11.762675 |
2459675 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.33% | 0.00% | -0.900193 | -1.091059 | 2.362987 | -0.889055 | 1.328165 | -1.228394 | -0.252643 | -0.419318 | 0.6439 | 0.6510 | 0.3581 | 1.439615 | 1.439573 |
2459674 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.862279 | -1.360952 | 2.167496 | -0.617704 | 1.139793 | -0.593677 | -0.233859 | -0.604047 | 0.6536 | 0.6604 | 0.3570 | 1.426332 | 1.445956 |
2459673 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 97.84% | 0.54% | -0.301504 | -1.245747 | 2.582045 | -0.496745 | 2.387292 | 0.344202 | -0.435776 | -0.910902 | 0.6413 | 0.6343 | 0.3802 | 0.000000 | 0.000000 |
2459672 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | -1.097334 | -1.362085 | 2.394339 | -0.745910 | 0.831075 | -0.840484 | -0.035238 | -0.630285 | 0.6456 | 0.6516 | 0.3572 | 0.000000 | 0.000000 |
2459671 | digital_ok | 0.00% | 32.97% | 0.00% | 0.00% | 87.10% | 0.00% | -0.809731 | -1.051394 | 2.303889 | -0.331230 | 0.905141 | 0.188512 | 0.437419 | -0.286786 | 0.5550 | 0.6218 | 0.3146 | 0.000000 | 0.000000 |
2459670 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.335564 | -0.708967 | 1.569174 | -0.937112 | -0.870440 | -1.055234 | 0.555226 | -0.404796 | 0.0364 | 0.0362 | 0.0018 | nan | nan |
2459668 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.54% | -0.712304 | -1.297471 | 2.365508 | -0.796788 | 2.601719 | -0.160344 | 3.555941 | -0.016089 | 0.6700 | 0.6543 | 0.3581 | 1.302150 | 1.394514 |
2459665 | 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 |
2459664 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.466463 | -0.494231 | -0.996248 | -1.007941 | 0.104416 | -0.458693 | 0.507133 | -0.510335 | 0.0441 | 0.0311 | 0.0013 | nan | nan |
2459663 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.108348 | -0.842463 | 4.921839 | -0.374217 | 5.303734 | 0.778314 | 1.527661 | 0.583871 | 0.6376 | 0.6321 | 0.3544 | 0.000000 | 0.000000 |
2459662 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.546889 | 0.390259 | 1.023245 | -0.281044 | -0.341199 | -0.809845 | 0.557054 | -0.619094 | 0.0354 | 0.0365 | 0.0033 | nan | nan |
2459661 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.413487 | -0.768460 | 3.150637 | -0.516563 | 1.724542 | -0.094307 | 3.554091 | 0.372807 | 0.6754 | 0.6657 | 0.3163 | 1.573304 | 1.697928 |
2459660 | digital_ok | 0.00% | 0.64% | 0.64% | 0.00% | 0.00% | 0.00% | -0.461399 | -0.772561 | 2.283317 | -0.201042 | 1.390380 | -0.292134 | 2.142640 | 0.314060 | 0.6727 | 0.6524 | 0.3235 | 1.248973 | 1.263525 |
2459659 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.08% | 0.00% | -0.558967 | -0.976500 | 1.975550 | -0.404549 | 1.569965 | -0.264120 | 0.850617 | -1.092451 | 0.6285 | 0.6264 | 0.3494 | 1.270922 | 1.315571 |
2459658 | digital_ok | 0.00% | 0.64% | 0.64% | 0.00% | 0.00% | 0.00% | -0.722207 | -1.181528 | 1.956147 | 0.840049 | 1.884254 | 1.055303 | 1.612605 | -1.307281 | 0.6335 | 0.6326 | 0.3472 | 1.512187 | 1.691612 |
2459657 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.962472 | -1.283229 | 2.309781 | -0.245186 | 1.109429 | 0.534633 | 0.612947 | -0.023568 | 0.6415 | 0.6302 | 0.3426 | 1.348380 | 1.391774 |
2459656 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | -0.772467 | -1.057605 | 0.820048 | 0.055214 | 0.173236 | 0.098744 | 0.461511 | -0.580008 | 0.6208 | 0.6266 | 0.3510 | 1.286263 | 1.320768 |
2459655 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.106268 | 0.185911 | 1.446055 | -0.828720 | -0.643261 | -1.589950 | 0.629637 | -1.022475 | 0.0362 | 0.0364 | 0.0022 | nan | nan |
2459653 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 52.656418 | 112.923708 | 110.974464 | 132.408650 | 56.079546 | 79.095689 | 444.621545 | 726.526657 | 0.0172 | 0.0162 | 0.0007 | 1.231724 | 1.222093 |
2459652 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 76.711073 | 97.899741 | 166.181600 | 156.595777 | 77.583689 | 76.003034 | 761.142350 | 735.188178 | 0.0168 | 0.0165 | 0.0004 | 1.061576 | 1.059283 |
2459651 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 39.730144 | 94.528929 | 152.876900 | 170.484857 | 22.292842 | 26.759836 | 38.663900 | 49.608217 | 0.0177 | 0.0165 | 0.0007 | 0.910428 | 0.906542 |
2459650 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 28.664480 | 105.823485 | 130.871469 | 175.199165 | 38.479037 | 63.996271 | 75.287350 | 142.847387 | 0.0176 | 0.0165 | 0.0009 | 1.060679 | 1.049593 |
2459649 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 68.591816 | 144.036513 | 139.290453 | 177.985197 | 71.053628 | 74.659741 | 1363.878014 | 1955.876083 | 0.0164 | 0.0162 | 0.0004 | 1.138747 | 1.135001 |
2459648 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | 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 |
2459646 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 56.720485 | 116.227321 | 156.843833 | 197.636906 | 74.863070 | 92.835335 | 1456.348422 | 1951.753793 | 0.0172 | 0.0169 | 0.0005 | 1.181495 | 1.181642 |
2459645 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 46.038851 | 103.218787 | 145.668831 | 179.664353 | 47.047145 | 91.921394 | 186.949527 | 268.909747 | 0.0191 | 0.0170 | 0.0007 | 1.101919 | 1.087055 |
2459642 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 40.149276 | 88.284718 | 162.213985 | 197.079219 | 40.517155 | 44.615879 | 590.964384 | 802.040147 | 0.0185 | 0.0170 | 0.0008 | 1.125720 | 1.116099 |
2459641 | digital_ok | - | 24.16% | 53.02% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.5728 | 0.4780 | 0.0342 | nan | nan |
2459640 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 14.59% | -0.055145 | -0.410734 | 2.584199 | -0.445764 | -0.633535 | 0.864613 | -0.175679 | -0.331412 | 0.5951 | 0.6032 | 0.3239 | 1.410532 | 1.550686 |
2459639 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -1.045300 | -0.945035 | 2.417983 | -0.625393 | 0.154430 | 3.631846 | -0.138854 | 0.546899 | 0.6007 | 0.6091 | 0.3182 | 1.333730 | 1.369731 |
2459638 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.7151 | 0.7335 | 0.2581 | nan | nan |
2459637 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | -0.496431 | -1.018817 | 2.778372 | -0.136763 | -0.533463 | -0.259889 | 0.477507 | -0.178072 | 0.5904 | 0.5943 | 0.3279 | 1.209181 | 1.197912 |
2459636 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.00% | -0.720042 | -0.680926 | 2.782363 | 0.119435 | -1.054603 | 0.258629 | 0.724443 | 0.253389 | 0.5884 | 0.5911 | 0.3281 | 1.294416 | 1.334797 |
2459635 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 10.75% | -0.551180 | -0.291700 | 2.316547 | -0.075564 | -0.696619 | 0.452293 | 0.539061 | -0.269372 | 0.5965 | 0.5985 | 0.3280 | 1.108154 | 1.133348 |
2459634 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 9.920016 | -0.673018 | 152134.229494 | -0.673126 | 8.344323 | -0.672058 | 8.333973 | -0.672140 | 1.0000 | 1.0000 | 0.0000 | 0.021301 | 0.021409 |
2459633 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 9.14% | 0.00% | -0.877625 | -0.922071 | 2.811408 | 0.003079 | -1.164402 | 0.840140 | -0.311802 | -0.823811 | 0.5922 | 0.5962 | 0.3413 | 1.064870 | 1.067939 |
2459632 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.438616 | -1.072869 | 2.519511 | -0.014328 | -0.846681 | -0.013667 | -0.299258 | -0.426419 | 0.5973 | 0.6022 | 0.3388 | 1.522415 | 1.587069 |
2459631 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.610670 | -1.250257 | 2.910830 | -0.248225 | -0.945755 | 0.439109 | 0.031357 | -0.332439 | 0.6009 | 0.6051 | 0.3337 | 1.312219 | 1.321470 |
2459630 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 12.90% | -0.667911 | -0.998126 | 2.295778 | -0.494221 | -1.218624 | 1.933165 | 0.016339 | -0.523894 | 0.6033 | 0.6092 | 0.3335 | 1.432323 | 1.465475 |
2459629 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.30% | 20.43% | -0.383777 | -0.578144 | 3.183528 | 0.332315 | -0.687324 | 0.907523 | -0.260552 | -0.584332 | 0.6174 | 0.6169 | 0.3234 | 1.625576 | 1.718765 |
2459628 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.181772 | -0.756545 | 1.960056 | 0.135592 | -0.896078 | 0.037582 | -0.089199 | -0.634832 | 0.6004 | 0.6043 | 0.3412 | 1.202470 | 1.171789 |
2459627 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.677659 | -0.677659 | -0.677388 | -0.677388 | -0.670998 | -0.670998 | -0.671108 | -0.671108 | 1.0000 | 1.0000 | 0.0000 | 0.004275 | 0.004275 |
2459626 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.704648 | -1.267790 | 1.868706 | -0.869792 | -0.061047 | -0.915222 | 1.546478 | 9.788432 | 0.6153 | 0.6188 | 0.3437 | 4.893001 | 5.008891 |
2459625 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.76% | 0.00% | -0.051199 | -0.537958 | 2.504198 | 0.099231 | -0.605759 | 0.201959 | -0.312388 | -0.665652 | 0.6060 | 0.6089 | 0.3415 | 1.513833 | 1.633490 |
2459624 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 35.14% | -0.758487 | -1.354994 | 1.780827 | 0.121738 | -0.112575 | 0.098665 | 0.317223 | -0.358366 | 0.6114 | 0.6160 | 0.3358 | 1.341032 | 1.385483 |
2459623 | digital_ok | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459622 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 2.511641 | -1.405474 | 4.821601 | 1.379181 | -0.822921 | 0.200915 | -0.086673 | -0.522659 | 0.5943 | 0.6148 | 0.3592 | 0.000000 | 0.000000 |
2459621 | digital_ok | 0.00% | - | - | - | 100.00% | 0.00% | 0.495706 | 1.523041 | 2.297397 | -0.475258 | -0.790768 | 1.678766 | 0.677517 | 0.926935 | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.291580 | 0.011498 | 1.332403 | -0.833564 | -0.788217 | -1.099642 | 0.857000 | -0.320660 | 0.0351 | 0.0317 | 0.0011 | nan | nan |
2459619 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 2.208757 | -1.130219 | 2.245515 | 0.368635 | -0.683047 | -0.583628 | -0.440037 | -0.724701 | 0.0712 | 0.0723 | 0.0117 | 0.000000 | 0.000000 |
2459618 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.064467 | -1.286200 | 2.719751 | 0.211700 | -0.694531 | -0.322453 | 1.193583 | -0.364807 | 0.0666 | 0.0644 | 0.0103 | 0.000000 | 0.000000 |
2459617 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.627045 | -1.312266 | 2.137173 | -0.174149 | -1.083304 | -0.369652 | 0.212156 | -0.548417 | 0.0627 | 0.0550 | 0.0083 | 0.000000 | 0.000000 |
2459616 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 4.854171 | -0.917473 | 3.749819 | 1.010676 | 6.221737 | -0.046714 | 1.865903 | -0.352830 | 0.0733 | 0.0686 | 0.0101 | 0.937509 | 0.936771 |
2459615 | digital_ok | 0.00% | 51.35% | 51.35% | 0.00% | 100.00% | 0.00% | 0.106800 | -1.368100 | 2.220319 | -0.077736 | -0.864398 | -0.184393 | 0.564415 | -0.158319 | 0.3284 | 0.3387 | 0.1967 | 0.000000 | 0.000000 |
2459614 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 95.70% | 0.00% | 0.168076 | -0.904592 | 2.448463 | -0.199919 | -0.849536 | -0.518665 | 1.042449 | -0.376884 | 0.6123 | 0.6211 | 0.3671 | 0.000000 | 0.000000 |
2459613 | digital_ok | 100.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459612 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 31.89% | 0.00% | -0.334866 | -1.274614 | 2.279921 | -0.661295 | -0.279381 | -0.646412 | -0.146444 | 0.095831 | 0.5650 | 0.5975 | 0.2968 | 0.861974 | 1.025673 |
2459611 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.322021 | -1.263045 | 1.728719 | 0.355560 | -0.337475 | 14.069552 | 0.607242 | 1.048725 | 0.6328 | 0.6567 | 0.3389 | 4.402742 | 4.766740 |
2459610 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.872965 | -1.243476 | 2.528872 | -0.060606 | -0.024112 | 0.367552 | 2.568685 | 0.208545 | 0.6990 | 0.7103 | 0.2961 | 1.552570 | 1.705190 |
2459609 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.70% | 4.32% | 0.101942 | -0.473406 | 3.100201 | 0.688562 | -0.930543 | 1.584747 | 0.807679 | -0.562286 | 0.6567 | 0.6697 | 0.3149 | 1.595684 | 1.611239 |
2459608 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 5.38% | -0.198464 | -0.510094 | 3.762348 | 0.494530 | -0.910383 | 0.621040 | -0.013473 | -0.233254 | 0.6315 | 0.6475 | 0.3700 | 1.427204 | 1.414155 |
2459607 | digital_ok | 0.00% | 41.08% | 41.62% | 0.00% | 2.35% | 15.29% | 0.267910 | -0.509609 | 2.660784 | 0.839711 | 2.765245 | 0.937973 | -0.678702 | -0.829699 | 0.3666 | 0.3786 | 0.2316 | 1.540590 | 1.490480 |
2459605 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.722061 | -0.723441 | 0.073306 | -0.442083 | -1.022074 | -0.591205 | -1.350714 | -0.017287 | 0.0368 | 0.0283 | 0.0009 | nan | nan |
2459604 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.23% | 1.08% | -0.452772 | -1.470278 | 3.344135 | -0.227528 | -0.278217 | -0.966114 | 1.588546 | -0.427190 | 0.6724 | 0.6818 | 0.3129 | 1.521035 | 1.597124 |
2459603 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | 0.00% | -0.710206 | -0.994645 | 3.397467 | 0.293689 | -0.687905 | -0.595752 | 0.168481 | -0.523810 | 0.7392 | 0.7511 | 0.3058 | 2.139480 | 2.284149 |
2459602 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.059027 | -1.250306 | 4.405731 | 0.296870 | -0.582444 | 0.680996 | -0.022083 | -0.453235 | 0.6512 | 0.6738 | 0.3545 | 4.602804 | 4.859596 |
2459598 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 0.54% | 0.00% | -0.684729 | -0.718413 | 3.103863 | -0.163157 | -0.505656 | -0.262103 | 0.370299 | -0.949903 | 0.6493 | 0.6640 | 0.3821 | 1.454227 | 1.416406 |
2459597 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.61% | 0.00% | -1.074490 | -0.981856 | 3.624549 | 0.302180 | -0.579507 | -0.214966 | -0.143297 | -0.701879 | 0.6537 | 0.6652 | 0.3495 | 1.549733 | 1.468944 |
2459596 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 1.61% | 0.00% | -0.906266 | -1.335617 | 2.926464 | 0.272153 | -0.564699 | -0.720961 | -0.168734 | -0.527524 | 0.6489 | 0.6617 | 0.3705 | 1.584391 | 1.514625 |
2459595 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.656731 | -1.404524 | 3.101180 | 1.694002 | 5.355428 | 0.147954 | 4.315436 | 1.616262 | 0.7480 | 0.7548 | 0.2251 | 5.515276 | 8.017545 |
2459594 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 0.264867 | -0.878798 | 3.897358 | 1.421008 | 2.259878 | 4.015424 | 3.145342 | 0.252454 | 0.7601 | 0.7754 | 0.2592 | 15.608104 | 15.450163 |
2459593 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.69% | 2.69% | -0.617793 | -1.357052 | 3.196807 | -0.117452 | -0.284918 | -0.228656 | 2.979521 | 0.211404 | 0.7330 | 0.7277 | 0.2598 | 1.809792 | 1.888746 |
2459592 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.146763 | -0.578752 | 0.954144 | -0.609889 | -1.009322 | -0.539506 | -1.819315 | -0.103051 | 0.0294 | 0.0292 | 0.0010 | nan | nan |
2459591 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.752904 | -0.613452 | 4.345373 | 0.355788 | -0.142571 | -0.846532 | -0.510920 | -0.483574 | 0.6570 | 0.6766 | 0.3790 | 5.135656 | 5.312675 |
2459590 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.865653 | -0.984785 | 3.955491 | -0.342272 | -0.884175 | 0.813508 | -0.151668 | -0.688500 | 0.6599 | 0.6759 | 0.3757 | 5.198700 | 5.380994 |
2459589 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.206174 | -1.510521 | 3.594066 | 1.223510 | 1.215275 | 4.600547 | 3.648269 | 0.001860 | 0.6885 | 0.6923 | 0.3033 | 6.194746 | 6.650949 |
2459588 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.744850 | -1.326493 | 4.323374 | -0.211966 | -0.350968 | -1.180223 | 2.454961 | 0.245805 | 0.7764 | 0.7631 | 0.2230 | 7.618373 | 6.249023 |
2459587 | digital_ok | 100.00% | - | - | - | 100.00% | 0.00% | -0.254856 | -0.496312 | 5.694133 | 0.950558 | 0.282681 | -0.802341 | 0.346972 | -0.363952 | nan | nan | nan | 0.000000 | 0.000000 |
2459586 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 7.03% | 0.00% | -0.947833 | -0.579486 | -0.844451 | -0.542063 | 0.009684 | -0.080715 | -0.666931 | -1.011804 | 0.6363 | 0.6542 | 0.3806 | 1.513218 | 1.566228 |
2459585 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.800173 | -0.485073 | -0.748295 | -0.863963 | -0.725511 | -0.271468 | -1.073144 | -0.675169 | 0.0364 | 0.0350 | 0.0015 | 0.000000 | 0.000000 |
2459584 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 62.28% | 4.79% | -1.029602 | 0.821083 | 0.474545 | -0.891708 | -0.863422 | 1.183821 | 0.128070 | -0.312903 | 0.5998 | 0.6176 | 0.3709 | 0.946169 | 0.873929 |
2459583 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.23% | 0.00% | -1.134451 | -0.572101 | -0.301509 | -0.853450 | -1.094979 | -0.569543 | -0.721504 | -0.787916 | 0.6566 | 0.6760 | 0.3927 | 1.419160 | 1.449746 |
2459582 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 2.70% | 0.00% | -0.610944 | 0.033563 | -0.416784 | -0.743796 | -0.847295 | -0.401145 | -0.798845 | -0.824487 | 0.6580 | 0.6758 | 0.3953 | 1.358958 | 1.351561 |
2459581 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.24% | 0.00% | -1.310231 | -0.214385 | -0.004870 | -0.850865 | -1.019916 | -0.471117 | -0.540887 | -0.855260 | 0.6616 | 0.6794 | 0.3923 | 1.521696 | 1.522688 |
2459580 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.76% | 0.00% | -0.968726 | -0.205433 | -0.544089 | -0.743703 | -1.047508 | -0.199895 | -0.796860 | -0.958931 | 0.6595 | 0.6774 | 0.3907 | 1.357190 | 1.395549 |
2459579 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.557967 | 0.004664 | -0.171715 | -0.726402 | -1.123615 | -0.412091 | -0.474200 | -0.673817 | 0.6465 | 0.6660 | 0.4008 | 0.000000 | 0.000000 |
2459578 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.705903 | 0.152467 | -0.606854 | -0.372366 | -1.206369 | -1.094255 | 0.014886 | -0.946265 | 0.0336 | 0.0316 | 0.0012 | nan | nan |
2459577 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.95% | 15.14% | -0.982588 | -0.856653 | -0.039852 | -0.873324 | -1.067980 | -1.091996 | -0.527560 | -0.865798 | 0.6586 | 0.6771 | 0.3905 | 1.399325 | 1.353555 |
2459576 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.84% | 0.54% | -1.030995 | -0.758565 | 0.104517 | -0.570142 | -0.626436 | -1.117372 | -0.225666 | 0.288380 | 0.6824 | 0.6995 | 0.3942 | 1.358717 | 1.335239 |
2459575 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.91% | 0.00% | -0.768725 | -0.778927 | -0.331476 | -0.594454 | -1.193386 | 2.542091 | -0.296846 | -0.728421 | 0.7361 | 0.7455 | 0.3439 | 1.483117 | 1.576985 |
2459574 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.493628 | -0.500070 | -0.149983 | -0.918962 | -0.348352 | 5.232775 | -0.653982 | -0.227904 | 0.6808 | 0.6984 | 0.3900 | 3.830729 | 3.618671 |
2459573 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 0.00% | -0.898940 | -0.136213 | -0.276781 | -0.594027 | -1.560371 | -0.974376 | -0.701602 | -0.534348 | 0.6747 | 0.6955 | 0.3955 | 1.443380 | 1.388454 |
2459572 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 3.78% | 0.00% | -1.003942 | -0.757840 | -0.171931 | -0.817415 | -0.992329 | -1.025035 | -0.047542 | -0.149186 | 0.6838 | 0.7016 | 0.3917 | 1.457290 | 1.494101 |
2459571 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | - | - | -0.479899 | 0.187796 | -0.791010 | -0.420862 | -1.186014 | 14.274743 | 0.154912 | -0.431139 | 0.0339 | 0.0301 | 0.0010 | nan | nan |
2459570 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 6.507781 | 6.025206 | 8.701464 | 7.352071 | 5.779424 | 3.934589 | 3.958728 | 4.304094 | 0.6788 | 0.7101 | 0.3770 | 11.037998 | 12.237676 |
2459569 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.32% | 0.00% | -0.984764 | -0.908055 | -0.113015 | -0.758958 | -0.015672 | 3.127426 | -0.022409 | -0.591121 | 0.7420 | 0.7519 | 0.2578 | 1.840562 | 1.817487 |
2459566 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.32% | 0.00% | -0.864425 | -0.718389 | -0.032796 | -0.846928 | -0.985452 | -0.959350 | 0.511306 | -0.757187 | 0.6670 | 0.6861 | 0.4102 | 1.495701 | 1.615919 |
2459565 | digital_ok | 0.00% | - | - | - | 86.67% | 0.00% | -0.056602 | -0.056602 | -0.073735 | -0.073735 | 0.553413 | 0.553413 | 0.061081 | 0.061081 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.967491 | -1.577508 | -4.849810 | -4.317832 | 9.215395 | 8.403724 | -0.360238 | -0.761124 | 0.6732 | 0.6846 | 0.4038 | 2.862080 | 2.884408 |
2459563 | digital_ok | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 5.641812 | 6.367175 | 21.972560 | 22.710191 | 11.492568 | 14.222018 | -1.462397 | -1.872537 | 0.6712 | 0.6805 | 0.3954 | 3.726835 | 3.291207 |
2459562 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459561 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -1.252775 | -1.004652 | -0.003948 | -0.426674 | 0.003372 | -0.141197 | 0.049368 | -0.350609 | 0.6860 | 0.7023 | 0.3948 | 1.580598 | 1.586555 |
2459560 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -1.087873 | -0.986288 | 0.249288 | -0.403657 | 0.064012 | -0.237071 | -0.034195 | -0.433236 | 0.6809 | 0.6985 | 0.4074 | 1.496465 | 1.440479 |
2459559 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.38% | 0.00% | 0.170517 | 0.755654 | -0.108234 | 0.245913 | -0.958708 | -0.454226 | -1.060723 | -1.412039 | 0.6675 | 0.6826 | 0.3963 | 1.536452 | 1.548078 |
2459558 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 13.44% | 0.54% | -1.025855 | -0.438215 | -0.474719 | -0.751505 | -1.241328 | -1.011998 | -0.041748 | -0.715457 | 0.6748 | 0.6871 | 0.4109 | 1.516694 | 1.426986 |
2459557 | digital_ok | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0297 | 0.0292 | 0.0012 | nan | nan |
2459556 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.54% | -0.926564 | -0.585760 | -0.454048 | -0.884402 | -1.171658 | -1.042593 | -0.118630 | -0.727148 | 0.6763 | 0.6893 | 0.3991 | 1.539032 | 1.408053 |
2459554 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6856 | 0.6990 | 0.4087 | nan | nan |
2459553 | digital_ok | - | 0.00% | 0.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.6802 | 0.6953 | 0.4079 | nan | nan |
2459552 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.86% | 0.00% | -1.140664 | -0.686081 | -0.094865 | 1.055596 | -1.394853 | 3.892724 | 0.231935 | 0.371621 | 0.6901 | 0.7029 | 0.4003 | 1.408832 | 1.490839 |
2459551 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.38% | 0.00% | -1.126706 | -0.998540 | 0.152473 | -0.424008 | 0.267674 | -0.117403 | -0.009298 | -0.263059 | 0.6827 | 0.6974 | 0.4013 | 1.487449 | 1.484192 |
2459550 | digital_ok | - | 99.18% | 99.18% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0328 | 0.0314 | 0.0008 | nan | nan |
2459549 | 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 |
2459542 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 22.32% | 0.00% | -0.632061 | -0.358184 | 0.940822 | -0.557833 | -0.434804 | -0.689673 | -0.162028 | -0.838794 | 0.7315 | 0.7307 | 0.3757 | 1.491165 | 1.446864 |
2459541 | digital_ok | 0.00% | 1.34% | 1.34% | 0.00% | 21.88% | 0.00% | -0.967740 | -0.942511 | -0.434288 | -1.144877 | -0.673373 | 0.770085 | 0.616134 | -0.036568 | 0.7215 | 0.7207 | 0.3505 | 1.470074 | 1.475564 |
2459540 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 21.88% | 0.00% | -1.284548 | -1.218104 | -0.127052 | -0.486255 | -0.339014 | 0.664502 | 0.014218 | -0.370156 | 0.7365 | 0.7330 | 0.3610 | 1.469134 | 1.489745 |
2459536 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -1.490899 | -1.187385 | 0.692919 | -0.998443 | -0.010562 | -1.252764 | 0.696853 | -0.398417 | 0.7055 | 0.7136 | 0.4394 | 0.000000 | 0.000000 |
2459535 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 21.43% | 0.00% | -0.891479 | -1.059755 | 0.056771 | -0.467330 | 0.530243 | 1.555316 | 0.156234 | -0.288089 | 0.7766 | 0.7581 | 0.3769 | 1.561819 | 1.515764 |
2459534 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 20.98% | 0.00% | -1.158807 | -1.225941 | 0.047715 | -0.594255 | 0.938014 | 1.299574 | -0.132104 | -0.485439 | 0.7687 | 0.7501 | 0.3690 | 1.507100 | 1.496405 |
2459533 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 4.89% | 0.00% | -0.857723 | -0.666526 | -0.511101 | -0.457724 | -1.257952 | -0.438289 | -0.742287 | -0.572756 | 0.7064 | 0.7137 | 0.4122 | 1.575977 | 1.491265 |
2459532 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 5.00% | 0.00% | -0.967224 | -0.411042 | -0.174062 | -0.868547 | -1.116451 | -0.850176 | -0.006337 | -0.091791 | 0.7076 | 0.7153 | 0.4101 | 1.552028 | 1.534640 |
2459530 | 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 |
2459527 | digital_ok | 0.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459524 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459523 | digital_ok | 100.00% | - | - | - | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459522 | 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 |
2459513 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | - | - | -0.387721 | 0.136866 | -0.528285 | -0.799684 | -0.486513 | -0.347490 | 0.009581 | 0.037879 | 0.0364 | 0.0342 | -0.0002 | nan | nan |
2459508 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 81.58% | 0.00% | -1.083241 | -0.773478 | -0.991758 | -0.698538 | -1.201316 | -1.099349 | 0.300239 | -0.590702 | 0.8993 | 0.9237 | 0.2134 | 0.000000 | 0.000000 |
2459505 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.000303 | -0.562845 | -0.115533 | -0.536532 | -1.407018 | -0.622185 | -1.186869 | -0.774197 | 0.0691 | 0.0618 | 0.0035 | 0.887578 | 0.887989 |
2459503 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 89.47% | 0.00% | -1.145088 | -0.913890 | -0.372471 | -0.598972 | -0.294087 | -1.477385 | -0.285965 | -0.837723 | 0.8695 | 0.8560 | 0.4538 | 0.000000 | 0.000000 |
2459501 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.617226 | -0.277467 | -0.972679 | 0.012895 | -0.713136 | 0.053268 | 0.335907 | -0.838843 | 0.1080 | 0.1006 | 0.0117 | 0.000000 | 0.000000 |
2459500 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.976625 | 0.002313 | -1.264509 | 0.153680 | -0.861300 | -0.704561 | 0.204731 | -0.607562 | 0.0949 | 0.1059 | 0.0099 | 0.000000 | 0.000000 |
2459499 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.854856 | -0.405454 | -1.341159 | -0.115383 | -0.920271 | -0.870743 | 0.012622 | -0.496056 | 0.1014 | 0.1206 | 0.0083 | 0.000000 | 0.000000 |
2459498 | digital_ok | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 9.038181 | -0.539140 | 4.199537 | -0.160759 | 9.829482 | -0.935737 | 32.558485 | -0.662824 | 0.0423 | 0.0883 | 0.0042 | 0.000000 | 0.000000 |
2459497 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.203768 | -0.612704 | -1.129093 | -0.169958 | -1.246679 | -1.233357 | -0.838656 | -0.693816 | 0.0990 | 0.1089 | 0.0102 | 0.000000 | 0.000000 |
2459496 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.179256 | -0.972234 | -0.822678 | -0.202560 | -0.646579 | -1.637059 | -0.493397 | -0.674863 | 0.0891 | 0.1067 | 0.0097 | 0.000000 | 0.000000 |
2459495 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -1.142391 | -0.649602 | -0.710954 | -0.190847 | -0.668476 | -1.214924 | -0.642516 | -0.722578 | 0.1079 | 0.1054 | 0.0130 | 0.000000 | 0.000000 |
2459494 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.861414 | -0.477691 | -1.045254 | -0.071634 | -1.024322 | -1.302545 | -0.796685 | -0.844916 | 0.1129 | 0.1167 | 0.0135 | 0.000000 | 0.000000 |
2459492 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.779231 | -0.448952 | -1.062479 | -1.348657 | -0.392165 | -0.065855 | -0.373807 | -0.779046 | 0.0949 | 0.0732 | 0.0060 | 0.000000 | 0.000000 |
2459491 | digital_ok | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.401764 | -0.572334 | -0.716919 | -1.514164 | -0.261693 | 0.049396 | -0.971667 | -0.980944 | 0.1036 | 0.0929 | 0.0064 | 0.000000 | 0.000000 |
2459490 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.724436 | -0.357531 | -1.036946 | -1.935719 | -0.307471 | -0.396131 | -0.759427 | -0.453810 | 0.7386 | 0.8013 | 0.3717 | 0.000000 | 0.000000 |
2459489 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.621427 | -0.660783 | -1.002766 | -1.696301 | -0.614447 | 0.522826 | -0.035050 | 1.208730 | 0.7588 | 0.8099 | 0.3215 | 0.000000 | 0.000000 |
2459488 | digital_ok | 0.00% | 0.00% | 0.00% | 0.00% | 85.71% | 9.52% | -0.549319 | -0.585209 | -0.629543 | -0.823273 | -0.594944 | -0.598066 | 0.009222 | -1.083086 | 0.7586 | 0.8115 | 0.3500 | 0.000000 | 0.000000 |
auto_metrics
notebooks.¶htmls_to_display = []
for am_html in auto_metric_htmls:
html_to_display = ''
# read html into a list of lines
with open(am_html) as f:
lines = f.readlines()
# find section with this antenna's metric plots and add to html_to_display
jd = [int(s) for s in re.split('_|\.', am_html) if s.isdigit()][-1]
try:
section_start_line = lines.index(f'<h2>Antenna {antenna}: {jd}</h2>\n')
except ValueError:
continue
html_to_display += lines[section_start_line].replace(str(jd), f'<a href="{jd_to_auto_metrics_url(jd)}" target="_blank">{jd}</a>')
for line in lines[section_start_line + 1:]:
html_to_display += line
if '<hr' in line:
htmls_to_display.append(html_to_display)
break
These figures are reproduced from auto_metrics
notebooks. For more info on the specific plots and metrics, see those notebooks (linked at the JD). The most recent 100 days (at most) are shown.
for i, html_to_display in enumerate(htmls_to_display):
if i == 100:
break
display(HTML(html_to_display))
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Shape | nan | nan | nan | nan | nan | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 1.579745 | -0.712957 | -0.710360 | -0.294805 | 1.175160 | 0.246118 | -1.348785 | 1.579745 | 0.359785 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 0.650223 | -1.307088 | -0.953745 | -0.710334 | 0.650223 | -0.792602 | 0.008494 | -0.352669 | 0.290568 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.220445 | -0.642490 | -1.501318 | 1.220445 | -0.575049 | -0.667093 | -0.636730 | -0.099619 | -0.543077 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.488574 | -0.767361 | -1.234166 | 1.488574 | -0.859238 | -0.132794 | -0.813233 | 1.041276 | -0.971039 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 0.994076 | -1.286810 | -0.989208 | -0.617840 | 0.994076 | -1.194631 | -0.560577 | -0.956484 | -0.593926 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 0.930273 | -1.493571 | -1.124005 | -0.595190 | 0.930273 | -1.221958 | -0.519267 | -0.431600 | -0.163495 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.138924 | -1.505785 | -0.708366 | -0.684887 | 1.138924 | -1.490136 | 0.387304 | -1.190927 | -0.453396 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.072713 | -1.293094 | -0.672178 | -0.813205 | 1.072713 | -1.068925 | -0.318472 | -1.131332 | 0.023862 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.051769 | -0.998273 | -1.189684 | 1.051769 | -0.771210 | -0.520753 | -0.862381 | -0.405088 | -0.433175 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 0.895470 | -1.191010 | -0.826166 | -0.874804 | 0.895470 | -0.775662 | -0.629757 | 0.683950 | 0.026045 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 0.890286 | -0.830398 | -1.092493 | 0.890286 | -0.783551 | -0.804574 | -0.948115 | -0.006700 | -1.097947 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 0.933012 | -0.956084 | -0.486409 | -0.419628 | 0.933012 | -0.907859 | -0.610781 | -0.633618 | 0.412420 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 3.103301 | -0.602478 | -1.198161 | 0.725363 | -0.793166 | -0.319608 | -0.684118 | 1.461767 | 3.103301 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.076340 | -0.665765 | -0.984695 | 1.076340 | -0.955359 | -0.501802 | -1.971427 | -0.375624 | -1.023403 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.054768 | -0.623418 | -1.436541 | 1.054768 | -1.039796 | -0.879594 | -1.101893 | 0.730905 | -0.143755 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.445372 | -0.642636 | -1.016422 | 1.445372 | -0.778194 | -0.673466 | -1.235891 | -0.680569 | -0.940447 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.678083 | -1.756645 | -0.376969 | -0.748220 | 1.678083 | -0.926556 | -0.233138 | 0.675365 | -0.149233 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Power | -0.246362 | -1.644625 | -1.395057 | -0.246362 | -1.021440 | -0.684946 | -1.549435 | -1.578590 | -0.707629 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Power | -0.466842 | -1.675821 | -1.009123 | -0.466842 | -0.865146 | -0.498231 | -1.837784 | -0.904429 | -0.654347 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | -0.745107 | -1.063748 | -1.355434 | -1.000563 | -0.950249 | -1.364610 | -0.864126 | -0.745107 | -1.275808 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Power | -0.545858 | -1.487137 | -1.280324 | -0.545858 | -0.834329 | -0.742059 | -1.734001 | -0.661810 | -0.696808 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | -0.000069 | -0.835822 | -0.919251 | -0.958910 | -0.746537 | -1.043950 | -1.632582 | -0.672132 | -0.000069 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | -0.096957 | -0.680785 | -1.189950 | -0.739916 | -1.093147 | -1.039002 | -1.256509 | -0.096957 | -0.946356 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | -0.342148 | -1.439001 | -0.742323 | -1.070893 | -1.500136 | -1.757106 | -1.540005 | -0.720892 | -0.342148 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | -0.488481 | -1.334860 | -1.048275 | -0.665063 | -0.739948 | -1.254890 | -1.378627 | -0.617106 | -0.488481 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Variability | 0.373032 | -0.682481 | -0.963370 | -0.400668 | -0.655157 | 0.373032 | 0.200034 | -0.085681 | -0.385980 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | -0.442587 | -1.124039 | -0.960907 | -0.768713 | -1.127315 | -1.083331 | -0.971708 | -0.762248 | -0.442587 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Shape | -0.336169 | -0.363375 | -0.336169 | -1.206834 | -0.492981 | -1.427387 | -0.666856 | -0.485456 | -1.179421 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 4.105783 | -1.048647 | 0.409138 | -1.029037 | 4.105783 | -0.711277 | 3.513950 | 1.683655 | 2.118358 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 3.779991 | 0.049336 | -0.876321 | 1.400312 | -0.262459 | 1.263100 | -0.118092 | 0.736243 | 3.779991 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.416129 | -1.172340 | 0.287408 | -0.739405 | 1.416129 | -0.638914 | 1.342801 | -0.429934 | 0.927412 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.306282 | -1.347712 | -0.486605 | -0.892661 | 2.306282 | -0.880334 | 1.778405 | -0.815931 | 0.541117 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.976294 | -1.267034 | -0.417927 | -0.894191 | 2.976294 | -1.005690 | 1.574120 | -0.902449 | 0.117342 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 3.504150 | -0.125839 | -0.909132 | 3.504150 | -0.862636 | 2.095865 | -0.976607 | 0.676567 | -0.893425 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 3.312449 | 0.375487 | -0.803963 | 1.781864 | -0.220879 | 1.242588 | 0.206774 | 0.849957 | 3.312449 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 3.356690 | -0.890932 | 0.260152 | -0.231262 | 1.674419 | -0.172941 | 1.139526 | 3.356690 | 0.647463 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 4.431046 | -0.782158 | -0.119489 | -0.956163 | 4.431046 | -1.466655 | 2.708941 | -0.566704 | 1.003950 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.079546 | 0.022925 | -1.111494 | 2.079546 | -0.842858 | -0.822065 | -0.875558 | -0.529636 | -0.909748 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 3.364920 | -0.860876 | -0.014388 | -0.811024 | 3.364920 | -0.819349 | 1.293882 | 0.041142 | 1.070643 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 3.151104 | -0.027274 | -1.130597 | 3.151104 | -0.741659 | 2.554567 | -1.229147 | 1.923531 | 0.290188 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.678205 | -0.378754 | -1.079570 | 1.678205 | -0.385663 | 0.808019 | -0.707649 | 0.316019 | -0.057337 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.484687 | -1.322276 | 0.011687 | -0.518834 | 1.484687 | -0.658589 | 1.259651 | 0.781134 | 0.396702 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 3.900099 | -0.265904 | -1.038663 | 1.799910 | -0.285316 | 1.288460 | -0.184876 | 3.255349 | 3.900099 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.443555 | -0.242801 | -1.251884 | 1.443555 | -0.732610 | 0.627530 | -1.200629 | 0.141470 | -0.247352 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.002784 | -1.457002 | -0.002848 | -0.887017 | 2.002784 | -0.840771 | 1.434037 | -0.505604 | 0.984436 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 4.947815 | 0.032912 | -0.824903 | 4.947815 | 0.853906 | 2.421072 | -0.350058 | 2.497707 | -0.210856 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 3.728646 | 0.252948 | -0.911561 | 3.728646 | -0.980688 | 3.259755 | -0.987999 | 0.539131 | -0.603047 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 7.596473 | -0.135381 | -0.943061 | 2.008949 | -0.254911 | 0.390309 | -0.831110 | 0.613558 | 7.596473 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.441385 | 0.113114 | -1.090674 | 2.441385 | -0.511053 | -0.312181 | -0.834656 | 0.708370 | -0.432364 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 129.581457 | 1.087198 | 2.413678 | 2.773097 | 5.336323 | 51.995709 | 58.989679 | 114.673981 | 129.581457 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | Not Found | nn Temporal Discontinuties | 105.273152 | 4.898733 | 1.849997 | 8.775533 | 3.815275 | 30.137931 | 28.090238 | 105.273152 | 94.566819 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.726679 | -1.163041 | 0.381101 | -0.611141 | 1.726679 | 0.218130 | 1.334919 | 0.685129 | 0.975911 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 114.120407 | 2.158875 | 3.058822 | 3.172280 | 6.034161 | 13.890093 | 10.274837 | 98.404284 | 114.120407 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 5.375364 | -0.205555 | -1.128957 | 5.375364 | -0.734331 | 3.702246 | -1.241106 | 0.782076 | -0.376777 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 63.024067 | 2.155568 | 3.491287 | 4.376493 | 8.488832 | 28.082001 | 31.068228 | 56.059387 | 63.024067 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 77.096493 | 6.885148 | 4.053926 | 11.889936 | 6.728045 | 37.685452 | 34.646011 | 77.096493 | 68.890674 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 130.198813 | 2.377516 | 3.553768 | 5.956939 | 10.496350 | 19.346469 | 20.571672 | 115.226088 | 130.198813 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 5.126036 | -0.084553 | -0.760493 | 5.126036 | -1.252188 | 1.421857 | -1.443925 | 0.929372 | -0.305755 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.351520 | -1.026721 | -0.251502 | -0.517730 | 1.351520 | -0.435935 | 1.162549 | -0.431473 | 0.315193 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 77.768035 | 3.132882 | 1.741108 | 5.609471 | 3.204108 | 38.073897 | 32.830445 | 77.768035 | 68.774205 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 104.113312 | 2.723670 | 1.186498 | 4.702888 | 2.211953 | 13.814372 | 11.996832 | 104.113312 | 91.760336 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 3.905323 | -0.635177 | 0.407390 | -0.863317 | 3.905323 | -0.731376 | -0.008703 | -0.398799 | 0.356293 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 102.674672 | 0.799811 | 2.179785 | 2.721115 | 5.350197 | 19.698645 | 22.606524 | 90.705477 | 102.674672 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 72.081315 | 2.141994 | 0.656935 | 5.322676 | 2.522005 | 22.459010 | 19.709105 | 72.081315 | 63.265379 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 125.702551 | 1.563750 | 0.407646 | 3.790797 | 1.715899 | 29.829648 | 25.133539 | 125.702551 | 110.486990 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 131.332434 | 2.564384 | 1.182431 | 4.224488 | 1.894992 | 36.955929 | 32.270649 | 131.332434 | 114.872200 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 77.692632 | 1.911287 | 0.474912 | 3.588221 | 1.488983 | 12.149795 | 10.845364 | 77.692632 | 67.463361 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 5.174835 | 0.965972 | -0.773222 | 5.037004 | -1.212398 | 3.443566 | -0.924028 | 1.833877 | 5.174835 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 58.015998 | 0.188236 | 1.646843 | 0.845792 | 3.069884 | 46.440028 | 53.148556 | 50.368623 | 58.015998 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 102.264715 | 2.448870 | 0.343218 | 3.101144 | 0.612986 | 59.505073 | 50.934507 | 102.264715 | 84.017378 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 135.255718 | 1.300270 | 2.840221 | 1.941077 | 4.285145 | 67.721035 | 79.614425 | 116.900325 | 135.255718 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 126.345846 | 0.791911 | 2.195056 | 1.372622 | 3.281862 | 22.268509 | 25.823561 | 109.087247 | 126.345846 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 3.816882 | 0.109147 | -0.586494 | 3.816882 | -1.060597 | 2.874309 | -1.230575 | 1.370426 | -0.303987 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 113.506813 | 3.223289 | 1.239217 | 3.529031 | 1.238309 | 24.428133 | 21.149544 | 113.506813 | 96.848133 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 4.384029 | -1.093663 | 0.345658 | -0.885261 | 4.384029 | -1.049384 | 3.574113 | 0.131256 | 1.831863 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 41.948497 | 1.338160 | 0.383190 | 1.529765 | 0.206083 | 6.608305 | 5.910249 | 41.948497 | 36.044011 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 55.283522 | 1.546680 | 0.597041 | 2.057268 | 0.371516 | 16.022418 | 13.830729 | 55.283522 | 47.222204 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Variability | 94.356177 | 0.012989 | 0.908155 | 3.890273 | 16.263427 | 3.362135 | 94.356177 | 2.270014 | 2.347129 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 34.545901 | 0.033190 | -0.499273 | -0.157079 | 0.142091 | 0.948308 | 1.010029 | 34.545901 | 29.408168 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 43.649557 | 1.399079 | 0.430508 | 1.410053 | -0.046468 | 8.887240 | 7.316877 | 43.649557 | 36.729837 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Discontinuties | 98.640704 | 3.097861 | 1.086906 | 2.836913 | -0.130305 | 18.421714 | 15.558018 | 98.640704 | 82.130917 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | nn Temporal Variability | 118.069448 | 2.801587 | 1.411885 | 5.217885 | 1.226942 | 118.069448 | 100.477467 | 69.511406 | 58.626381 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.764215 | -0.881868 | -0.831362 | 2.764215 | -1.081345 | -0.679393 | -1.203708 | 0.512662 | -0.516416 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 1.820710 | -0.905267 | 0.048230 | -0.703494 | 1.820710 | -1.576547 | -0.442489 | -0.695857 | 0.385127 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | 29.450240 | 24.471761 | 24.471761 | 23.136921 | 23.136921 | 19.374402 | 19.374402 | 29.450240 | 29.450240 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Temporal Discontinuties | 2.031462 | 1.899475 | 1.899475 | 1.879159 | 1.879159 | 1.834042 | 1.834042 | 2.031462 | 2.031462 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | N12 | digital_ok | ee Power | 2.143878 | -1.356338 | 0.027852 | -0.994584 | 2.143878 | -1.010436 | 1.596053 | -0.255041 | 0.177135 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | 12 | digital_ok | ee Temporal Discontinuties | 5.971067 | -0.444854 | -0.888629 | 3.294775 | 0.990945 | 2.294204 | -0.148877 | 5.971067 | 0.692875 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | 12 | digital_ok | nn Temporal Variability | 3.406556 | 1.149681 | -0.028755 | 1.808222 | -0.292990 | 0.383771 | 3.406556 | 3.231998 | -0.514340 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | 12 | digital_ok | ee Power | 2.389222 | -1.704223 | -1.681426 | 2.389222 | -1.082456 | -0.155331 | -1.303340 | 0.577975 | -0.170058 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | 12 | digital_ok | ee Power | 2.898324 | -1.406487 | -1.470977 | 2.898324 | -0.503790 | 0.709640 | -1.050987 | 0.470272 | -1.019881 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
178 | 12 | digital_ok | ee Power | 3.029888 | -0.814016 | -1.094760 | 3.029888 | -0.886844 | 1.639779 | -1.169051 | 0.652077 | -0.356665 |