|
lsst.jointcal g29ae962dfc+d9108a0941
|
Public Member Functions | |
| __init__ (self, plot=True, verbose=True) | |
| __call__ (self, logfile) | |
Public Attributes | |
| matcher = re.compile(chi2_re) | |
| plot = plot | |
| verbose = verbose | |
| fig = plt.figure(figsize=(15, 8)) | |
| dict | section_start |
| dict | section_end |
Protected Member Functions | |
| _find_chi2_increase (self, chi2Data, title, label, threshold=1) | |
| _extract_chi2 (self, opened_log, section) | |
| _plot (self, astrometry, photometry, title) | |
| _plot_axes (self, ax0, ax1, chi2Data, palette, label="") | |
Parse a jointcal logfile to extract chi2 values and plot them.
Call the instance with the path to a file to check it for anamolous chi2
and output plots to your current directory.
Parameters
----------
plot : `bool`
Make plots for each file (saved to the current working directory)?
verbose : `bool`
Print extra updates during processing?
Definition at line 76 of file check_logged_chi2.py.
| lsst.jointcal.check_logged_chi2.LogParser.__init__ | ( | self, | |
| plot = True, | |||
| verbose = True ) |
Definition at line 89 of file check_logged_chi2.py.
| lsst.jointcal.check_logged_chi2.LogParser.__call__ | ( | self, | |
| logfile ) |
Parse logfile to extract chi2 values and generate and save plots.
The plot output is written to the current directory, with the name
derived from the basename of ``logfile``.
Parameters
----------
logfile : `str`
The filename of the jointcal log to process.
Definition at line 109 of file check_logged_chi2.py.
|
protected |
Return the values extracted from the chi2 statements in the logfile.
Definition at line 158 of file check_logged_chi2.py.
|
protected |
Return True and print a message if the raw chi2 increases markedly.
Definition at line 141 of file check_logged_chi2.py.
|
protected |
Generate plots of chi2 values.
Parameters
----------
astrometry : `Chi2Data` or None
The as-read astrometry data, or None if there is none to plot.
photometry : `Chi2Data` or None
The as-read photometry data, or None if there is none to plot.
title : `str`
Title for the whole plot.
Definition at line 191 of file check_logged_chi2.py.
|
protected |
Make the chi2 and degrees of freedom subplots.
Definition at line 226 of file check_logged_chi2.py.
| lsst.jointcal.check_logged_chi2.LogParser.fig = plt.figure(figsize=(15, 8)) |
Definition at line 100 of file check_logged_chi2.py.
| lsst.jointcal.check_logged_chi2.LogParser.matcher = re.compile(chi2_re) |
Definition at line 95 of file check_logged_chi2.py.
| lsst.jointcal.check_logged_chi2.LogParser.plot = plot |
Definition at line 96 of file check_logged_chi2.py.
| dict lsst.jointcal.check_logged_chi2.LogParser.section_end |
Definition at line 106 of file check_logged_chi2.py.
| dict lsst.jointcal.check_logged_chi2.LogParser.section_start |
Definition at line 104 of file check_logged_chi2.py.
| lsst.jointcal.check_logged_chi2.LogParser.verbose = verbose |
Definition at line 97 of file check_logged_chi2.py.