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 = "180" csv_folder = "/home/obs/src/H5C_Notebooks/_rtp_summary_" auto_metrics_folder = "/home/obs/src/H5C_Notebooks/auto_metrics_inspect"
display(HTML(f'<h1 style=font-size:50px><u>Antenna {antenna} Report</u><p></p></h1>'))
import numpy as np
import pandas as pd
pd.set_option('display.max_rows', 1000)
import glob
import re
from hera_notebook_templates.utils import status_colors, Antenna
# load csvs and auto_metrics htmls in reverse chronological order
csvs = sorted(glob.glob(os.path.join(csv_folder, 'rtp_summary_table*.csv')))[::-1]
print(f'Found {len(csvs)} csvs in {csv_folder}')
auto_metric_htmls = sorted(glob.glob(auto_metrics_folder + '/auto_metrics_inspect_*.html'))[::-1]
print(f'Found {len(auto_metric_htmls)} auto_metrics notebooks in {auto_metrics_folder}')
Found 255 csvs in /home/obs/src/H5C_Notebooks/_rtp_summary_ Found 248 auto_metrics notebooks in /home/obs/src/H5C_Notebooks/auto_metrics_inspect
# Per-season options
mean_round_modz_cut = 4
dead_cut = 0.4
crossed_cut = 0.0
def jd_to_summary_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/_rtp_summary_/rtp_summary_{jd}.html'
def jd_to_auto_metrics_url(jd):
return f'https://htmlpreview.github.io/?https://github.com/HERA-Team/H6C_Notebooks/blob/main/auto_metrics_inspect/auto_metrics_inspect_{jd}.html'
this_antenna = None
jds = []
# parse information about antennas and nodes
for csv in csvs:
df = pd.read_csv(csv)
for n in range(len(df)):
# Add this day to the antenna
row = df.loc[n]
if isinstance(row['Ant'], str) and '<a href' in row['Ant']:
antnum = int(row['Ant'].split('</a>')[0].split('>')[-1]) # it's a link, extract antnum
else:
antnum = int(row['Ant'])
if antnum != int(antenna):
continue
if np.issubdtype(type(row['Node']), np.integer):
row['Node'] = str(row['Node'])
if type(row['Node']) == str and row['Node'].isnumeric():
row['Node'] = 'N' + ('0' if len(row['Node']) == 1 else '') + row['Node']
if this_antenna is None:
this_antenna = Antenna(row['Ant'], row['Node'])
jd = [int(s) for s in re.split('_|\.', csv) if s.isdigit()][-1]
jds.append(jd)
this_antenna.add_day(jd, row)
break
# build dataframe
to_show = {'JDs': [f'<a href="{jd_to_summary_url(jd)}" target="_blank">{jd}</a>' for jd in jds]}
to_show['A Priori Status'] = [this_antenna.statuses[jd] for jd in jds]
df = pd.DataFrame(to_show)
# create bar chart columns for flagging percentages:
bar_cols = {}
bar_cols['Auto Metrics Flags'] = [this_antenna.auto_flags[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jee)'] = [this_antenna.dead_flags_Jee[jd] for jd in jds]
bar_cols[f'Dead Fraction in Ant Metrics (Jnn)'] = [this_antenna.dead_flags_Jnn[jd] for jd in jds]
bar_cols['Crossed Fraction in Ant Metrics'] = [this_antenna.crossed_flags[jd] for jd in jds]
bar_cols['Flag Fraction Before Redcal'] = [this_antenna.flags_before_redcal[jd] for jd in jds]
bar_cols['Flagged By Redcal chi^2 Fraction'] = [this_antenna.redcal_flags[jd] for jd in jds]
for col in bar_cols:
df[col] = bar_cols[col]
z_score_cols = {}
z_score_cols['ee Shape Modified Z-Score'] = [this_antenna.ee_shape_zs[jd] for jd in jds]
z_score_cols['nn Shape Modified Z-Score'] = [this_antenna.nn_shape_zs[jd] for jd in jds]
z_score_cols['ee Power Modified Z-Score'] = [this_antenna.ee_power_zs[jd] for jd in jds]
z_score_cols['nn Power Modified Z-Score'] = [this_antenna.nn_power_zs[jd] for jd in jds]
z_score_cols['ee Temporal Variability Modified Z-Score'] = [this_antenna.ee_temp_var_zs[jd] for jd in jds]
z_score_cols['nn Temporal Variability Modified Z-Score'] = [this_antenna.nn_temp_var_zs[jd] for jd in jds]
z_score_cols['ee Temporal Discontinuties Modified Z-Score'] = [this_antenna.ee_temp_discon_zs[jd] for jd in jds]
z_score_cols['nn Temporal Discontinuties Modified Z-Score'] = [this_antenna.nn_temp_discon_zs[jd] for jd in jds]
for col in z_score_cols:
df[col] = z_score_cols[col]
ant_metrics_cols = {}
ant_metrics_cols['Average Dead Ant Metric (Jee)'] = [this_antenna.Jee_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Dead Ant Metric (Jnn)'] = [this_antenna.Jnn_dead_metrics[jd] for jd in jds]
ant_metrics_cols['Average Crossed Ant Metric'] = [this_antenna.crossed_metrics[jd] for jd in jds]
for col in ant_metrics_cols:
df[col] = ant_metrics_cols[col]
redcal_cols = {}
redcal_cols['Median chi^2 Per Antenna (Jee)'] = [this_antenna.Jee_chisqs[jd] for jd in jds]
redcal_cols['Median chi^2 Per Antenna (Jnn)'] = [this_antenna.Jnn_chisqs[jd] for jd in jds]
for col in redcal_cols:
df[col] = redcal_cols[col]
# style dataframe
table = df.style.hide_index()\
.applymap(lambda val: f'background-color: {status_colors[val]}' if val in status_colors else '', subset=['A Priori Status']) \
.background_gradient(cmap='viridis', vmax=mean_round_modz_cut * 3, vmin=0, axis=None, subset=list(z_score_cols.keys())) \
.background_gradient(cmap='bwr_r', vmin=dead_cut-.25, vmax=dead_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.background_gradient(cmap='bwr_r', vmin=crossed_cut-.25, vmax=crossed_cut+.25, axis=0, subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.background_gradient(cmap='plasma', vmax=4, vmin=1, axis=None, subset=list(redcal_cols.keys())) \
.applymap(lambda val: 'font-weight: bold' if val < dead_cut else '', subset=list([col for col in ant_metrics_cols if 'dead' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val < crossed_cut else '', subset=list([col for col in ant_metrics_cols if 'crossed' in col.lower()])) \
.applymap(lambda val: 'font-weight: bold' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.applymap(lambda val: 'color: red' if val > mean_round_modz_cut else '', subset=list(z_score_cols.keys())) \
.bar(subset=list(bar_cols.keys()), vmin=0, vmax=1) \
.format({col: '{:,.4f}'.format for col in z_score_cols}) \
.format({col: '{:,.4f}'.format for col in ant_metrics_cols}) \
.format('{:,.2%}', na_rep='-', subset=list(bar_cols.keys())) \
.set_table_styles([dict(selector="th",props=[('max-width', f'70pt')])])
This table reproduces each night's row for this antenna from the RTP Summary notebooks. For more info on the columns, see those notebooks, linked in the JD column.
display(HTML(f'<h2>Antenna {antenna}, Node {this_antenna.node}:</h2>'))
HTML(table.render(render_links=True, escape=False))
JDs | A Priori Status | Auto Metrics Flags | Dead Fraction in Ant Metrics (Jee) | Dead Fraction in Ant Metrics (Jnn) | Crossed Fraction in Ant Metrics | Flag Fraction Before Redcal | Flagged By Redcal chi^2 Fraction | ee Shape Modified Z-Score | nn Shape Modified Z-Score | ee Power Modified Z-Score | nn Power Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Discontinuties Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | Average Dead Ant Metric (Jee) | Average Dead Ant Metric (Jnn) | Average Crossed Ant Metric | Median chi^2 Per Antenna (Jee) | Median chi^2 Per Antenna (Jnn) |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2459810 | RF_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459809 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.310477 | 17.766232 | 0.382870 | 32.044053 | 0.530265 | 28.225374 | 0.327467 | 1.072312 | 0.8113 | 0.2099 | 0.6601 | 10.735508 | 2.123916 |
2459808 | RF_maintenance | 100.00% | 0.00% | 38.17% | 0.00% | 100.00% | 0.00% | 0.418903 | 12.082158 | 0.258144 | 57.735015 | -0.893892 | 19.467213 | -0.806271 | 4.792611 | 0.7441 | 0.4665 | 0.5482 | 165.299816 | 52.401593 |
2459807 | RF_maintenance | 100.00% | 0.00% | 40.86% | 0.00% | 100.00% | 0.00% | 1.123835 | 12.152250 | 0.753931 | 42.036255 | -0.520656 | 15.677380 | -1.428164 | 18.157599 | 0.7438 | 0.4699 | 0.5470 | 155.458412 | 39.920417 |
2459806 | RF_maintenance | 100.00% | 0.00% | 85.93% | 0.00% | 100.00% | 0.00% | 0.848635 | 17.342979 | 0.773590 | 41.124871 | -0.094864 | 37.495976 | -0.222801 | 6.843970 | 0.7402 | 0.3002 | 0.5282 | 13.364122 | 2.650509 |
2459805 | RF_maintenance | 100.00% | 0.00% | 38.17% | 0.00% | 100.00% | 0.00% | 0.574032 | 11.338632 | 0.843175 | 55.955138 | -0.157795 | 13.542200 | -0.059484 | 3.314338 | 0.7369 | 0.4749 | 0.5386 | 142.372471 | 35.996330 |
2459804 | RF_maintenance | 100.00% | 0.00% | 38.17% | 0.00% | 100.00% | 0.00% | 0.791332 | 13.173145 | 0.725800 | 50.396305 | -0.721828 | 14.464573 | -0.908927 | 2.019837 | 0.7334 | 0.4807 | 0.5280 | 153.390041 | 42.958661 |
2459803 | RF_maintenance | 100.00% | 0.00% | 43.55% | 0.00% | 100.00% | 0.00% | 1.318533 | 15.924455 | 1.100755 | 65.770148 | -0.733536 | 15.390689 | -0.466720 | 10.820733 | 0.7196 | 0.4647 | 0.5250 | 124.259960 | 39.562661 |
2459802 | RF_maintenance | 100.00% | 0.00% | 75.00% | 0.00% | 100.00% | 0.00% | 0.435681 | 16.805973 | 0.710646 | 47.905736 | -0.560550 | 29.221226 | -0.228430 | 5.842727 | 0.7483 | 0.3330 | 0.5761 | 17.093209 | 3.358828 |
2459801 | RF_maintenance | 100.00% | 0.00% | 40.86% | 0.00% | 100.00% | 0.00% | 0.663741 | 13.157545 | 0.454745 | 49.346191 | -1.079886 | 27.080527 | -0.797258 | 15.004846 | 0.7470 | 0.4647 | 0.5536 | 12.648048 | 4.557259 |
2459800 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459799 | RF_maintenance | 100.00% | 0.00% | 87.65% | 0.00% | 100.00% | 0.00% | 0.583081 | 17.165665 | 0.631374 | 37.673500 | -0.377672 | 48.191057 | -0.047810 | 2.309490 | 0.7348 | 0.3112 | 0.5404 | 13.021014 | 2.769575 |
2459798 | RF_maintenance | 100.00% | 0.00% | 35.48% | 0.00% | 100.00% | 0.00% | 0.429822 | 13.320661 | -0.053819 | 48.635817 | -0.868902 | 13.225017 | -0.895915 | 9.513069 | 0.7189 | 0.4992 | 0.5233 | 209.473793 | 53.307868 |
2459797 | RF_maintenance | 100.00% | 0.00% | 34.95% | 0.00% | 100.00% | 0.00% | 0.389717 | 11.229894 | 0.539769 | 47.496135 | -0.711614 | 17.255581 | -0.968988 | 13.271897 | 0.7105 | 0.4948 | 0.5063 | 25.121915 | 8.396939 |
2459796 | RF_maintenance | 100.00% | 0.00% | 37.63% | 0.00% | 100.00% | 0.00% | 0.520250 | 12.019255 | 1.360727 | 60.418266 | -0.319753 | 15.001609 | -0.583959 | 12.243603 | 0.7042 | 0.4899 | 0.5042 | 0.000000 | 0.000000 |
2459795 | RF_maintenance | 100.00% | 0.00% | 37.63% | 0.00% | 100.00% | 0.00% | 0.116130 | 13.947524 | 0.609573 | 50.123740 | -0.518220 | 17.134171 | -0.806051 | 12.639738 | 0.7020 | 0.4931 | 0.4978 | 575.887329 | 199.611156 |
2459794 | RF_maintenance | 100.00% | 0.00% | 40.32% | 0.00% | 100.00% | 0.00% | -0.300218 | 13.678310 | 0.336420 | 50.267929 | -0.004852 | 20.705394 | -0.639672 | 18.832343 | 0.7053 | 0.4983 | 0.5118 | 0.000000 | 0.000000 |
2459793 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459792 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459791 | RF_maintenance | 100.00% | 0.00% | 51.35% | 0.00% | 100.00% | 0.00% | 1.209024 | 12.544332 | 2.398931 | 64.134750 | 0.856026 | 19.829943 | -0.881852 | 2.358061 | 0.6703 | 0.4601 | 0.4765 | 71.818747 | 18.225223 |
2459790 | RF_maintenance | 100.00% | 0.00% | 56.45% | 0.00% | 100.00% | 0.00% | 1.342896 | 21.303195 | 1.782802 | 57.819826 | 1.133039 | 30.980744 | -0.618664 | 7.602017 | 0.6569 | 0.4312 | 0.4776 | 16.492157 | 4.574938 |
2459789 | RF_maintenance | 100.00% | 0.00% | 56.45% | 0.00% | 100.00% | 0.00% | 0.640218 | 19.156895 | 0.368142 | 62.464708 | 0.654981 | 33.375759 | 0.506404 | 18.223116 | 0.6522 | 0.4253 | 0.4633 | 6.735745 | 3.012497 |
2459788 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459787 | RF_maintenance | 100.00% | 0.00% | 64.52% | 0.00% | 100.00% | 0.00% | 0.454882 | 18.541753 | -0.189428 | 50.944627 | -0.170908 | 23.263333 | -0.165824 | 8.118774 | 0.6215 | 0.3773 | 0.4487 | 8.922946 | 3.680962 |
2459786 | RF_maintenance | 100.00% | 0.00% | 64.52% | 0.00% | 100.00% | 0.00% | 0.246357 | 18.530623 | 1.372833 | 62.573357 | 0.410589 | 33.966128 | -0.464807 | 10.896171 | 0.6183 | 0.3817 | 0.4264 | 14.272496 | 4.570975 |
2459785 | RF_maintenance | 100.00% | 0.00% | 88.18% | 0.00% | 100.00% | 0.00% | 0.104121 | 15.736340 | 2.261839 | 67.808905 | -0.472828 | 37.194250 | -0.396260 | 0.919162 | 0.7409 | 0.2839 | 0.5224 | 13.039864 | 2.737145 |
2459784 | RF_maintenance | 100.00% | 0.00% | 77.96% | 0.00% | 100.00% | 0.00% | -0.084973 | 20.602445 | 1.373679 | 65.664743 | 0.742587 | 37.638626 | -0.640625 | 0.495709 | 0.5936 | 0.3013 | 0.4177 | 6.115583 | 2.077698 |
2459783 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.085860 | 24.189626 | 0.215476 | 21.135550 | -0.471691 | 21.942915 | 3.121508 | 8.987870 | 0.5699 | 0.1054 | 0.3969 | 7.275666 | 1.587196 |
2459782 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.470141 | 22.366809 | 0.352430 | 10.643693 | -0.446692 | 12.315453 | -0.767929 | 3.094232 | 0.5357 | 0.0827 | 0.3726 | 5.117355 | 1.315900 |
2459781 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.703647 | 3.582659 | -0.930574 | 6.244044 | -0.499964 | 1.094788 | -0.602190 | 0.484115 | 0.7322 | 0.1324 | 0.4856 | 13.890577 | 1.388490 |
2459778 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.445205 | 15.600377 | 0.155079 | 13.240072 | -1.152609 | 21.753114 | -0.644450 | 2.662037 | 0.7155 | 0.1013 | 0.4932 | 10.019646 | 1.293280 |
2459776 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.554716 | 23.775373 | -0.224149 | 10.103349 | 0.845996 | 37.194338 | -0.520193 | 2.334555 | 0.7535 | 0.0821 | 0.5737 | 10.182513 | 1.250352 |
2459774 | RF_maintenance | - | 0.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.7332 | 0.1216 | 0.5063 | nan | nan |
2459773 | RF_maintenance | 100.00% | 59.14% | 100.00% | 0.00% | 100.00% | 0.00% | 4.417594 | 25.828040 | 9.315256 | 90.013915 | 10.380486 | 17.440479 | -3.352757 | 8.916419 | 0.3937 | 0.1069 | 0.2399 | 4.536124 | 1.588926 |
2459772 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 56.347469 | 16.039274 | 8.062655 | 36.723601 | 2.115242 | 4.069475 | 6.199655 | 6.306366 | 0.2715 | 0.0575 | 0.1292 | 3.085601 | 1.284127 |
2459771 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459770 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 77.180378 | 24.671620 | 12.109103 | 60.327717 | 14.703714 | 13.023393 | 72.871098 | 5.215222 | 0.0844 | 0.0351 | 0.0358 | 1.301263 | 1.253163 |
2459769 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 95.488858 | 28.339983 | 16.407869 | 76.699457 | 13.705956 | 16.655670 | 63.313138 | 4.715644 | 0.0770 | 0.0352 | 0.0331 | 1.262927 | 1.226236 |
2459768 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 95.593404 | 29.642451 | 16.873234 | 84.933932 | 35.057044 | 15.800688 | 314.272452 | 9.611923 | 0.0496 | 0.0346 | 0.0208 | 1.250278 | 1.216095 |
2459767 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 35.831234 | 20.437019 | 4.736456 | 37.552860 | 30.048893 | 4.829194 | 592.866709 | 6.202990 | 0.0927 | 0.0409 | 0.0357 | 1.258851 | 1.219587 |
2459766 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 26.275051 | 18.845248 | 4.499354 | 34.518680 | 24.772983 | 4.516215 | 294.770230 | 4.355139 | 0.0829 | 0.0389 | 0.0332 | 1.282552 | 1.239817 |
2459765 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 101.657811 | 34.302072 | 18.296970 | 98.614021 | 98.495925 | 16.735570 | 265.885372 | 8.960647 | 0.0748 | 0.0355 | 0.0370 | 1.265806 | 1.236624 |
2459764 | RF_maintenance | - | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459763 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 17.491420 | 21.843830 | 1.632746 | 41.023186 | 4.715885 | 6.815050 | 15.402357 | 7.381676 | 0.0941 | 0.0386 | 0.0388 | 1.341512 | 1.306221 |
2459761 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 18.137056 | 28.763146 | 1.378789 | 65.980441 | 3.844350 | 13.644791 | 25.018336 | 9.665633 | 0.0498 | 0.0332 | 0.0092 | 1.238553 | 1.202115 |
2459760 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 18.767162 | 30.477978 | 1.271703 | 78.478050 | 11.099869 | 28.913570 | 46.304044 | 16.609243 | 0.0951 | 0.0461 | 0.0358 | 0.000000 | 0.000000 |
2459759 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 7.064456 | 12.626016 | 0.130830 | 27.762604 | 0.990664 | 2.874556 | 8.296638 | 3.841650 | 0.2908 | 0.0636 | 0.1266 | 2.448077 | 1.426515 |
2459758 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459757 | RF_maintenance | 100.00% | 47.37% | 100.00% | 0.00% | 100.00% | 0.00% | 9.954759 | 14.257118 | 0.807320 | 39.417520 | 4.213498 | 5.906764 | 13.325244 | 5.346064 | 0.3970 | 0.0569 | 0.1751 | 3.783370 | 1.411049 |
2459755 | RF_maintenance | 100.00% | 62.37% | 100.00% | 0.00% | 100.00% | 0.00% | 15.405447 | 21.650535 | 0.662399 | 37.750271 | 3.924831 | 8.134617 | 11.969163 | 3.824834 | 0.3731 | 0.0527 | 0.1502 | 0.000000 | 0.000000 |
2459754 | RF_maintenance | 100.00% | 59.68% | 100.00% | 0.00% | 100.00% | 0.00% | 12.626265 | 17.865008 | 0.923892 | 32.440287 | 4.463596 | 5.893091 | 14.449857 | 4.323749 | 0.3791 | 0.0529 | 0.1615 | 4.278079 | 1.472531 |
2459753 | RF_maintenance | 100.00% | 51.61% | 100.00% | 0.00% | 100.00% | 0.00% | 19.643926 | 24.284140 | 3.265420 | 40.431410 | 5.823776 | 6.981751 | 18.841188 | 4.957448 | 0.4061 | 0.0562 | 0.1878 | 4.433517 | 1.312901 |
2459752 | RF_maintenance | 100.00% | 43.55% | 100.00% | 0.00% | 100.00% | 0.00% | 22.567830 | 27.931692 | 7.640655 | 92.383789 | 27.736203 | 18.569842 | 20.935912 | 5.702611 | 0.4156 | 0.0569 | 0.2626 | 0.000000 | 0.000000 |
2459750 | RF_maintenance | 100.00% | 31.86% | 100.00% | 0.00% | 100.00% | 0.00% | 20.831723 | 30.080198 | 2.433464 | 94.784077 | 16.897578 | 25.939100 | 10.712802 | 4.531693 | 0.4291 | 0.0574 | 0.2244 | 7.309068 | 1.282978 |
2459749 | RF_maintenance | 100.00% | 30.11% | 100.00% | 0.00% | 100.00% | 0.00% | 16.383206 | 22.568298 | 0.515109 | 40.007571 | 4.802771 | 5.197257 | 18.260053 | 5.997640 | 0.4500 | 0.0530 | 0.2083 | 3.773016 | 1.213103 |
2459748 | RF_maintenance | 100.00% | 35.48% | 100.00% | 0.00% | 100.00% | 0.00% | 13.827441 | 20.795905 | 0.332404 | 51.093116 | 6.042070 | 9.351941 | 16.400194 | 6.138513 | 0.4374 | 0.0515 | 0.2571 | 4.355150 | 1.268127 |
2459747 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.628185 | 14.007158 | -0.172480 | 7.112023 | 3.929360 | 0.403578 | 19.017949 | 4.335920 | 0.0317 | 0.0301 | 0.0015 | nan | nan |
2459746 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.698458 | 25.871477 | -0.622876 | 10.464930 | 0.842396 | -0.319580 | 4.333078 | -2.936506 | 0.0316 | 0.0343 | 0.0021 | nan | nan |
2459745 | RF_maintenance | 100.00% | 19.35% | 100.00% | 0.00% | 100.00% | 0.00% | 14.622080 | 21.881634 | 0.620654 | 34.875728 | 3.741240 | 5.963387 | 10.701465 | 5.547938 | 0.4741 | 0.0694 | 0.3207 | 5.477850 | 1.231119 |
2459744 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.394872 | 15.106965 | -0.653968 | 7.647266 | 1.368306 | 1.016777 | 33.293776 | 5.683978 | 0.0385 | 0.0492 | 0.0053 | nan | nan |
2459743 | RF_maintenance | 100.00% | 25.37% | 100.00% | 0.00% | 100.00% | 0.00% | 15.478438 | 26.643397 | 3.190859 | 141.833270 | 17.843908 | 25.012866 | 19.304197 | 9.271336 | 0.4447 | 0.0658 | 0.2863 | 2.734484 | 1.204807 |
2459742 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.741019 | 16.116748 | -0.750883 | 10.726054 | 2.938630 | 1.145793 | 18.045600 | 3.151041 | 0.0403 | 0.0467 | 0.0063 | nan | nan |
2459741 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.063384 | 31.211457 | -0.036866 | 13.217923 | 7.085164 | 0.573171 | 21.804234 | 3.798143 | 0.0421 | 0.0464 | 0.0029 | nan | nan |
2459740 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 0.594409 | 18.460155 | -0.695299 | 15.130172 | 5.652040 | 0.512309 | 32.753135 | 5.838640 | 0.0428 | 0.0450 | 0.0025 | nan | nan |
2459738 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 15.594292 | 24.611550 | 1.410044 | 110.595041 | 7.351220 | 22.992470 | 18.183487 | 8.735735 | 0.4957 | 0.0586 | 0.3332 | 3.271802 | 1.196244 |
2459736 | RF_maintenance | 100.00% | 29.20% | 100.00% | 0.00% | 100.00% | 0.00% | 7.243531 | 16.581679 | -0.174760 | 44.302296 | 5.415077 | 7.332251 | 8.804155 | 5.542612 | 0.4317 | 0.0611 | 0.2938 | 5.709989 | 1.406255 |
2459734 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459733 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 4.496362 | 13.056552 | 3.528343 | 6.930213 | 2.840714 | 0.561112 | 4.856827 | 2.965967 | 0.0350 | 0.0353 | 0.0051 | nan | nan |
2459732 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459731 | RF_maintenance | 100.00% | 30.11% | 100.00% | 0.00% | 100.00% | 0.00% | 39.562794 | 28.985902 | 7.839155 | 85.783618 | 23.761619 | 34.778976 | -0.357286 | 6.249965 | 0.4210 | 0.0604 | 0.2822 | 3.975080 | 1.683999 |
2459730 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 4.159195 | 13.363372 | 3.529932 | 7.081239 | 3.267155 | 0.992864 | 5.059308 | 3.284202 | 0.0345 | 0.0317 | 0.0007 | nan | nan |
2459728 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.010041 | 12.079365 | 2.764203 | 7.584395 | 6.125692 | 1.610483 | 3.055863 | 2.177201 | 0.0419 | 0.0383 | -0.0005 | nan | nan |
2459726 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.477285 | 8.880742 | 2.413141 | 5.439703 | -0.199308 | 0.485740 | 5.429981 | 3.896054 | 0.0348 | 0.0310 | 0.0021 | nan | nan |
2459724 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.848979 | 13.396730 | 2.876161 | 6.844572 | 1.539503 | 3.649176 | 5.370588 | 4.447310 | 0.0364 | 0.0349 | 0.0003 | nan | nan |
2459723 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.919326 | 10.433328 | 2.606911 | 6.011313 | 0.720889 | 0.326036 | 3.219964 | 2.110043 | 0.0410 | 0.0368 | -0.0003 | nan | nan |
2459722 | RF_maintenance | 100.00% | 53.03% | 100.00% | 0.00% | 100.00% | 0.00% | 47.092454 | 35.778476 | 7.677271 | 116.494850 | 16.471177 | 21.428722 | 4.538772 | 13.249833 | 0.3783 | 0.0737 | 0.2341 | 3.471149 | 1.881402 |
2459720 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.974311 | 9.563660 | 2.459269 | 6.857878 | 2.501271 | -0.156451 | 1.646562 | 1.095311 | 0.0366 | 0.0365 | -0.0007 | nan | nan |
2459719 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.325843 | 10.543696 | 2.081551 | 5.659958 | 6.580095 | 3.686953 | 11.350848 | 2.734378 | 0.0384 | 0.0339 | -0.0006 | nan | nan |
2459718 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.327179 | 11.933781 | 2.784852 | 7.912919 | 3.057938 | 1.146250 | 7.859143 | 4.261693 | 0.0426 | 0.0390 | -0.0004 | nan | nan |
2459717 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.373053 | 11.932352 | 1.913648 | 5.994619 | 1.784504 | 1.328122 | 5.838342 | 3.519935 | 0.0349 | 0.0339 | 0.0002 | nan | nan |
2459716 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 2.821281 | 10.817794 | 2.332851 | 5.707531 | 8.320874 | 0.862843 | 6.952151 | 4.127439 | 0.0379 | 0.0401 | -0.0003 | nan | nan |
2459715 | RF_maintenance | 100.00% | 59.56% | 100.00% | 0.00% | 100.00% | 0.00% | 37.246871 | 27.696800 | 7.709643 | 110.025639 | 19.321747 | 24.753549 | 2.324950 | 12.173488 | 0.3651 | 0.0656 | 0.2327 | 4.207065 | 1.891110 |
2459713 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.679748 | 13.536299 | 2.617768 | 6.914549 | 2.221472 | 3.002802 | 6.432063 | 3.714668 | 0.0385 | 0.0320 | 0.0007 | nan | nan |
2459712 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 19.717674 | 25.760350 | 6.873618 | 162.318702 | 19.424198 | 91.362787 | 1.860180 | 208.813895 | 0.2524 | 0.0666 | 0.1460 | 2.634095 | 1.813213 |
2459711 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 1.221477 | 2.729799 | 1.040834 | 3.045724 | -0.022009 | 0.313350 | 1.536543 | 0.957541 | 0.0347 | 0.0304 | -0.0003 | nan | nan |
2459710 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 1.530028 | 2.432051 | 1.521634 | 3.369556 | 3.423349 | 1.925315 | 2.353010 | 1.320678 | 0.0380 | 0.0315 | 0.0004 | nan | nan |
2459708 | RF_maintenance | 100.00% | 60.06% | 100.00% | 0.00% | 100.00% | 0.00% | 34.759527 | 26.126397 | 8.125194 | 116.692470 | 18.068464 | 24.823752 | 6.061066 | 17.447568 | 0.3666 | 0.0724 | 0.2236 | 0.000000 | 0.000000 |
2459707 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | -0.081191 | -0.176772 | -0.130760 | 1.338660 | -0.221007 | 0.540804 | 1.668465 | 0.471474 | 0.0342 | 0.0342 | 0.0009 | 0.000000 | 0.000000 |
2459706 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 1.242579 | 1.807050 | 1.104425 | 2.730608 | 3.024384 | 0.997296 | 1.495740 | 0.967239 | 0.0397 | 0.0365 | -0.0020 | nan | nan |
2459705 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.273654 | 11.624900 | 2.643878 | 9.377523 | 0.094579 | 0.307297 | 5.179428 | 3.841815 | 0.0355 | 0.0377 | 0.0010 | nan | nan |
2459703 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 3.029003 | 10.067827 | 3.878058 | 12.701806 | 6.615069 | 0.828695 | 0.504302 | 4.779375 | 0.0372 | 0.0328 | 0.0031 | nan | nan |
2459702 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 45.730907 | 26.299520 | 8.042429 | 66.542255 | 7.939135 | 11.040347 | 0.803704 | 4.973198 | 0.3010 | 0.0639 | 0.1415 | 3.494335 | 2.227930 |
2459701 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 44.246187 | 24.820895 | 3.741224 | 36.203697 | 9.418158 | 12.422513 | 0.655432 | 3.870612 | 0.3077 | 0.0656 | 0.1398 | 4.070109 | 1.957691 |
2459697 | RF_maintenance | 100.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | 57276.801830 | 57276.801830 | 55084.275424 | 55084.275424 | 43327.991646 | 43327.991646 | 222710.288569 | 222710.288569 | 0.9996 | 0.9996 | 0.0000 | 0.000000 | 0.000000 |
2459696 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459695 | RF_maintenance | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.740685 | -0.740685 | -0.731736 | -0.731736 | -0.944895 | -0.944895 | -0.791462 | -0.791462 | 1.0000 | 1.0000 | 0.0000 | 0.000000 | 0.000000 |
2459694 | RF_maintenance | 100.00% | 74.63% | 100.00% | 0.00% | 100.00% | 0.00% | 42.729074 | 30.609067 | 4.678736 | 74.301346 | 12.405462 | 18.820038 | 0.204804 | 5.441654 | 0.3260 | 0.0626 | 0.1892 | 8.644418 | 4.361229 |
2459693 | RF_maintenance | 100.00% | 70.43% | 100.00% | 0.00% | 100.00% | 0.00% | 43.908695 | 19.643258 | 6.751856 | 72.712789 | 28.759857 | 15.525312 | 12.394587 | 19.576001 | 0.3652 | 0.0695 | 0.1804 | 3.957231 | 2.816740 |
2459692 | RF_maintenance | 100.00% | 59.14% | 100.00% | 0.00% | 100.00% | 0.00% | 19.130016 | 15.060486 | 0.273567 | 39.068935 | 13.669635 | 7.672533 | 6.395495 | 10.237631 | 0.3859 | 0.0920 | 0.1801 | 5.308507 | 3.767206 |
2459691 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 44.416697 | 23.233055 | 7.974435 | 68.822845 | 20.294192 | 7.881229 | 0.167372 | 7.096937 | 0.2388 | 0.0592 | 0.1053 | 3.726100 | 3.070361 |
2459690 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 44.477386 | 22.086687 | 8.390123 | 73.181718 | 25.164525 | 13.105383 | 0.382751 | 10.074198 | 0.2428 | 0.0658 | 0.1122 | 2.519825 | 1.151667 |
2459689 | RF_maintenance | 100.00% | - | - | - | - | - | 41.307313 | 25.851658 | 5.477605 | 53.556340 | 14.048048 | 26.325447 | -0.044382 | 5.795434 | nan | nan | nan | nan | nan |
2459688 | RF_maintenance | 100.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 5.771527 | 2.631042 |
2459687 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 29.881396 | 18.143706 | 6.282015 | 65.253735 | -0.707660 | 4.536930 | -3.381416 | 11.524853 | 0.1332 | 0.0648 | 0.0427 | nan | nan |
2459686 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 42.178694 | 21.178022 | 4.927197 | 48.892837 | 20.503054 | 9.498693 | -0.856578 | 0.272931 | 0.2480 | 0.0651 | 0.1149 | 3.375544 | 3.195013 |
2459685 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 46.742206 | 23.415575 | 4.613247 | 47.798991 | 22.819058 | 9.191496 | -0.898655 | 0.349138 | 0.2530 | 0.0712 | 0.1153 | 3.824409 | 3.822971 |
2459684 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 46.671199 | 23.285656 | 6.358155 | 60.359922 | 16.576481 | 6.119856 | -0.943185 | 0.490368 | 0.2504 | 0.0720 | 0.1119 | 3.473636 | 3.332288 |
2459676 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 47.485434 | 26.127649 | 7.500225 | 72.192942 | 30.065158 | 20.402879 | -1.235203 | 3.826922 | 0.2744 | 0.0671 | 0.1376 | 1.680697 | 0.810913 |
2459675 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 44.766978 | 23.910199 | 6.306158 | 60.167635 | 38.324774 | 22.769283 | -0.780470 | 3.626427 | 0.2806 | 0.0715 | 0.1410 | 4.349948 | 3.703219 |
2459674 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 48.140537 | 26.209036 | 6.893741 | 62.465740 | 25.944553 | 16.258465 | -1.022193 | 2.856532 | 0.2931 | 0.0722 | 0.1378 | 3.163244 | 2.063520 |
2459673 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459672 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 41.513352 | 22.305975 | 6.660522 | 62.504462 | 22.877697 | 10.220170 | -0.658994 | 0.735611 | 0.2812 | 0.0687 | 0.1355 | 0.000000 | 0.000000 |
2459671 | RF_maintenance | 100.00% | 82.70% | 100.00% | 0.00% | 100.00% | 0.00% | 36.821799 | 29.392633 | 5.557706 | 63.361274 | 17.871043 | 36.884319 | -0.597354 | 6.320300 | 0.2742 | 0.0704 | 0.1428 | 0.000000 | 0.000000 |
2459670 | RF_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459669 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 5.154557 | 12.049637 | 3.605470 | 11.587900 | 4.233320 | 3.782824 | 1.260444 | 4.606054 | 0.0326 | 0.0311 | 0.0014 | nan | nan |
2459668 | RF_maintenance | 100.00% | 74.05% | 100.00% | 0.00% | 100.00% | 0.00% | 31.300532 | 24.385973 | 5.562808 | 86.068682 | 20.410276 | 32.372124 | 21.693310 | 28.034223 | 0.3469 | 0.0799 | 0.1882 | 5.146942 | 2.293631 |
2459665 | RF_maintenance | 100.00% | 79.78% | 100.00% | 0.00% | 100.00% | 0.00% | 46.311830 | 26.646284 | 6.459287 | 64.740465 | 16.930673 | 18.465534 | 8.150345 | 8.375910 | 0.3165 | 0.0767 | 0.1636 | 3.869515 | 1.347695 |
2459664 | RF_maintenance | 0.00% | 95.14% | 100.00% | 0.00% | - | - | -0.772240 | 0.058851 | 0.494468 | 0.261398 | 0.660330 | 0.063372 | 0.508526 | -0.154425 | 0.0548 | 0.0306 | 0.0014 | nan | nan |
2459663 | RF_maintenance | 100.00% | 80.50% | 100.00% | 0.00% | 100.00% | 0.00% | 48.951071 | 31.936710 | 10.722654 | 125.044771 | 33.079298 | 53.615811 | 5.906504 | 6.995988 | 0.3222 | 0.0822 | 0.1688 | 2.553999 | 0.913818 |
2459662 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 6.588635 | 13.059136 | 3.900642 | 9.557719 | 4.212947 | 0.799842 | -0.161798 | 4.630170 | 0.0487 | 0.0622 | 0.0026 | nan | nan |
2459661 | RF_maintenance | 100.00% | 70.81% | 100.00% | 0.00% | 100.00% | 0.00% | 41.224015 | 26.782216 | 7.134892 | 95.809231 | 18.033995 | 28.184288 | 10.584585 | 14.239268 | 0.3664 | 0.0853 | 0.1839 | 6.884216 | 2.273688 |
2459660 | RF_maintenance | 100.00% | 83.35% | 100.00% | 0.00% | 100.00% | 0.00% | 33.611325 | 21.384599 | 6.823429 | 85.651750 | 19.787666 | 31.624468 | 4.104151 | 5.229273 | 0.3209 | 0.0723 | 0.1655 | 5.951898 | 2.340958 |
2459659 | RF_maintenance | 100.00% | 85.41% | 100.00% | 0.00% | 100.00% | 0.00% | 37.651826 | 24.658478 | 5.707386 | 71.764449 | 19.929145 | 32.213354 | 2.269124 | 8.280308 | 0.3081 | 0.0782 | 0.1540 | 5.353003 | 2.255117 |
2459658 | RF_maintenance | 100.00% | 85.50% | 100.00% | 0.00% | 100.00% | 0.00% | 36.286081 | 24.209875 | 4.955746 | 61.681020 | 14.150625 | 22.353734 | 1.755451 | 9.220706 | 0.3074 | 0.0773 | 0.1504 | 5.439158 | 2.354476 |
2459657 | RF_maintenance | 100.00% | 85.41% | 100.00% | 0.00% | 100.00% | 0.00% | 38.366111 | 27.579606 | 5.160792 | 79.058471 | 17.939361 | 29.456428 | 12.779060 | 9.623403 | 0.3170 | 0.0741 | 0.1623 | 5.143374 | 2.091557 |
2459656 | RF_maintenance | 100.00% | 84.87% | 100.00% | 0.00% | 100.00% | 0.00% | 45.308948 | 27.300764 | 4.962958 | 58.280630 | 16.897675 | 28.834901 | 1.758245 | 7.160715 | 0.2946 | 0.0721 | 0.1624 | 3.857663 | 2.066882 |
2459655 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459653 | RF_maintenance | 100.00% | 85.41% | 100.00% | 0.00% | 100.00% | 0.00% | 44.548372 | 28.192012 | 5.280926 | 61.435154 | 16.899396 | 29.284400 | 0.635690 | 2.172279 | 0.2880 | 0.0726 | 0.1559 | 4.255499 | 4.963395 |
2459652 | RF_maintenance | 100.00% | 85.95% | 100.00% | 0.00% | 100.00% | 0.00% | 51.998821 | 34.908705 | 7.368636 | 83.341917 | 17.295331 | 30.189547 | -0.025871 | 3.488052 | 0.2852 | 0.0712 | 0.1387 | 0.930325 | 0.930252 |
2459651 | RF_maintenance | 100.00% | 18.42% | 100.00% | 0.00% | 100.00% | 0.00% | 49.543436 | 38.374076 | 6.536451 | 90.207547 | 8.572461 | 13.230622 | 12.969837 | 17.655492 | 0.6023 | 0.1554 | 0.3057 | 18.471251 | 3.773415 |
2459650 | RF_maintenance | 100.00% | 57.86% | 100.00% | 0.00% | 100.00% | 0.00% | 29.567560 | 26.118547 | 2.438895 | 78.514327 | 22.519271 | 24.243960 | 11.772210 | 21.335202 | 0.4174 | 0.0925 | 0.2059 | 6.894640 | 5.495186 |
2459649 | RF_maintenance | 100.00% | 78.39% | 100.00% | 0.00% | 100.00% | 0.00% | 39.570351 | 25.099352 | 5.910592 | 62.477050 | 15.742982 | 29.378281 | 2.413192 | 6.564176 | 0.3347 | 0.0766 | 0.1608 | 4.792396 | 2.323688 |
2459648 | RF_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459647 | RF_maintenance | 100.00% | 81.63% | 81.63% | 0.00% | 100.00% | 0.00% | 0.115076 | 0.115076 | 1036.679529 | 1036.679529 | 31035.001283 | 31035.001283 | 6.306891 | 6.306891 | 0.2085 | 0.2085 | 0.0000 | 193789.070312 | 193789.070312 |
2459646 | RF_maintenance | 100.00% | 87.57% | 100.00% | 0.00% | 100.00% | 0.00% | 38.092653 | 28.875409 | 7.441912 | 70.667306 | 16.637213 | 25.350988 | -1.586104 | 3.415160 | 0.2877 | 0.1024 | 0.1227 | 3.496426 | 2.531785 |
2459645 | RF_maintenance | 100.00% | 66.49% | 100.00% | 0.00% | 100.00% | 0.00% | 38.737734 | 31.297046 | 7.543550 | 76.181738 | 16.426220 | 23.961372 | 9.966381 | 21.420329 | 0.3598 | 0.1228 | 0.1583 | 5.318848 | 2.706667 |
2459642 | RF_maintenance | 100.00% | 87.03% | 100.00% | 0.00% | 100.00% | 0.00% | 44.298772 | 31.318323 | 9.188088 | 90.861039 | 16.050877 | 28.301103 | -0.066501 | 3.103522 | 0.2870 | 0.0934 | 0.1256 | 3.778540 | 2.501759 |
2459641 | RF_maintenance | - | 55.70% | 55.70% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.4671 | 0.4612 | 0.0063 | nan | nan |
2459640 | RF_maintenance | 100.00% | 88.65% | 100.00% | 0.00% | 100.00% | 0.00% | 47.569519 | 35.005023 | 7.482286 | 74.096233 | 14.606366 | 27.121026 | -0.120561 | 2.076698 | 0.2838 | 0.0949 | 0.1262 | 3.333294 | 2.719484 |
2459639 | RF_maintenance | 100.00% | 88.11% | 100.00% | 0.00% | 100.00% | 0.00% | 38.170879 | 27.699015 | 7.012894 | 70.566919 | 15.554643 | 24.353542 | 0.256401 | 2.896464 | 0.2923 | 0.1000 | 0.1273 | 3.364745 | 2.054356 |
2459638 | RF_maintenance | - | 63.21% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.3820 | 0.1341 | 0.1620 | nan | nan |
2459637 | RF_maintenance | 100.00% | 88.65% | 100.00% | 0.00% | 100.00% | 0.00% | 41.541556 | 28.119634 | 8.880219 | 84.647343 | 16.771800 | 31.429285 | -0.548845 | 2.235591 | 0.2815 | 0.0915 | 0.1258 | 3.545201 | 2.155872 |
2459636 | RF_maintenance | 100.00% | 89.19% | 100.00% | 0.00% | 100.00% | 0.00% | 43.926484 | 29.254805 | 8.582176 | 82.031073 | 11.321565 | 23.651294 | -0.904188 | 0.378248 | 0.2780 | 0.0895 | 0.1275 | 2.922000 | 1.440198 |
2459635 | RF_maintenance | 100.00% | 89.20% | 100.00% | 0.00% | 100.00% | 0.00% | 48.026651 | 31.320450 | 8.304862 | 78.637250 | 16.487701 | 32.461311 | -0.519309 | 0.776872 | 0.2780 | 0.0877 | 0.1263 | 2.960779 | 1.442082 |
2459634 | RF_maintenance | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.674072 | -0.674072 | -0.674491 | -0.674491 | -0.674931 | -0.674931 | -0.674874 | -0.674874 | 1.0000 | 1.0000 | 0.0000 | 0.017590 | 0.017590 |
2459633 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459632 | RF_maintenance | 100.00% | 88.65% | 100.00% | 0.00% | 100.00% | 0.00% | 45.901548 | 25.442637 | 8.111903 | 77.806928 | 10.790026 | 25.877565 | -0.738577 | 1.246562 | 0.2781 | 0.0669 | 0.1443 | 3.695707 | 2.749750 |
2459631 | RF_maintenance | 100.00% | 89.19% | 100.00% | 0.00% | 100.00% | 0.00% | 54.582451 | 30.192514 | 8.996863 | 86.461007 | 13.975232 | 32.786652 | -0.213623 | 2.935534 | 0.2777 | 0.0693 | 0.1470 | 3.806374 | 2.108618 |
2459630 | RF_maintenance | 100.00% | 87.57% | 100.00% | 0.00% | 100.00% | 0.00% | 59.897432 | 33.556540 | 7.906211 | 77.220263 | 17.284909 | 42.154210 | -0.134566 | 3.805322 | 0.2872 | 0.0755 | 0.1467 | 3.225829 | 2.310522 |
2459629 | RF_maintenance | 100.00% | 88.65% | 100.00% | 0.00% | 100.00% | 0.00% | 52.661895 | 29.338845 | 9.117191 | 88.330833 | 15.988715 | 33.968578 | 0.886039 | 4.487494 | 0.2931 | 0.0705 | 0.1539 | 5.098654 | 2.251705 |
2459628 | RF_maintenance | 100.00% | 89.19% | 100.00% | 0.00% | 100.00% | 0.00% | 44.511816 | 23.921901 | 7.523932 | 71.705099 | 13.726035 | 29.400877 | -0.044580 | 3.509400 | 0.2772 | 0.0657 | 0.1467 | 3.519084 | 1.977539 |
2459627 | RF_maintenance | 0.00% | 0.00% | 0.00% | 0.00% | 100.00% | 0.00% | -0.673456 | -0.673456 | -0.673032 | -0.673032 | -0.674417 | -0.674417 | -0.674453 | -0.674453 | 1.0000 | 1.0000 | 0.0000 | 0.005913 | 0.005913 |
2459626 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459625 | RF_maintenance | 100.00% | 88.65% | 100.00% | 0.00% | 100.00% | 0.00% | 46.510900 | 24.372934 | 7.565691 | 73.621568 | 17.890320 | 37.416234 | -0.651923 | 1.534343 | 0.2831 | 0.0688 | 0.1483 | 4.798205 | 3.070160 |
2459624 | RF_maintenance | 100.00% | 87.57% | 100.00% | 0.00% | 100.00% | 0.00% | 53.670926 | 27.725343 | 7.247182 | 67.157724 | 21.770351 | 46.128801 | -0.010049 | 4.180162 | 0.2890 | 0.0724 | 0.1525 | 3.246752 | 2.092693 |
2459623 | RF_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459622 | RF_maintenance | 100.00% | 86.49% | 100.00% | 0.00% | 100.00% | 0.00% | 49.994770 | 26.667977 | 15.166648 | 128.619418 | 10.263956 | 23.512248 | -0.187523 | 2.148064 | 0.2748 | 0.0595 | 0.1089 | 0.000000 | 0.000000 |
2459621 | RF_maintenance | 100.00% | - | - | - | 100.00% | 0.00% | 38.388588 | 27.127000 | 6.997780 | 80.289026 | 10.319443 | 28.554417 | -1.771947 | 9.375121 | nan | nan | nan | 0.000000 | 0.000000 |
2459620 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 5.067394 | 13.362946 | 2.648047 | 12.490532 | 4.501503 | 1.591032 | 2.165292 | 4.493471 | 0.0407 | 0.0353 | 0.0001 | nan | nan |
2459619 | RF_maintenance | 100.00% | 94.59% | 100.00% | 0.00% | 100.00% | 0.00% | 41.778289 | 22.093283 | 8.290243 | 74.694671 | 18.228474 | 37.731273 | -0.475402 | 1.039823 | 0.2523 | 0.0575 | 0.0826 | 0.000000 | 0.000000 |
2459618 | RF_maintenance | 100.00% | 94.60% | 100.00% | 0.00% | 100.00% | 0.00% | 50.070222 | 26.933880 | 9.401361 | 82.419954 | 19.667199 | 37.831798 | -0.048733 | 3.490802 | 0.2473 | 0.0559 | 0.0807 | 0.000000 | 0.000000 |
2459617 | RF_maintenance | 100.00% | 93.52% | 100.00% | 0.00% | 100.00% | 0.00% | 40.507681 | 22.170464 | 7.683339 | 73.248870 | 18.785796 | 38.435589 | 0.237717 | 5.347865 | 0.2528 | 0.0588 | 0.0790 | 0.000000 | 0.000000 |
2459616 | RF_maintenance | 100.00% | 90.82% | 100.00% | 0.00% | 100.00% | 0.00% | 44.014430 | 23.392511 | 12.708923 | 112.247156 | 21.631250 | 43.428565 | 1.069495 | 2.244420 | 0.2622 | 0.0574 | 0.0820 | 0.923146 | 0.899418 |
2459615 | RF_maintenance | 100.00% | 94.59% | 100.00% | 0.00% | 100.00% | 0.00% | 49.749818 | 25.912871 | 8.045911 | 70.763793 | 13.069349 | 29.986395 | 0.291638 | 2.335268 | 0.2512 | 0.0587 | 0.0891 | 0.000000 | 0.000000 |
2459614 | RF_maintenance | 100.00% | 87.57% | 100.00% | 0.00% | 100.00% | 0.00% | 51.448698 | 26.447259 | 8.445401 | 77.802395 | 14.187336 | 29.067669 | -1.068382 | 2.260179 | 0.2614 | 0.0566 | 0.0970 | 0.000000 | 0.000000 |
2459613 | RF_maintenance | 0.00% | - | - | - | - | - | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459612 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 28.091806 | 17.080520 | 6.536027 | 79.625592 | 39.147379 | 51.453535 | 1.483216 | 40.497308 | 0.1785 | 0.0564 | 0.0552 | 9.234325 | 5.407819 |
2459611 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 320.666163 | 318.525155 | inf | inf | 49.197841 | 49.679297 | 1033.023234 | 1013.444620 | nan | nan | nan | 0.000000 | 0.000000 |
2459610 | RF_maintenance | 100.00% | 66.50% | 100.00% | 0.00% | 100.00% | 0.00% | 49.314422 | 24.837778 | 7.991441 | 73.899075 | 18.365044 | 34.155406 | 8.315116 | 21.488417 | 0.3584 | 0.0746 | 0.1751 | 4.036563 | 2.086805 |
2459609 | RF_maintenance | 100.00% | 69.73% | 100.00% | 0.00% | 100.00% | 0.00% | 54.360295 | 27.036539 | 10.187201 | 91.816653 | 12.137460 | 31.341429 | 12.885836 | 27.746658 | 0.3230 | 0.0653 | 0.1646 | 2.454051 | 1.276298 |
2459608 | RF_maintenance | 100.00% | 86.44% | 100.00% | 0.00% | 100.00% | 0.00% | 45.524151 | 21.941803 | 11.955664 | 105.288171 | 15.381874 | 36.227390 | -0.588433 | 6.088984 | 0.2888 | 0.0686 | 0.1499 | 2.609917 | 1.322046 |
2459607 | RF_maintenance | 100.00% | 95.68% | 95.68% | 0.00% | 100.00% | 0.00% | 54.678909 | 11.899593 | 8.902010 | 24.617415 | 10.035001 | 38.821369 | -0.576937 | -1.530135 | 0.1689 | 0.0742 | 0.0621 | 2.289537 | 1.284769 |
2459605 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 0.681039 | -0.557388 | 0.748759 | 0.179809 | -1.266662 | -0.072760 | -1.484319 | 0.048393 | 0.0364 | 0.0303 | 0.0011 | nan | nan |
2459604 | RF_maintenance | 100.00% | 72.39% | 100.00% | 0.00% | 100.00% | 0.00% | 48.554756 | 25.924751 | 9.646683 | 88.662417 | 22.507146 | 44.218064 | 7.018102 | 20.026475 | 0.3370 | 0.0723 | 0.1649 | 3.277794 | 2.004836 |
2459603 | RF_maintenance | 100.00% | 69.19% | 100.00% | 0.00% | 100.00% | 0.00% | 38.847197 | 19.968110 | 5.755314 | 89.232763 | 6.165149 | 12.790200 | 1.993795 | 3.165612 | 0.3670 | 0.0635 | 0.1869 | 3.146289 | 1.296296 |
2459602 | RF_maintenance | 100.00% | 90.76% | 100.00% | 0.00% | 100.00% | 0.00% | 47.825064 | 22.677328 | 12.391294 | 107.115954 | 9.677805 | 25.900278 | 0.869050 | 11.735717 | 0.2838 | 0.0610 | 0.1429 | 2.274721 | 1.227936 |
2459598 | RF_maintenance | 100.00% | 90.81% | 100.00% | 0.00% | 100.00% | 0.00% | 46.602781 | 22.327287 | 9.720351 | 83.779830 | 18.183810 | 36.426277 | -1.224735 | 6.544355 | 0.2842 | 0.0717 | 0.1412 | 2.724079 | 1.798374 |
2459597 | RF_maintenance | 100.00% | 79.96% | 100.00% | 0.00% | 100.00% | 0.00% | 45.542906 | 21.673182 | 10.815663 | 94.238995 | 17.540813 | 30.129617 | 0.655134 | 9.254449 | 0.3092 | 0.0697 | 0.1473 | 2.920765 | 1.808219 |
2459596 | RF_maintenance | 100.00% | 90.22% | 100.00% | 0.00% | 100.00% | 0.00% | 44.786016 | 20.667163 | 8.891340 | 76.107127 | 17.934587 | 34.959153 | -0.878129 | 5.207121 | 0.2900 | 0.0722 | 0.1428 | 2.622441 | 1.861838 |
2459595 | RF_maintenance | 100.00% | 53.51% | 100.00% | 0.00% | 100.00% | 0.00% | 56.519591 | 32.957564 | 8.226708 | 88.460862 | 15.679796 | 16.011438 | 16.822542 | 25.264286 | 0.4726 | 0.1321 | 0.2127 | 3.890549 | 2.040426 |
2459594 | RF_maintenance | 100.00% | 56.22% | 100.00% | 0.00% | 100.00% | 0.00% | 1.565335 | 14.145648 | 2.749547 | 81.126658 | 14.315317 | 27.880590 | 10.043927 | 32.909892 | 0.4087 | 0.0818 | 0.2015 | 3.718590 | 2.226427 |
2459593 | RF_maintenance | 100.00% | 59.43% | 100.00% | 0.00% | 100.00% | 0.00% | 36.725866 | 18.441952 | 7.389779 | 86.393089 | 21.008053 | 38.060490 | 8.079052 | 11.556266 | 0.3744 | 0.0757 | 0.1802 | 4.117475 | 1.882100 |
2459592 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | 1.379777 | 1.536668 | 1.599026 | 7.867035 | 3.355811 | 1.339914 | -1.841619 | 0.264737 | 0.0412 | 0.0328 | -0.0009 | nan | nan |
2459591 | RF_maintenance | 100.00% | 94.05% | 100.00% | 0.00% | 100.00% | 0.00% | 50.534692 | 21.882547 | 11.975807 | 100.238686 | 21.346195 | 32.180050 | -0.846108 | 1.915538 | 0.2923 | 0.0744 | 0.1394 | 1.888959 | 1.143421 |
2459590 | RF_maintenance | 100.00% | 92.97% | 100.00% | 0.00% | 100.00% | 0.00% | 51.968116 | 25.197767 | 10.664167 | 93.382486 | 15.772782 | 34.558537 | -0.702766 | 3.469758 | 0.2875 | 0.0741 | 0.1360 | 1.809645 | 1.225613 |
2459589 | RF_maintenance | 100.00% | 81.58% | 100.00% | 0.00% | 100.00% | 0.00% | 50.116213 | 22.731224 | 9.422321 | 86.540311 | 15.005777 | 21.994807 | 12.274243 | 17.078299 | 0.3394 | 0.0793 | 0.1557 | 2.677526 | 2.068294 |
2459588 | RF_maintenance | 100.00% | 55.11% | 100.00% | 0.00% | 100.00% | 0.00% | 35.083973 | 16.443305 | 7.304636 | 105.526032 | 16.763356 | 24.992300 | 10.518083 | 13.253829 | 0.4271 | 0.0882 | 0.1986 | 2.630746 | 1.263125 |
2459587 | RF_maintenance | 100.00% | - | - | - | 100.00% | 0.00% | 358.584982 | 358.180876 | inf | inf | 100.485132 | 101.878971 | 569.134387 | 597.486573 | nan | nan | nan | 0.000000 | 0.000000 |
2459586 | RF_maintenance | 100.00% | 98.92% | 100.00% | 0.00% | 100.00% | 0.00% | 50.362563 | 20.666981 | 3.855007 | 32.649907 | 4.207990 | 11.248591 | 0.539559 | 6.739542 | 0.2623 | 0.0690 | 0.1283 | 3.581114 | 4.201901 |
2459585 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 0.503893 | 25.341981 | 1.752986 | 11.282013 | 5.980297 | 10.266981 | -0.141739 | 4.316140 | 0.0411 | 0.0403 | 0.0026 | 0.000000 | 0.000000 |
2459584 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 72.387747 | 27.872625 | 13.735332 | 116.751009 | 31.981246 | 17.681239 | 1.630801 | 12.646876 | 0.2246 | 0.0560 | 0.1110 | 0.000000 | 0.000000 |
2459583 | RF_maintenance | 100.00% | 96.70% | 100.00% | 0.00% | 100.00% | 0.00% | 49.667934 | 21.138193 | 4.793907 | 36.008192 | 11.424593 | 23.071326 | -0.607232 | 0.349197 | 0.2765 | 0.0729 | 0.1286 | 3.065634 | 3.024445 |
2459582 | RF_maintenance | 100.00% | 96.22% | 100.00% | 0.00% | 100.00% | 0.00% | 43.807026 | 18.265298 | 4.559252 | 32.689655 | 14.243243 | 27.924476 | -0.635598 | 0.538806 | 0.2757 | 0.0661 | 0.1365 | 3.474755 | 2.878127 |
2459581 | RF_maintenance | 100.00% | 94.59% | 100.00% | 0.00% | 100.00% | 0.00% | 58.759614 | 25.464593 | 4.615346 | 36.870321 | 11.340257 | 22.454955 | -0.388973 | 0.568497 | 0.2841 | 0.0733 | 0.1351 | 4.192250 | 2.837030 |
2459580 | RF_maintenance | 100.00% | 96.70% | 100.00% | 0.00% | 100.00% | 0.00% | 44.252196 | 19.170557 | 5.203812 | 37.758345 | 11.239105 | 23.646897 | -0.692504 | 0.330289 | 0.2788 | 0.0736 | 0.1322 | 2.948116 | 2.927825 |
2459579 | RF_maintenance | 100.00% | 97.78% | 100.00% | 0.00% | 100.00% | 0.00% | 44.987468 | 19.120145 | 6.177590 | 42.900723 | 13.705398 | 26.748844 | 0.125346 | 1.884257 | 0.2726 | 0.0694 | 0.1287 | 0.000000 | 0.000000 |
2459578 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 1.755879 | 1.596266 | 1.427021 | 3.021178 | 2.140523 | 0.664809 | 0.118138 | 1.936839 | 0.0506 | 0.0450 | -0.0006 | nan | nan |
2459577 | RF_maintenance | 100.00% | 97.40% | 100.00% | 0.00% | 100.00% | 0.00% | 56.050916 | 24.657707 | 4.437228 | 34.468255 | 13.704242 | 24.371001 | -0.646667 | 0.553521 | 0.2664 | 0.0685 | 0.1372 | 3.113220 | 2.621181 |
2459576 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459575 | RF_maintenance | 100.00% | 66.45% | 100.00% | 0.00% | 100.00% | 0.00% | 40.399707 | 19.505695 | 2.659029 | 27.419886 | 6.696800 | 16.393191 | 4.166194 | 6.050249 | 0.3744 | 0.0915 | 0.1753 | 5.061776 | 4.015494 |
2459574 | RF_maintenance | 100.00% | 94.16% | 100.00% | 0.00% | 100.00% | 0.00% | 40.223158 | 17.978906 | 3.018257 | 26.281611 | 16.075858 | 23.996751 | 0.080228 | 0.780688 | 0.2843 | 0.0669 | 0.1213 | 4.244444 | 3.514783 |
2459573 | RF_maintenance | 100.00% | 93.56% | 100.00% | 0.00% | 100.00% | 0.00% | 42.741913 | 18.483032 | 6.308973 | 45.232405 | 14.125501 | 27.812029 | -0.372633 | 1.691512 | 0.2856 | 0.0691 | 0.1251 | 3.826166 | 3.082067 |
2459572 | RF_maintenance | 100.00% | 92.43% | 100.00% | 0.00% | 100.00% | 0.00% | 41.575055 | 18.720592 | 3.319467 | 26.428930 | 9.992484 | 17.606760 | -0.252366 | 2.908990 | 0.2931 | 0.0736 | 0.1270 | 3.904265 | 1.900311 |
2459571 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | - | - | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | nan | nan |
2459570 | RF_maintenance | 100.00% | 90.27% | 100.00% | 0.00% | 100.00% | 0.00% | 20.984742 | 25.984207 | -0.516763 | 27.763942 | 0.780497 | 1.663865 | -0.308951 | 4.343013 | 0.2988 | 0.1180 | 0.1254 | 5.387190 | 20.986519 |
2459569 | RF_maintenance | 100.00% | 60.06% | 100.00% | 0.00% | 100.00% | 0.00% | 45.472473 | 22.022705 | 3.642503 | 34.287259 | 8.759380 | 10.455159 | 5.826556 | 8.804149 | 0.4143 | 0.1103 | 0.1699 | 4.529640 | 2.909688 |
2459566 | RF_maintenance | 100.00% | 95.14% | 100.00% | 0.00% | 100.00% | 0.00% | 43.892930 | 17.785905 | 4.396830 | 34.296829 | 12.805806 | 21.466478 | -0.641249 | -0.044057 | 0.2686 | 0.0603 | 0.1103 | 4.219387 | 2.851198 |
2459565 | RF_maintenance | 0.00% | - | - | - | 100.00% | 0.00% | -2.008718 | -2.008718 | -1.878795 | -1.878795 | -0.888145 | -0.888145 | -0.944419 | -0.944419 | nan | nan | nan | 0.000000 | 0.000000 |
2459564 | RF_maintenance | 100.00% | 93.12% | 100.00% | 0.00% | 100.00% | 0.00% | 46.806384 | 16.438737 | 1.015115 | 36.384703 | 7.059066 | 2.292366 | 0.215367 | 1.062052 | 0.2751 | 0.0718 | 0.1248 | 3.417993 | 2.687267 |
2459563 | RF_maintenance | 100.00% | 94.00% | 100.00% | 0.00% | 100.00% | 0.00% | 51.643742 | 18.467348 | 7.879643 | 69.539235 | 9.463650 | 22.129740 | 0.915138 | 1.823895 | 0.2764 | 0.0702 | 0.1315 | 3.946972 | 3.714472 |
2459562 | RF_maintenance | 100.00% | 93.02% | 100.00% | 0.00% | 100.00% | 0.00% | 31.282461 | 11.915511 | -0.691072 | 17.919946 | 1.101938 | 2.647246 | -0.220051 | 0.781109 | 0.2858 | 0.0736 | 0.1339 | 3.920062 | 2.580181 |
2459561 | RF_maintenance | 100.00% | 94.10% | 100.00% | 0.00% | 100.00% | 0.00% | 32.484426 | 12.413159 | -0.552535 | 17.083467 | 0.586749 | 2.896462 | 0.012991 | 1.279142 | 0.2870 | 0.0752 | 0.1330 | 3.595788 | 2.321233 |
2459560 | RF_maintenance | 100.00% | 93.51% | 100.00% | 0.00% | 100.00% | 0.00% | 29.462135 | 11.447351 | -0.650819 | 17.319021 | 0.519239 | 2.903022 | 0.211330 | 0.733664 | 0.2808 | 0.0719 | 0.1298 | 3.629903 | 2.355524 |
2459559 | RF_maintenance | 100.00% | 93.46% | 100.00% | 0.00% | 100.00% | 0.00% | 34.385117 | 14.584516 | -0.479492 | 18.996424 | 0.931095 | 3.348646 | 0.149559 | 1.079713 | 0.2721 | 0.0731 | 0.1245 | 2.912751 | 2.150114 |
2459558 | RF_maintenance | 100.00% | 95.08% | 100.00% | 0.00% | 100.00% | 0.00% | 45.968926 | 18.973738 | 4.807759 | 36.368446 | 11.108487 | 23.017306 | -0.142026 | 1.587704 | 0.2722 | 0.0713 | 0.1261 | 3.141570 | 2.428529 |
2459557 | RF_maintenance | - | 100.00% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0494 | 0.0381 | -0.0019 | nan | nan |
2459556 | RF_maintenance | 100.00% | 95.19% | 100.00% | 0.00% | 100.00% | 0.00% | 47.771114 | 19.537872 | 5.177116 | 39.367249 | 11.857878 | 20.726303 | -0.124186 | 3.639336 | 0.2691 | 0.0733 | 0.1234 | 2.980122 | 1.773109 |
2459554 | RF_maintenance | - | 94.54% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.2741 | 0.0705 | 0.1277 | nan | nan |
2459553 | RF_maintenance | - | 95.67% | 100.00% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.2648 | 0.0712 | 0.1244 | nan | nan |
2459552 | RF_maintenance | 100.00% | 93.51% | 100.00% | 0.00% | 100.00% | 0.00% | 54.211445 | 23.339229 | 7.130853 | 51.886899 | 21.701451 | 31.835650 | 2.055387 | 3.193616 | 0.2676 | 0.0666 | 0.1258 | 3.606241 | 3.611549 |
2459551 | RF_maintenance | 100.00% | 92.38% | 100.00% | 0.00% | 100.00% | 0.00% | 29.135027 | 11.388237 | -0.672334 | 21.050850 | 1.244526 | 4.148735 | 0.150299 | 1.241806 | 0.2810 | 0.0702 | 0.1307 | 3.274359 | 2.422994 |
2459550 | RF_maintenance | - | 97.53% | 97.53% | 0.00% | - | - | nan | nan | nan | nan | nan | nan | nan | nan | 0.0573 | 0.0517 | -0.0005 | nan | nan |
2459549 | RF_maintenance | 100.00% | 94.05% | 100.00% | 0.00% | 100.00% | 0.00% | 42.485662 | 17.302514 | 5.237162 | 39.209829 | 12.775206 | 22.631981 | 0.956451 | 1.358147 | 0.2649 | 0.0671 | 0.1273 | 3.815532 | 3.337730 |
2459542 | RF_maintenance | 100.00% | 78.08% | 100.00% | 0.00% | 100.00% | 0.00% | 57.746193 | 24.259224 | 8.635775 | 79.402015 | 3.939721 | 1.914212 | 0.194262 | 1.339491 | 0.3252 | 0.0687 | 0.1642 | 2.868604 | 2.519061 |
2459541 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | nan | nan | inf | inf | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459540 | RF_maintenance | 100.00% | 76.73% | 100.00% | 0.00% | 100.00% | 0.00% | 40.900259 | 16.962119 | 0.200428 | 18.103520 | 7.437326 | 5.304458 | 0.135517 | 0.953829 | 0.3396 | 0.0698 | 0.1649 | 3.075512 | 2.172404 |
2459536 | RF_maintenance | 100.00% | 92.59% | 100.00% | 0.00% | 100.00% | 0.00% | 71.966449 | 29.372045 | 9.762029 | 67.396220 | 24.298831 | 31.491160 | -0.718120 | 2.225608 | 0.2780 | 0.0594 | 0.1212 | 2.034862 | 1.221941 |
2459535 | RF_maintenance | 100.00% | 73.60% | 100.00% | 0.00% | 100.00% | 0.00% | 31.905323 | 13.793240 | 0.039573 | 16.622172 | 6.099448 | 5.662419 | 0.119591 | 0.489572 | 0.3675 | 0.0736 | 0.1597 | 2.388655 | 1.999762 |
2459534 | RF_maintenance | 100.00% | 74.50% | 100.00% | 0.00% | 100.00% | 0.00% | 34.909795 | 14.648807 | -0.503849 | 15.389101 | 6.924880 | 3.934670 | -0.048500 | 0.114444 | 0.3604 | 0.0631 | 0.1259 | 2.411310 | 2.470903 |
2459533 | RF_maintenance | 100.00% | 94.54% | 100.00% | 0.00% | 100.00% | 0.00% | 52.984162 | 20.872946 | 5.133971 | 36.865498 | 11.464185 | 20.748387 | -0.108697 | 1.776666 | 0.2737 | 0.0596 | 0.1067 | 2.569594 | 1.663094 |
2459532 | RF_maintenance | 100.00% | 93.30% | 100.00% | 0.00% | 100.00% | 0.00% | 60.807744 | 24.152307 | 6.985839 | 49.913755 | 18.883367 | 25.369144 | -0.690540 | 0.976329 | 0.2882 | 0.0643 | 0.1089 | 2.776642 | 2.638695 |
2459530 | RF_maintenance | 100.00% | 90.37% | 100.00% | 0.00% | 100.00% | 0.00% | 33.441828 | 12.129869 | -0.425637 | 15.593945 | 2.164187 | 4.206479 | -0.202317 | 0.585688 | 0.2927 | 0.0721 | 0.1093 | 3.105142 | 3.340610 |
2459527 | RF_maintenance | 0.00% | - | - | - | 100.00% | 0.00% | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan | 0.000000 | 0.000000 |
2459524 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 46.954688 | 28.851234 | 5.914072 | 55.628760 | 31.208748 | 34.983731 | -0.686808 | 0.606037 | 0.6554 | 0.0827 | 0.4124 | 0.000000 | 0.000000 |
2459523 | RF_maintenance | 100.00% | - | - | - | 100.00% | 0.00% | 65.690762 | 24.274628 | 8.394754 | 53.086401 | 9.552336 | 29.769023 | -2.122941 | 2.233648 | nan | nan | nan | 5.008955 | 4.080589 |
2459522 | RF_maintenance | 100.00% | 100.00% | 100.00% | 0.00% | 100.00% | 0.00% | 51.884786 | 24.904541 | 7.143200 | 53.883121 | 9.410477 | 23.647211 | -0.974837 | 1.917387 | 0.2030 | 0.0693 | 0.0956 | 2.081874 | 1.230766 |
2459513 | RF_maintenance | 0.00% | 100.00% | 100.00% | 0.00% | - | - | 2.101702 | 1.741914 | 1.062851 | 3.318204 | 3.675380 | 0.289249 | 1.909406 | 1.461345 | 0.0567 | 0.0588 | 0.0009 | nan | nan |
2459508 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 43.282760 | 32.580188 | 4.133537 | 52.412108 | 23.234697 | 15.638980 | 10.204161 | 14.726479 | 0.6566 | 0.1041 | 0.3744 | 0.000000 | 0.000000 |
2459505 | RF_maintenance | 100.00% | 47.37% | 100.00% | 0.00% | 100.00% | 0.00% | 54.657225 | 31.009466 | 6.435348 | 50.543029 | 12.211416 | 10.280318 | 1.882735 | 1.851667 | 0.4204 | 0.0676 | 0.2606 | 20.260991 | 6.780375 |
2459503 | RF_maintenance | 100.00% | 0.00% | 100.00% | 0.00% | 100.00% | 0.00% | 41.452865 | 30.787055 | 5.948226 | 85.490685 | 37.190472 | 33.404049 | 1.034869 | 3.018107 | 0.5836 | 0.0841 | 0.4219 | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Shape | nan | nan | nan | nan | nan | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 32.044053 | 17.766232 | 0.310477 | 32.044053 | 0.382870 | 28.225374 | 0.530265 | 1.072312 | 0.327467 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 57.735015 | 12.082158 | 0.418903 | 57.735015 | 0.258144 | 19.467213 | -0.893892 | 4.792611 | -0.806271 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 42.036255 | 12.152250 | 1.123835 | 42.036255 | 0.753931 | 15.677380 | -0.520656 | 18.157599 | -1.428164 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 41.124871 | 0.848635 | 17.342979 | 0.773590 | 41.124871 | -0.094864 | 37.495976 | -0.222801 | 6.843970 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 55.955138 | 0.574032 | 11.338632 | 0.843175 | 55.955138 | -0.157795 | 13.542200 | -0.059484 | 3.314338 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 50.396305 | 13.173145 | 0.791332 | 50.396305 | 0.725800 | 14.464573 | -0.721828 | 2.019837 | -0.908927 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 65.770148 | 1.318533 | 15.924455 | 1.100755 | 65.770148 | -0.733536 | 15.390689 | -0.466720 | 10.820733 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 47.905736 | 16.805973 | 0.435681 | 47.905736 | 0.710646 | 29.221226 | -0.560550 | 5.842727 | -0.228430 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 49.346191 | 13.157545 | 0.663741 | 49.346191 | 0.454745 | 27.080527 | -1.079886 | 15.004846 | -0.797258 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Temporal Variability | 48.191057 | 17.165665 | 0.583081 | 37.673500 | 0.631374 | 48.191057 | -0.377672 | 2.309490 | -0.047810 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 48.635817 | 0.429822 | 13.320661 | -0.053819 | 48.635817 | -0.868902 | 13.225017 | -0.895915 | 9.513069 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 47.496135 | 11.229894 | 0.389717 | 47.496135 | 0.539769 | 17.255581 | -0.711614 | 13.271897 | -0.968988 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 60.418266 | 0.520250 | 12.019255 | 1.360727 | 60.418266 | -0.319753 | 15.001609 | -0.583959 | 12.243603 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 50.123740 | 13.947524 | 0.116130 | 50.123740 | 0.609573 | 17.134171 | -0.518220 | 12.639738 | -0.806051 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 50.267929 | -0.300218 | 13.678310 | 0.336420 | 50.267929 | -0.004852 | 20.705394 | -0.639672 | 18.832343 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 64.134750 | 1.209024 | 12.544332 | 2.398931 | 64.134750 | 0.856026 | 19.829943 | -0.881852 | 2.358061 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 57.819826 | 21.303195 | 1.342896 | 57.819826 | 1.782802 | 30.980744 | 1.133039 | 7.602017 | -0.618664 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 62.464708 | 19.156895 | 0.640218 | 62.464708 | 0.368142 | 33.375759 | 0.654981 | 18.223116 | 0.506404 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 50.944627 | 0.454882 | 18.541753 | -0.189428 | 50.944627 | -0.170908 | 23.263333 | -0.165824 | 8.118774 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 62.573357 | 18.530623 | 0.246357 | 62.573357 | 1.372833 | 33.966128 | 0.410589 | 10.896171 | -0.464807 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 67.808905 | 15.736340 | 0.104121 | 67.808905 | 2.261839 | 37.194250 | -0.472828 | 0.919162 | -0.396260 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 65.664743 | -0.084973 | 20.602445 | 1.373679 | 65.664743 | 0.742587 | 37.638626 | -0.640625 | 0.495709 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 24.189626 | 24.189626 | -0.085860 | 21.135550 | 0.215476 | 21.942915 | -0.471691 | 8.987870 | 3.121508 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 22.366809 | 22.366809 | 0.470141 | 10.643693 | 0.352430 | 12.315453 | -0.446692 | 3.094232 | -0.767929 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 6.244044 | -0.703647 | 3.582659 | -0.930574 | 6.244044 | -0.499964 | 1.094788 | -0.602190 | 0.484115 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Temporal Variability | 21.753114 | 15.600377 | -0.445205 | 13.240072 | 0.155079 | 21.753114 | -1.152609 | 2.662037 | -0.644450 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Temporal Variability | 37.194338 | 0.554716 | 23.775373 | -0.224149 | 10.103349 | 0.845996 | 37.194338 | -0.520193 | 2.334555 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 90.013915 | 25.828040 | 4.417594 | 90.013915 | 9.315256 | 17.440479 | 10.380486 | 8.916419 | -3.352757 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Shape | 56.347469 | 56.347469 | 16.039274 | 8.062655 | 36.723601 | 2.115242 | 4.069475 | 6.199655 | 6.306366 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Shape | 77.180378 | 24.671620 | 77.180378 | 60.327717 | 12.109103 | 13.023393 | 14.703714 | 5.215222 | 72.871098 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Shape | 95.488858 | 28.339983 | 95.488858 | 76.699457 | 16.407869 | 16.655670 | 13.705956 | 4.715644 | 63.313138 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 314.272452 | 95.593404 | 29.642451 | 16.873234 | 84.933932 | 35.057044 | 15.800688 | 314.272452 | 9.611923 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 592.866709 | 35.831234 | 20.437019 | 4.736456 | 37.552860 | 30.048893 | 4.829194 | 592.866709 | 6.202990 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 294.770230 | 18.845248 | 26.275051 | 34.518680 | 4.499354 | 4.516215 | 24.772983 | 4.355139 | 294.770230 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 265.885372 | 34.302072 | 101.657811 | 98.614021 | 18.296970 | 16.735570 | 98.495925 | 8.960647 | 265.885372 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 41.023186 | 17.491420 | 21.843830 | 1.632746 | 41.023186 | 4.715885 | 6.815050 | 15.402357 | 7.381676 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 65.980441 | 28.763146 | 18.137056 | 65.980441 | 1.378789 | 13.644791 | 3.844350 | 9.665633 | 25.018336 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 78.478050 | 18.767162 | 30.477978 | 1.271703 | 78.478050 | 11.099869 | 28.913570 | 46.304044 | 16.609243 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 27.762604 | 7.064456 | 12.626016 | 0.130830 | 27.762604 | 0.990664 | 2.874556 | 8.296638 | 3.841650 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 39.417520 | 14.257118 | 9.954759 | 39.417520 | 0.807320 | 5.906764 | 4.213498 | 5.346064 | 13.325244 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 37.750271 | 15.405447 | 21.650535 | 0.662399 | 37.750271 | 3.924831 | 8.134617 | 11.969163 | 3.824834 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 32.440287 | 12.626265 | 17.865008 | 0.923892 | 32.440287 | 4.463596 | 5.893091 | 14.449857 | 4.323749 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 40.431410 | 24.284140 | 19.643926 | 40.431410 | 3.265420 | 6.981751 | 5.823776 | 4.957448 | 18.841188 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 92.383789 | 22.567830 | 27.931692 | 7.640655 | 92.383789 | 27.736203 | 18.569842 | 20.935912 | 5.702611 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 94.784077 | 20.831723 | 30.080198 | 2.433464 | 94.784077 | 16.897578 | 25.939100 | 10.712802 | 4.531693 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 40.007571 | 16.383206 | 22.568298 | 0.515109 | 40.007571 | 4.802771 | 5.197257 | 18.260053 | 5.997640 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 51.093116 | 13.827441 | 20.795905 | 0.332404 | 51.093116 | 6.042070 | 9.351941 | 16.400194 | 6.138513 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 19.017949 | 0.628185 | 14.007158 | -0.172480 | 7.112023 | 3.929360 | 0.403578 | 19.017949 | 4.335920 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | Not Found | nn Shape | 25.871477 | 25.871477 | 0.698458 | 10.464930 | -0.622876 | -0.319580 | 0.842396 | -2.936506 | 4.333078 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 34.875728 | 21.881634 | 14.622080 | 34.875728 | 0.620654 | 5.963387 | 3.741240 | 5.547938 | 10.701465 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 33.293776 | 0.394872 | 15.106965 | -0.653968 | 7.647266 | 1.368306 | 1.016777 | 33.293776 | 5.683978 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 141.833270 | 15.478438 | 26.643397 | 3.190859 | 141.833270 | 17.843908 | 25.012866 | 19.304197 | 9.271336 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 18.045600 | 0.741019 | 16.116748 | -0.750883 | 10.726054 | 2.938630 | 1.145793 | 18.045600 | 3.151041 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 31.211457 | 31.211457 | 1.063384 | 13.217923 | -0.036866 | 0.573171 | 7.085164 | 3.798143 | 21.804234 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 32.753135 | 0.594409 | 18.460155 | -0.695299 | 15.130172 | 5.652040 | 0.512309 | 32.753135 | 5.838640 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 110.595041 | 15.594292 | 24.611550 | 1.410044 | 110.595041 | 7.351220 | 22.992470 | 18.183487 | 8.735735 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 44.302296 | 16.581679 | 7.243531 | 44.302296 | -0.174760 | 7.332251 | 5.415077 | 5.542612 | 8.804155 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 13.056552 | 13.056552 | 4.496362 | 6.930213 | 3.528343 | 0.561112 | 2.840714 | 2.965967 | 4.856827 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | nan | nan | nan | inf | inf | nan | nan | nan | nan |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 85.783618 | 28.985902 | 39.562794 | 85.783618 | 7.839155 | 34.778976 | 23.761619 | 6.249965 | -0.357286 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 13.363372 | 4.159195 | 13.363372 | 3.529932 | 7.081239 | 3.267155 | 0.992864 | 5.059308 | 3.284202 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 12.079365 | 12.079365 | 3.010041 | 7.584395 | 2.764203 | 1.610483 | 6.125692 | 2.177201 | 3.055863 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 8.880742 | 8.880742 | 2.477285 | 5.439703 | 2.413141 | 0.485740 | -0.199308 | 3.896054 | 5.429981 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 13.396730 | 13.396730 | 3.848979 | 6.844572 | 2.876161 | 3.649176 | 1.539503 | 4.447310 | 5.370588 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 10.433328 | 10.433328 | 2.919326 | 6.011313 | 2.606911 | 0.326036 | 0.720889 | 2.110043 | 3.219964 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 116.494850 | 47.092454 | 35.778476 | 7.677271 | 116.494850 | 16.471177 | 21.428722 | 4.538772 | 13.249833 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 9.563660 | 1.974311 | 9.563660 | 2.459269 | 6.857878 | 2.501271 | -0.156451 | 1.646562 | 1.095311 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 11.350848 | 10.543696 | 2.325843 | 5.659958 | 2.081551 | 3.686953 | 6.580095 | 2.734378 | 11.350848 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 11.933781 | 3.327179 | 11.933781 | 2.784852 | 7.912919 | 3.057938 | 1.146250 | 7.859143 | 4.261693 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 11.932352 | 3.373053 | 11.932352 | 1.913648 | 5.994619 | 1.784504 | 1.328122 | 5.838342 | 3.519935 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 10.817794 | 2.821281 | 10.817794 | 2.332851 | 5.707531 | 8.320874 | 0.862843 | 6.952151 | 4.127439 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 110.025639 | 37.246871 | 27.696800 | 7.709643 | 110.025639 | 19.321747 | 24.753549 | 2.324950 | 12.173488 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 13.536299 | 13.536299 | 3.679748 | 6.914549 | 2.617768 | 3.002802 | 2.221472 | 3.714668 | 6.432063 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Temporal Discontinuties | 208.813895 | 25.760350 | 19.717674 | 162.318702 | 6.873618 | 91.362787 | 19.424198 | 208.813895 | 1.860180 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 3.045724 | 2.729799 | 1.221477 | 3.045724 | 1.040834 | 0.313350 | -0.022009 | 0.957541 | 1.536543 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Variability | 3.423349 | 2.432051 | 1.530028 | 3.369556 | 1.521634 | 1.925315 | 3.423349 | 1.320678 | 2.353010 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 116.692470 | 34.759527 | 26.126397 | 8.125194 | 116.692470 | 18.068464 | 24.823752 | 6.061066 | 17.447568 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 1.668465 | -0.176772 | -0.081191 | 1.338660 | -0.130760 | 0.540804 | -0.221007 | 0.471474 | 1.668465 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Variability | 3.024384 | 1.807050 | 1.242579 | 2.730608 | 1.104425 | 0.997296 | 3.024384 | 0.967239 | 1.495740 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Shape | 11.624900 | 11.624900 | 3.273654 | 9.377523 | 2.643878 | 0.307297 | 0.094579 | 3.841815 | 5.179428 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 12.701806 | 10.067827 | 3.029003 | 12.701806 | 3.878058 | 0.828695 | 6.615069 | 4.779375 | 0.504302 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 66.542255 | 45.730907 | 26.299520 | 8.042429 | 66.542255 | 7.939135 | 11.040347 | 0.803704 | 4.973198 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Shape | 44.246187 | 24.820895 | 44.246187 | 36.203697 | 3.741224 | 12.422513 | 9.418158 | 3.870612 | 0.655432 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Temporal Discontinuties | 222710.288569 | 57276.801830 | 57276.801830 | 55084.275424 | 55084.275424 | 43327.991646 | 43327.991646 | 222710.288569 | 222710.288569 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | ee Power | -0.731736 | -0.740685 | -0.740685 | -0.731736 | -0.731736 | -0.944895 | -0.944895 | -0.791462 | -0.791462 |
Ant | Node | A Priori Status | Worst Metric | Worst Modified Z-Score | nn Shape Modified Z-Score | ee Shape Modified Z-Score | nn Power Modified Z-Score | ee Power Modified Z-Score | nn Temporal Variability Modified Z-Score | ee Temporal Variability Modified Z-Score | nn Temporal Discontinuties Modified Z-Score | ee Temporal Discontinuties Modified Z-Score |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | N13 | RF_maintenance | nn Power | 74.301346 | 30.609067 | 42.729074 | 74.301346 | 4.678736 | 18.820038 | 12.405462 | 5.441654 | 0.204804 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | 13 | RF_maintenance | nn Power | 72.712789 | 43.908695 | 19.643258 | 6.751856 | 72.712789 | 28.759857 | 15.525312 | 12.394587 | 19.576001 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | 13 | RF_maintenance | nn Power | 39.068935 | 19.130016 | 15.060486 | 0.273567 | 39.068935 | 13.669635 | 7.672533 | 6.395495 | 10.237631 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | 13 | RF_maintenance | nn Power | 68.822845 | 44.416697 | 23.233055 | 7.974435 | 68.822845 | 20.294192 | 7.881229 | 0.167372 | 7.096937 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | 13 | RF_maintenance | nn Power | 73.181718 | 44.477386 | 22.086687 | 8.390123 | 73.181718 | 25.164525 | 13.105383 | 0.382751 | 10.074198 |
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
180 | 13 | RF_maintenance | nn Power | 53.556340 | 41.307313 | 25.851658 | 5.477605 | 53.556340 | 14.048048 | 26.325447 | -0.044382 | 5.795434 |