Antenna Season Report Notebook¶

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_summarynotebook (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.

In [1]:
import os
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
In [2]:
# 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
In [3]:
# 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 = "325"
csv_folder = "/home/obs/src/H6C_Notebooks/_rtp_summary_"
auto_metrics_folder = "/home/obs/src/H6C_Notebooks/auto_metrics_inspect"
In [4]:
display(HTML(f'<h1 style=font-size:50px><u>Antenna {antenna} Report</u><p></p></h1>'))

Antenna 325 Report

In [5]:
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
In [6]:
# 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 158 csvs in /home/obs/src/H6C_Notebooks/_rtp_summary_
Found 155 auto_metrics notebooks in /home/obs/src/H6C_Notebooks/auto_metrics_inspect
In [7]:
# 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'

Load relevant info from summary CSVs¶

In [8]:
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
In [9]:
# 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')])]) 

Table 1: Per-Night RTP Summary Info For This Atenna¶

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.

In [10]:
display(HTML(f'<h2>Antenna {antenna}, Node {this_antenna.node}:</h2>'))
HTML(table.render(render_links=True, escape=False))

Antenna 325, Node N09:

Out[10]:
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)
2459975 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.543957 -1.089361 1.154813 -1.428762 1.248103 -0.844383 -1.354956 -0.247674 0.5226 0.5271 0.3977 nan nan
2459974 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.286393 -1.013039 1.219395 -1.475022 1.148633 -0.908744 -1.647018 -0.290654 0.5300 0.5364 0.3964 nan nan
2459973 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.518232 -1.103024 1.197198 -1.576618 0.617970 -1.078418 -1.236556 -0.274806 0.5383 0.5418 0.3965 nan nan
2459972 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.571290 -0.869027 1.463390 -1.081775 0.875389 -0.831904 -1.665204 -0.865905 0.5219 0.5234 0.3948 nan nan
2459971 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.385212 -0.969429 1.321161 -1.182164 1.146055 -0.830910 -1.110353 -0.330385 0.5264 0.5279 0.3895 nan nan
2459970 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.779818 -0.828403 1.564874 -1.116166 1.085687 -0.804964 -0.760163 -0.228207 0.5289 0.5307 0.3947 nan nan
2459969 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.671383 -1.049346 1.365785 -1.126510 1.055139 -1.206021 -1.382223 -0.417417 0.5376 0.5401 0.3983 nan nan
2459968 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.187760 -0.198429 1.838117 -0.941516 1.960027 -0.197649 0.393211 0.503475 0.6820 0.6689 0.2738 nan nan
2459967 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.645825 -0.868921 1.725309 -0.931657 1.191164 -0.567211 -0.901789 0.079406 0.5401 0.5398 0.3827 nan nan
2459966 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.418361 -0.867149 1.716098 -1.031758 1.235908 -0.739095 -1.286361 -0.208680 0.5363 0.5350 0.3796 nan nan
2459965 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.077684 -1.146114 1.457332 -1.074390 1.195776 1.347478 -0.450303 1.090185 0.5472 0.5473 0.3724 nan nan
2459964 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.442602 -0.948849 1.510194 -1.246457 0.806296 0.188108 -1.054597 2.342759 0.6297 0.6216 0.3279 nan nan
2459963 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.857803 -0.718199 1.363331 -1.185213 -0.286680 -0.707714 0.182202 -0.239710 0.6276 0.6094 0.2779 nan nan
2459962 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.197912 -1.051366 1.311116 -1.463340 -0.081664 -1.432069 0.078392 -0.788330 0.5814 0.5786 0.3541 nan nan
2459961 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.213507 -0.251542 1.549053 -1.050831 0.469794 3.338441 -0.044590 1.149220 0.6941 0.6753 0.2596 nan nan
2459960 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.377417 -1.339178 1.568896 -1.083505 0.927033 0.940985 -0.284631 -0.675684 0.5535 0.5475 0.3454 nan nan
2459959 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.450368 -1.662065 1.358486 -1.625932 0.818380 0.396000 -1.138813 0.472031 0.5417 0.5409 0.3732 nan nan
2459958 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.063565 -1.010364 1.520794 -1.094934 0.994394 -0.017720 -1.077501 0.068860 0.5412 0.5398 0.3858 nan nan
2459957 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.221092 -0.709879 1.595504 -0.987653 0.857042 -1.055811 -1.076582 -0.305370 0.5355 0.5389 0.3952 nan nan
2459956 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.436745 -0.336823 1.711140 -0.926819 1.624623 -0.386140 0.129071 1.067259 0.5810 0.5718 0.3406 nan nan
2459955 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.177344 -0.742348 1.487514 -0.920315 0.954166 -0.522214 -1.092768 0.032815 0.5258 0.5299 0.3883 nan nan
2459954 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.708015 -0.729455 1.766241 -0.746868 0.937942 -0.453448 -1.476799 0.227990 0.5243 0.5295 0.3988 nan nan
2459953 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.418238 -0.701516 1.688645 -0.963763 1.280042 -0.018206 0.281333 2.018375 0.5277 0.5341 0.3899 nan nan
2459952 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.832227 -0.592904 1.830601 -0.927817 1.002312 -0.230218 -2.030225 0.601145 0.5350 0.5414 0.3960 nan nan
2459951 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.637499 -0.667504 1.291652 -1.300553 0.778357 -0.750216 -2.059424 -0.001810 0.5442 0.5543 0.3986 nan nan
2459950 dish_ok 0.00% 0.00% 0.00% 0.00% - - 1.080142 -0.670044 1.442913 -1.176757 1.319813 -0.652445 -0.342244 0.625501 0.5389 0.5476 0.4074 nan nan
2459949 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.683085 -0.903441 1.247020 -1.504128 0.872952 -0.800347 -1.147920 -0.165716 0.5325 0.5375 0.3971 nan nan
2459948 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.713416 -0.906470 1.582888 -1.940679 0.768923 -0.534513 -0.807070 1.823257 0.5646 0.5717 0.3767 nan nan
2459947 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.369470 -0.985184 0.855890 -1.626306 0.431669 -0.685212 -0.825308 2.143622 0.5892 0.5709 0.3647 nan nan
2459946 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.067485 -0.868267 1.143264 -1.561693 0.751176 -0.433650 -1.092473 1.310857 0.5442 0.5499 0.3896 nan nan
2459945 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.195395 -1.041985 0.775841 -1.706385 1.020401 -0.627733 -1.272102 0.183953 0.5506 0.5556 0.3908 nan nan
2459944 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.498786 -1.127878 0.910400 -1.626389 0.817343 -0.084761 -0.276529 1.129749 0.5568 0.5647 0.3900 nan nan
2459943 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.656324 -1.167065 0.956166 -1.501765 0.680057 -0.276127 -0.313778 0.886959 0.5558 0.5677 0.3976 nan nan
2459942 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.395705 -1.047231 1.005373 -1.528572 1.069444 -0.350905 -0.216613 1.170299 0.5725 0.5647 0.3754 nan nan
2459941 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.139606 -0.741827 1.066691 -1.551517 0.840748 -0.032146 -1.616986 0.170877 0.5369 0.5397 0.4036 nan nan
2459940 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459939 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.488796 -1.066379 0.823764 -1.558195 0.243643 -0.515144 -1.355645 -0.209992 0.5516 0.5564 0.3998 nan nan
2459938 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.572811 -0.980840 0.986647 -1.537197 0.302839 -0.708597 -1.352713 -0.009213 0.5539 0.5611 0.3949 nan nan
2459937 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459936 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.156848 0.006041 1.293665 -1.394044 1.545029 2.232453 -0.908563 2.370646 0.7185 0.7099 0.2296 nan nan
2459935 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.617946 -0.695404 1.349158 -1.342180 0.700197 -0.476298 -1.495419 0.720733 0.5612 0.5649 0.3964 nan nan
2459934 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.863765 -0.773889 1.686760 -0.915607 1.238784 -0.467891 -1.165530 -0.241311 0.5669 0.5741 0.4028 nan nan
2459933 dish_ok 0.00% 0.00% 0.00% 0.00% - - 1.112540 -0.665546 1.835264 -0.885089 1.012503 -0.606919 -1.247248 -0.340708 0.5667 0.5749 0.4065 nan nan
2459932 dish_ok 0.00% 0.00% 0.00% 0.00% - - 1.302449 -0.682548 1.606784 -0.991580 -1.132328 -0.474824 -2.071859 0.459261 0.4720 0.4927 0.3340 nan nan
2459931 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.954224 -0.803230 1.714232 -0.990035 0.753282 -0.571595 0.527627 0.635786 0.5771 0.5855 0.3927 nan nan
2459930 dish_ok 0.00% 0.00% 0.00% 0.00% - - 1.006295 -0.884108 1.616980 -0.992280 0.338605 -0.420411 -0.870301 -0.092877 0.5685 0.5751 0.4030 nan nan
2459929 dish_ok 0.00% 0.00% 0.00% 0.00% - - -1.067456 0.576221 0.511424 -1.703574 -0.482616 -0.623220 -0.462459 -0.310560 0.6880 0.6760 0.2592 nan nan
2459928 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.572158 -1.131797 1.026453 -1.784556 0.571435 -0.279130 -0.990693 0.479691 0.5511 0.5488 0.3943 nan nan
2459927 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.925394 -0.889989 0.743844 -1.684420 -1.370380 -0.420880 -0.986410 -0.045959 0.5019 0.5161 0.3314 nan nan
2459926 dish_ok 0.00% 0.00% 0.00% 0.00% - - -1.432952 -1.312874 -0.312602 -1.824668 -1.448193 -0.219835 -0.916143 0.347397 0.7072 0.6954 0.2354 nan nan
2459925 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.130446 -0.572000 0.615320 -2.110766 -0.572147 0.566235 -1.182314 -0.003686 0.6997 0.6850 0.2344 nan nan
2459924 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.287851 -1.027988 0.440863 -2.057606 -0.042781 -0.654252 0.685216 2.494736 0.5569 0.5648 0.3879 nan nan
2459923 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.159186 -1.529761 0.791773 -1.995756 -0.458153 0.007659 -0.746178 -0.312165 0.6143 0.6223 0.3585 nan nan
2459922 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.370774 -1.225176 1.206579 -1.091303 1.128661 0.237232 -1.132460 0.443474 0.5538 0.5523 0.4078 nan nan
2459921 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459920 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459919 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.665456 -1.295862 1.149909 -1.143024 0.775897 -1.201231 -1.815033 0.404235 0.5535 0.5693 0.3917 nan nan
2459918 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.490191 -1.382457 1.266527 -1.058917 0.654740 -0.945772 -1.433007 0.391709 0.5780 0.5819 0.3975 nan nan
2459917 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.193072 -1.368655 1.109511 -1.425843 -1.158712 1.255497 -1.630090 0.344164 0.6158 0.6114 0.4701 nan nan
2459916 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.682000 -1.239907 0.919840 -1.307759 0.344440 -0.570351 -2.037286 0.308590 0.5724 0.5815 0.4068 nan nan
2459915 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.319892 -1.186837 1.374265 -1.221240 0.723697 -0.334480 -0.943852 1.745848 0.6390 0.6359 0.3524 nan nan
2459914 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.094354 -1.166788 1.608036 -1.223753 0.887404 0.237119 -0.926414 3.627939 0.6531 0.6536 0.3176 nan nan
2459913 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.409700 -0.732443 1.350375 -1.287067 0.533161 -0.079162 -1.334586 1.240065 0.6042 0.5773 0.4049 nan nan
2459912 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.657278 -0.983417 0.981530 -1.619931 0.546374 -0.690054 -1.731514 0.103546 0.5594 0.5589 0.4151 nan nan
2459911 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.752343 -1.023901 1.084131 -1.400315 0.985883 -0.921419 -1.107114 -0.349274 0.5587 0.5595 0.4200 nan nan
2459910 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.800924 -1.028006 1.015871 -1.429001 0.969009 -0.607671 0.131533 0.233857 0.5646 0.5632 0.4189 nan nan
2459909 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.772513 -1.144045 0.806266 -1.635787 0.641412 -0.747166 -1.311061 -0.070400 0.5610 0.5596 0.4186 nan nan
2459908 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459907 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.733346 -1.259944 0.938760 -1.614511 0.373020 -0.508723 -1.370878 0.052117 0.5666 0.5672 0.4142 nan nan
2459906 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.776149 -1.209742 1.468959 -1.155349 0.501972 -0.476992 -2.207467 0.143534 0.5575 0.5584 0.4155 nan nan
2459905 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.689032 -1.080924 1.272828 -1.199908 0.608614 -0.326660 -1.256224 0.414076 0.5451 0.5500 0.4205 nan nan
2459904 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.740171 -1.044741 1.616529 -1.145185 0.230361 -0.488922 -2.698958 0.408722 0.5520 0.5525 0.4115 nan nan
2459903 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.833067 -1.114812 1.292981 -1.340059 0.231064 -0.563451 -2.745786 0.082900 0.5571 0.5583 0.4184 nan nan
2459902 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.695526 -1.274877 1.531951 -1.054341 0.435386 -0.537295 -1.205239 -0.087112 0.5668 0.5613 0.4104 nan nan
2459901 dish_ok 0.00% 100.00% 100.00% 0.00% - - 0.231914 -1.361829 0.970327 -1.539045 0.102706 -0.721795 -1.691006 -0.238864 0.0879 0.0923 0.0354 nan nan
2459900 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.992904 -1.321782 0.987008 -1.494584 1.171984 0.390777 -1.776346 -0.017319 0.5174 0.4979 0.3553 nan nan
2459898 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.464536 -1.313720 1.055671 -1.507374 -0.045940 -0.110522 -1.963281 0.415059 0.5746 0.5647 0.4127 nan nan
2459897 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.814652 -1.028553 1.451208 -1.351985 0.740084 -1.030826 -2.153378 0.071464 0.5755 0.5631 0.4126 nan nan
2459896 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.582128 -1.164087 1.270602 -1.312483 0.249254 -1.392042 -1.383565 -0.207930 0.5773 0.5678 0.4124 nan nan
2459895 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.422024 -1.194324 1.867658 -0.997282 0.669290 -1.250599 -0.806856 0.595127 0.7041 0.6732 0.2856 nan nan
2459894 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.098222 -1.271752 1.294144 -1.272422 0.638075 -0.117284 -1.434433 0.164361 0.5930 0.5719 0.3945 nan nan
2459893 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459892 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.367071 -1.488530 1.286252 -1.603605 -0.393703 -0.451966 -1.615565 -0.030253 0.5913 0.5844 0.3997 nan nan
2459891 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.277128 -1.262370 1.631316 -1.427022 -0.301879 -0.042627 -1.751818 0.041582 0.5843 0.5681 0.4057 nan nan
2459890 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.050461 -1.256111 1.841442 -1.428763 0.091566 -0.314414 -0.777944 0.439068 0.5890 0.5686 0.4011 nan nan
2459889 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.104755 -1.225689 1.573731 -1.442789 -0.063599 -0.300881 -2.439347 -0.203747 0.5980 0.5735 0.3976 nan nan
2459888 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.365870 -1.162948 1.701300 -1.354917 0.404816 -0.631245 0.047565 0.341603 0.6038 0.5858 0.3998 nan nan
2459887 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.041368 -1.376484 0.689148 -2.107436 -1.260801 -0.957149 -0.948473 -0.078100 0.5961 0.5728 0.4050 nan nan
2459886 dish_ok 100.00% 1.06% 1.06% 0.00% - - -0.523588 -0.889021 1.216516 -1.286010 5.746171 5.957068 -0.587098 0.375444 0.7039 0.6795 0.3259 nan nan
2459885 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.539841 -0.472318 29.127330 15.130634 3.460332 2.332641 7.172909 2.269441 0.6436 0.6184 0.3718 nan nan
2459884 dish_ok 0.00% 0.00% 0.00% 0.00% - - 0.059593 -1.346514 1.648498 -1.287875 -0.010238 -0.681346 -1.578493 -0.382312 0.6027 0.5727 0.4061 nan nan
2459883 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.177842 -0.295082 25.524643 13.147283 1.872571 0.769808 -2.163613 0.711461 0.6006 0.5803 0.3956 nan nan
2459882 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.510933 -0.182664 29.903116 15.168074 2.394820 1.662242 -0.540832 0.783110 0.6061 0.5823 0.3893 nan nan
2459881 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.266375 -0.405841 33.248518 17.368049 5.681005 4.232157 -0.300165 6.104636 0.6501 0.6458 0.3383 nan nan
2459880 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.311536 -0.632663 26.939180 13.942649 1.326013 0.907578 -1.357674 -0.164448 0.6032 0.5836 0.4050 nan nan
2459879 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459878 dish_ok 100.00% 100.00% 100.00% 0.00% - - 1.345400 0.088965 33.008329 17.251581 3.010873 2.018007 -2.360822 0.429295 0.0787 0.0817 0.0323 nan nan
2459876 dish_ok 100.00% 100.00% 100.00% 0.00% - - 1.093257 -0.041772 23.385069 11.293535 8.347944 6.190773 -2.037808 0.536882 0.0825 0.0859 0.0333 nan nan
2459875 dish_ok 100.00% 100.00% 100.00% 0.00% - - 1.939616 -0.832060 31.706445 16.226078 3.205473 2.279590 -1.027285 0.818713 0.0812 0.0841 0.0326 nan nan
2459874 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459873 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.085971 -0.809916 21.973776 10.976119 1.339587 0.901304 -1.403330 -0.099730 0.6299 0.5785 0.3966 nan nan
2459872 dish_ok 100.00% 100.00% 100.00% 0.00% - - 0.903932 -0.608459 29.387491 15.064014 4.651499 4.272403 -1.290326 0.501111 0.0773 0.0751 0.0287 nan nan
2459871 dish_ok 100.00% 100.00% 100.00% 0.00% - - 1.141766 -0.711276 29.669335 15.230091 4.726639 2.726280 -1.026556 -0.058219 0.0938 0.0947 0.0350 nan nan
2459870 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.262610 -0.355666 21.705959 10.855503 2.960910 2.420061 -1.608253 0.886760 0.6320 0.5877 0.4011 nan nan
2459869 dish_ok 100.00% 0.00% 0.00% 0.00% - - 2.022240 0.043539 21.091256 10.734301 4.782004 2.979263 -0.079794 0.834693 0.6411 0.6034 0.4021 nan nan
2459868 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.894437 -0.030776 33.580393 17.510979 2.711678 1.611812 -2.326842 0.434429 0.6212 0.5781 0.4130 nan nan
2459867 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.386268 -0.469093 26.851631 13.663850 1.404071 1.013863 -1.604762 -0.095977 0.6364 0.5863 0.4129 nan nan
2459866 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.050616 -0.343415 24.879488 12.439317 1.270117 0.370468 -1.257183 -0.783970 0.6389 0.5897 0.4050 nan nan
2459865 dish_ok 100.00% 100.00% 100.00% 0.00% - - 1.595713 0.085209 32.603372 16.713085 3.220332 2.398601 3.795246 2.037144 0.0914 0.0885 0.0368 nan nan
2459864 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.376653 -0.846242 16.229877 8.684382 1.763092 1.381873 -1.990213 2.032937 0.6418 0.5842 0.4378 nan nan
2459863 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.040556 -1.435231 1.526906 -1.008431 -0.712774 0.187785 -2.096749 -0.071111 0.6345 0.5711 0.4295 nan nan
2459862 dish_ok 100.00% 0.00% 0.00% 0.00% - - 1.107721 -0.897353 19.792097 10.578914 1.532230 0.675078 -1.110543 -0.450907 0.6103 0.5963 0.4438 nan nan
2459861 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.342297 -1.291535 0.347667 -2.292086 -1.278477 -0.593070 -1.762628 -0.154386 0.6505 0.5883 0.4437 nan nan
2459860 dish_ok 100.00% 0.00% 0.00% 0.00% - - 0.899119 -0.589074 15.165074 8.129675 4.929493 3.389965 -1.344758 -0.292069 0.6577 0.5908 0.4405 nan nan
2459859 dish_ok 0.00% 0.00% 0.00% 0.00% - - -0.068432 -1.440854 0.472717 -2.243570 -0.991587 -0.733818 -1.416481 -0.580228 0.6634 0.5973 0.4369 nan nan
2459858 dish_ok 0.00% 0.00% 0.00% 0.00% 100.00% 0.00% -0.339604 -1.418263 0.006851 -2.750833 -1.393749 -0.367615 -2.167898 -0.399680 0.6739 0.6024 0.4515 0.000000 0.000000
2459857 dish_ok 0.00% 100.00% 100.00% 0.00% - - 2.452216 0.291184 2.635597 1.344107 -0.665329 -0.354351 -1.629848 -2.208471 0.0319 0.0301 0.0013 nan nan
2459856 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 1.482458 -0.199262 14.059312 7.708743 1.171394 1.133950 -1.853098 -0.806361 0.6596 0.6155 0.4323 0.000000 0.000000
2459855 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 1.685121 -0.643258 15.705481 8.642606 -0.422494 -0.061807 -1.506092 -0.596047 0.6303 0.6308 0.4668 0.000000 0.000000
2459854 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 1.417539 -0.960023 13.226727 7.571756 0.663740 0.376647 -0.260996 1.553769 0.6472 0.6695 0.4641 0.000000 0.000000
2459853 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 0.991528 -0.482315 17.218636 9.909758 2.085918 0.867170 -1.882944 -0.135623 0.6930 0.6079 0.4622 0.000000 0.000000
2459852 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% -0.064749 0.560713 17.308264 10.007200 7.156184 3.554511 10.182152 6.431504 0.7455 0.7250 0.3146 0.000000 0.000000
2459850 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 1.308903 0.638356 16.318770 9.354334 2.151012 5.121323 -0.341147 6.366301 0.6913 0.6809 0.3814 0.000000 0.000000
2459849 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 2.012343 0.132563 32.531367 19.454546 0.890642 0.765050 -2.131412 0.231052 0.6842 0.6742 0.3898 0.000000 0.000000
2459848 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 2.132443 -0.028258 23.494998 13.965438 3.364926 2.055531 -1.691716 -0.118544 0.6538 0.6694 0.4072 0.000000 0.000000
2459847 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 1.189154 -0.093436 22.233851 13.148985 5.932151 3.758880 -1.570392 -0.389220 0.6733 0.5971 0.4637 0.000000 0.000000
2459846 dish_ok 100.00% 0.00% 0.00% 0.00% 100.00% 0.00% 8.626219 4.821771 17.307859 10.888887 9.955322 4.044654 -0.364619 -0.592090 0.7369 0.4784 0.5239 0.000000 0.000000
2459845 dish_ok 100.00% 100.00% 100.00% 0.00% 100.00% 0.00% nan nan inf inf nan nan nan nan nan nan nan 0.000000 0.000000
2459844 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459843 dish_ok 100.00% 100.00% 100.00% 0.00% 100.00% 0.00% nan nan inf inf nan nan nan nan nan nan nan 0.000000 0.000000
2459842 dish_ok 0.00% 0.00% 0.00% 0.00% 100.00% 0.00% 1.731863 -0.156632 0.097038 -1.514234 -1.058825 -2.268239 -2.191283 -1.642040 0.7153 0.5864 0.2860 0.000000 0.000000
2459841 dish_ok 100.00% 100.00% 100.00% 0.00% - - nan nan inf inf nan nan nan nan nan nan nan nan nan
2459840 dish_ok 100.00% 100.00% 100.00% 0.00% - - 5.808437 0.218235 22.791702 21.237343 0.606869 -0.020819 1.789402 -1.207606 0.0345 0.0373 0.0065 nan nan
2459839 dish_ok 100.00% - - - - - 0.477715 -0.765683 66.712692 62.519268 -0.762145 -0.902634 1.529907 -1.764911 nan nan nan nan nan

Load antenna metric spectra and waterfalls from auto_metrics notebooks.¶

In [11]:
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

Figure 1: Antenna autocorrelation metric spectra and waterfalls.¶

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.

In [12]:
for i, html_to_display in enumerate(htmls_to_display):
    if i == 100:
        break
    display(HTML(html_to_display))

Antenna 325: 2459975

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
325 N09 dish_ok ee Temporal Variability 1.248103 0.543957 -1.089361 1.154813 -1.428762 1.248103 -0.844383 -1.354956 -0.247674

Antenna 325: 2459974

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
325 N09 dish_ok ee Power 1.219395 0.286393 -1.013039 1.219395 -1.475022 1.148633 -0.908744 -1.647018 -0.290654

Antenna 325: 2459973

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
325 N09 dish_ok ee Power 1.197198 0.518232 -1.103024 1.197198 -1.576618 0.617970 -1.078418 -1.236556 -0.274806

Antenna 325: 2459972

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
325 N09 dish_ok ee Power 1.463390 0.571290 -0.869027 1.463390 -1.081775 0.875389 -0.831904 -1.665204 -0.865905

Antenna 325: 2459971

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
325 N09 dish_ok ee Power 1.321161 0.385212 -0.969429 1.321161 -1.182164 1.146055 -0.830910 -1.110353 -0.330385

Antenna 325: 2459970

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.564874 -0.828403 0.779818 -1.116166 1.564874 -0.804964 1.085687 -0.228207 -0.760163

Antenna 325: 2459969

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
325 N09 dish_ok ee Power 1.365785 0.671383 -1.049346 1.365785 -1.126510 1.055139 -1.206021 -1.382223 -0.417417

Antenna 325: 2459968

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
325 N09 dish_ok ee Temporal Variability 1.960027 0.187760 -0.198429 1.838117 -0.941516 1.960027 -0.197649 0.393211 0.503475

Antenna 325: 2459967

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
325 N09 dish_ok ee Power 1.725309 0.645825 -0.868921 1.725309 -0.931657 1.191164 -0.567211 -0.901789 0.079406

Antenna 325: 2459966

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.716098 -0.867149 0.418361 -1.031758 1.716098 -0.739095 1.235908 -0.208680 -1.286361

Antenna 325: 2459965

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.457332 -1.146114 0.077684 -1.074390 1.457332 1.347478 1.195776 1.090185 -0.450303

Antenna 325: 2459962

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.311116 -1.051366 -0.197912 -1.463340 1.311116 -1.432069 -0.081664 -0.788330 0.078392

Antenna 325: 2459961

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Variability 3.338441 -0.251542 -0.213507 -1.050831 1.549053 3.338441 0.469794 1.149220 -0.044590

Antenna 325: 2459960

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.568896 -1.339178 0.377417 -1.083505 1.568896 0.940985 0.927033 -0.675684 -0.284631

Antenna 325: 2459959

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
325 N09 dish_ok ee Power 1.358486 0.450368 -1.662065 1.358486 -1.625932 0.818380 0.396000 -1.138813 0.472031

Antenna 325: 2459958

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.520794 -1.010364 0.063565 -1.094934 1.520794 -0.017720 0.994394 0.068860 -1.077501

Antenna 325: 2459957

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.595504 -0.709879 0.221092 -0.987653 1.595504 -1.055811 0.857042 -0.305370 -1.076582

Antenna 325: 2459956

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.711140 -0.336823 0.436745 -0.926819 1.711140 -0.386140 1.624623 1.067259 0.129071

Antenna 325: 2459955

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
325 N09 dish_ok ee Power 1.487514 0.177344 -0.742348 1.487514 -0.920315 0.954166 -0.522214 -1.092768 0.032815

Antenna 325: 2459954

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.766241 -0.729455 0.708015 -0.746868 1.766241 -0.453448 0.937942 0.227990 -1.476799

Antenna 325: 2459953

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Discontinuties 2.018375 -0.701516 0.418238 -0.963763 1.688645 -0.018206 1.280042 2.018375 0.281333

Antenna 325: 2459952

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.830601 -0.592904 0.832227 -0.927817 1.830601 -0.230218 1.002312 0.601145 -2.030225

Antenna 325: 2459951

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.291652 -0.667504 0.637499 -1.300553 1.291652 -0.750216 0.778357 -0.001810 -2.059424

Antenna 325: 2459950

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.442913 -0.670044 1.080142 -1.176757 1.442913 -0.652445 1.319813 0.625501 -0.342244

Antenna 325: 2459949

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
325 N09 dish_ok ee Power 1.247020 0.683085 -0.903441 1.247020 -1.504128 0.872952 -0.800347 -1.147920 -0.165716

Antenna 325: 2459948

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
325 N09 dish_ok nn Temporal Discontinuties 1.823257 0.713416 -0.906470 1.582888 -1.940679 0.768923 -0.534513 -0.807070 1.823257

Antenna 325: 2459947

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Discontinuties 2.143622 -0.985184 0.369470 -1.626306 0.855890 -0.685212 0.431669 2.143622 -0.825308

Antenna 325: 2459946

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Discontinuties 1.310857 -0.868267 0.067485 -1.561693 1.143264 -0.433650 0.751176 1.310857 -1.092473

Antenna 325: 2459945

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Temporal Variability 1.020401 -1.041985 0.195395 -1.706385 0.775841 -0.627733 1.020401 0.183953 -1.272102

Antenna 325: 2459944

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
325 N09 dish_ok nn Temporal Discontinuties 1.129749 0.498786 -1.127878 0.910400 -1.626389 0.817343 -0.084761 -0.276529 1.129749

Antenna 325: 2459943

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.956166 -1.167065 0.656324 -1.501765 0.956166 -0.276127 0.680057 0.886959 -0.313778

Antenna 325: 2459942

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Discontinuties 1.170299 -1.047231 0.395705 -1.528572 1.005373 -0.350905 1.069444 1.170299 -0.216613

Antenna 325: 2459941

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.066691 -0.741827 0.139606 -1.551517 1.066691 -0.032146 0.840748 0.170877 -1.616986

Antenna 325: 2459940

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459939

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.823764 -1.066379 0.488796 -1.558195 0.823764 -0.515144 0.243643 -0.209992 -1.355645

Antenna 325: 2459938

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.986647 -0.980840 0.572811 -1.537197 0.986647 -0.708597 0.302839 -0.009213 -1.352713

Antenna 325: 2459937

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
325 N09 dish_ok ee Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459936

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
325 N09 dish_ok nn Temporal Discontinuties 2.370646 -0.156848 0.006041 1.293665 -1.394044 1.545029 2.232453 -0.908563 2.370646

Antenna 325: 2459935

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.349158 -0.695404 0.617946 -1.342180 1.349158 -0.476298 0.700197 0.720733 -1.495419

Antenna 325: 2459934

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
325 N09 dish_ok ee Power 1.686760 0.863765 -0.773889 1.686760 -0.915607 1.238784 -0.467891 -1.165530 -0.241311

Antenna 325: 2459933

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.835264 -0.665546 1.112540 -0.885089 1.835264 -0.606919 1.012503 -0.340708 -1.247248

Antenna 325: 2459932

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.606784 -0.682548 1.302449 -0.991580 1.606784 -0.474824 -1.132328 0.459261 -2.071859

Antenna 325: 2459931

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
325 N09 dish_ok ee Power 1.714232 0.954224 -0.803230 1.714232 -0.990035 0.753282 -0.571595 0.527627 0.635786

Antenna 325: 2459930

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
325 N09 dish_ok ee Power 1.616980 1.006295 -0.884108 1.616980 -0.992280 0.338605 -0.420411 -0.870301 -0.092877

Antenna 325: 2459929

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Shape 0.576221 0.576221 -1.067456 -1.703574 0.511424 -0.623220 -0.482616 -0.310560 -0.462459

Antenna 325: 2459928

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.026453 -1.131797 0.572158 -1.784556 1.026453 -0.279130 0.571435 0.479691 -0.990693

Antenna 325: 2459927

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Shape 0.925394 -0.889989 0.925394 -1.684420 0.743844 -0.420880 -1.370380 -0.045959 -0.986410

Antenna 325: 2459926

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Discontinuties 0.347397 -1.312874 -1.432952 -1.824668 -0.312602 -0.219835 -1.448193 0.347397 -0.916143

Antenna 325: 2459925

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
325 N09 dish_ok ee Power 0.615320 0.130446 -0.572000 0.615320 -2.110766 -0.572147 0.566235 -1.182314 -0.003686

Antenna 325: 2459924

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
325 N09 dish_ok nn Temporal Discontinuties 2.494736 0.287851 -1.027988 0.440863 -2.057606 -0.042781 -0.654252 0.685216 2.494736

Antenna 325: 2459923

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.791773 -1.529761 -0.159186 -1.995756 0.791773 0.007659 -0.458153 -0.312165 -0.746178

Antenna 325: 2459922

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.206579 -1.225176 0.370774 -1.091303 1.206579 0.237232 1.128661 0.443474 -1.132460

Antenna 325: 2459921

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
325 N09 dish_ok ee Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459920

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459919

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
325 N09 dish_ok ee Power 1.149909 0.665456 -1.295862 1.149909 -1.143024 0.775897 -1.201231 -1.815033 0.404235

Antenna 325: 2459918

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.266527 -1.382457 0.490191 -1.058917 1.266527 -0.945772 0.654740 0.391709 -1.433007

Antenna 325: 2459917

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Temporal Variability 1.255497 -1.368655 -0.193072 -1.425843 1.109511 1.255497 -1.158712 0.344164 -1.630090

Antenna 325: 2459916

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
325 N09 dish_ok ee Power 0.919840 0.682000 -1.239907 0.919840 -1.307759 0.344440 -0.570351 -2.037286 0.308590

Antenna 325: 2459915

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
325 N09 dish_ok nn Temporal Discontinuties 1.745848 0.319892 -1.186837 1.374265 -1.221240 0.723697 -0.334480 -0.943852 1.745848

Antenna 325: 2459914

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
325 N09 dish_ok nn Temporal Discontinuties 3.627939 0.094354 -1.166788 1.608036 -1.223753 0.887404 0.237119 -0.926414 3.627939

Antenna 325: 2459913

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.350375 -0.732443 0.409700 -1.287067 1.350375 -0.079162 0.533161 1.240065 -1.334586

Antenna 325: 2459912

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.981530 -0.983417 0.657278 -1.619931 0.981530 -0.690054 0.546374 0.103546 -1.731514

Antenna 325: 2459911

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.084131 -1.023901 0.752343 -1.400315 1.084131 -0.921419 0.985883 -0.349274 -1.107114

Antenna 325: 2459910

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.015871 -1.028006 0.800924 -1.429001 1.015871 -0.607671 0.969009 0.233857 0.131533

Antenna 325: 2459909

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.806266 -1.144045 0.772513 -1.635787 0.806266 -0.747166 0.641412 -0.070400 -1.311061

Antenna 325: 2459908

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
325 N09 dish_ok ee Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459907

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.938760 -1.259944 0.733346 -1.614511 0.938760 -0.508723 0.373020 0.052117 -1.370878

Antenna 325: 2459906

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.468959 -1.209742 0.776149 -1.155349 1.468959 -0.476992 0.501972 0.143534 -2.207467

Antenna 325: 2459905

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.272828 -1.080924 0.689032 -1.199908 1.272828 -0.326660 0.608614 0.414076 -1.256224

Antenna 325: 2459904

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.616529 -1.044741 0.740171 -1.145185 1.616529 -0.488922 0.230361 0.408722 -2.698958

Antenna 325: 2459903

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.292981 -1.114812 0.833067 -1.340059 1.292981 -0.563451 0.231064 0.082900 -2.745786

Antenna 325: 2459902

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
325 N09 dish_ok ee Power 1.531951 0.695526 -1.274877 1.531951 -1.054341 0.435386 -0.537295 -1.205239 -0.087112

Antenna 325: 2459901

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
325 N09 dish_ok ee Power 0.970327 0.231914 -1.361829 0.970327 -1.539045 0.102706 -0.721795 -1.691006 -0.238864

Antenna 325: 2459900

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
325 N09 dish_ok ee Temporal Variability 1.171984 0.992904 -1.321782 0.987008 -1.494584 1.171984 0.390777 -1.776346 -0.017319

Antenna 325: 2459898

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.055671 -1.313720 0.464536 -1.507374 1.055671 -0.110522 -0.045940 0.415059 -1.963281

Antenna 325: 2459897

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.451208 -1.028553 0.814652 -1.351985 1.451208 -1.030826 0.740084 0.071464 -2.153378

Antenna 325: 2459896

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.270602 -1.164087 0.582128 -1.312483 1.270602 -1.392042 0.249254 -0.207930 -1.383565

Antenna 325: 2459895

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
325 N09 dish_ok ee Power 1.867658 -0.422024 -1.194324 1.867658 -0.997282 0.669290 -1.250599 -0.806856 0.595127

Antenna 325: 2459894

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.294144 -1.271752 0.098222 -1.272422 1.294144 -0.117284 0.638075 0.164361 -1.434433

Antenna 325: 2459893

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
325 N09 dish_ok ee Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459892

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.286252 -1.488530 0.367071 -1.603605 1.286252 -0.451966 -0.393703 -0.030253 -1.615565

Antenna 325: 2459891

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
325 N09 dish_ok ee Power 1.631316 0.277128 -1.262370 1.631316 -1.427022 -0.301879 -0.042627 -1.751818 0.041582

Antenna 325: 2459890

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.841442 -1.256111 0.050461 -1.428763 1.841442 -0.314414 0.091566 0.439068 -0.777944

Antenna 325: 2459889

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
325 N09 dish_ok ee Power 1.573731 0.104755 -1.225689 1.573731 -1.442789 -0.063599 -0.300881 -2.439347 -0.203747

Antenna 325: 2459888

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.701300 -1.162948 0.365870 -1.354917 1.701300 -0.631245 0.404816 0.341603 0.047565

Antenna 325: 2459887

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 0.689148 -1.376484 -0.041368 -2.107436 0.689148 -0.957149 -1.260801 -0.078100 -0.948473

Antenna 325: 2459886

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
325 N09 dish_ok nn Temporal Variability 5.957068 -0.523588 -0.889021 1.216516 -1.286010 5.746171 5.957068 -0.587098 0.375444

Antenna 325: 2459885

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 29.127330 -0.472318 1.539841 15.130634 29.127330 2.332641 3.460332 2.269441 7.172909

Antenna 325: 2459884

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 1.648498 -1.346514 0.059593 -1.287875 1.648498 -0.681346 -0.010238 -0.382312 -1.578493

Antenna 325: 2459883

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 25.524643 -0.295082 1.177842 13.147283 25.524643 0.769808 1.872571 0.711461 -2.163613

Antenna 325: 2459882

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 29.903116 -0.182664 1.510933 15.168074 29.903116 1.662242 2.394820 0.783110 -0.540832

Antenna 325: 2459881

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 33.248518 -0.405841 1.266375 17.368049 33.248518 4.232157 5.681005 6.104636 -0.300165

Antenna 325: 2459880

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 26.939180 -0.632663 1.311536 13.942649 26.939180 0.907578 1.326013 -0.164448 -1.357674

Antenna 325: 2459879

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok nn Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459878

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 33.008329 0.088965 1.345400 17.251581 33.008329 2.018007 3.010873 0.429295 -2.360822

Antenna 325: 2459876

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
325 N09 dish_ok ee Power 23.385069 1.093257 -0.041772 23.385069 11.293535 8.347944 6.190773 -2.037808 0.536882

Antenna 325: 2459875

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
325 N09 dish_ok ee Power 31.706445 1.939616 -0.832060 31.706445 16.226078 3.205473 2.279590 -1.027285 0.818713

Antenna 325: 2459874

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
325 N09 dish_ok ee Shape nan nan nan inf inf nan nan nan nan

Antenna 325: 2459873

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
325 N09 dish_ok ee Power 21.973776 1.085971 -0.809916 21.973776 10.976119 1.339587 0.901304 -1.403330 -0.099730

Antenna 325: 2459872

Ant Node A Priori Status Worst Metric Worst Modified Z-Score nn Shape Modified Z-Score ee Shape Modified Z-Score nn Power Modified Z-Score ee Power Modified Z-Score nn Temporal Variability Modified Z-Score ee Temporal Variability Modified Z-Score nn Temporal Discontinuties Modified Z-Score ee Temporal Discontinuties Modified Z-Score
325 N09 dish_ok ee Power 29.387491 -0.608459 0.903932 15.064014 29.387491 4.272403 4.651499 0.501111 -1.290326

In [ ]: