- Fixed deprecated negative signs on numpy booleans.
- Fixed wrong sign in delta functional approximation of Kelner PionDecay.
- Added a threads parameter to plot_fit and plot_samples that set the number of cores to use in computing model samples for plotting.
- Added a new model for EBL absorption based on the tables of Dominguez et al. 2011.
- Updated to use new
emcee
autocorrelation API in version 2.2. - Fixed sherpa models string representation.
- Packaging bugfix
- The
InverseCompton
class can now compute IC on arbitrary seed photon fields passed as arrays. plot_fit
andplot_data
have new options (errorbar_opts
andulim_opts
) to control the properties of spectral flux points and upper-limits.- There is a new table model class in
naima.models.TableModel
. - Added
corner
(formertriangle_plot
) as a dependency.
- Performance improvements to the memoize logic that result in 10% or higher improvement in model execution time.
- Medians and associated errors are now shown with a precision corresponding to a single significant digit in the errors (except when the leading digit is 1, when two significant digits are shown). Note that they are still saved with full precision to the result tables.
- There is a new GUI tool for interactive model fitting:
InteractiveModelFitter
, which can be accessed directly or through theinteractive
argument ofget_sampler
prior to a sampling run. - Sampling run results can be saved and retrieved for later analysis or archival with the new functions naima.save_run and naima.read_run.
- The individual contributions to the total Inverse Compton spectrum of the
different seed photon fields can now be accessed through the
seed
argument of theInverseCompton.flux
andInverseCompton.sed
functions.
save_diagnostic_plots
now turns matplotlib interactivity off, so the plots are only saved and not shown.- The
group
column is now preserved if a data table is validated more than once.
save_results_table
now saves the maximum log likelihood and ML parameters of the sample.- Update
astropy_helpers
to 1.0.2 and require astropy >= 1.0.2 to ensure pickleable Tables. - Internal data is a QTable instead of a dict.
- When multiple input spectra are used, they are now plotted with different colors and markers.
- Now doing the prefit with a minimizer that allows for relative tolerance termination: in general prefit will be faster.
- Add
e_range
ande_npoints
parameters toplot_fit
to allow computing the model samples for a wider energy range that the observed spectrum (or at energies between data sets, such as X-ray and gamma-ray) - Added
plot_corner
as a thin wrapper aroundtriangle.corner
with ML parameter plotting.
- All models have a cache of length 10 so that the output is not computed when
the parameters have not changed. It can be turned off through the
_memoize
attribute of the models.
- Fixed concatenation of UL and CL in
validate_data_table
.
- Added an option to save the distribution properties of scalar blobs when
saving results table: option
include_blobs
ofsave_results_table
. - A new method for radiative classes allows to renormalize the particle
distributions to a given energy content in particles. See
set_We
andset_Wp
in leptonic and hadronic classes, respectively. - The default FIR and NIR photon fields for naima.InverseCompton have been set to the GALPROP values at a galactic radius of 6.5 kpc.
- Require astropy >= 1.0.
- Fixed sed conversion of residuals [#69]
- Fixed
plot_data
so it can take lists of data_tables.
- The name of the
table_format
parameter ofsave_results_table
has been changed toformat
for consistency with astropy.io.ascii.
- Refactored sherpa models to use parent SherpaModelECPL class [#62]
- Added a data_sed flag to get_sampler to select whether to convert all data tables to SED or choose format of first data tables when providing multiple data tables.
- Added support for a
flux_ul
column in input data tables. - Added a method to estimate magnetic field: naima.estimate_B.
- Added the option to perform an optimization of the parameters before the MCMC
run: see option
prefit
in naima.get_sampler. - Convert between SED and differential fluxes automatically if the model and data physical types do not match.
- Add blob_labels parameter to save_diagnostic_plots.
- Fix sherpa models guess() for integrated datasets.
- Only complain about CL when there are ULs at a different CL.
- Fix parsing of string upper limit columns in Python 3.
- Use old energy unit when plotting a new data set onto a figure [#64]
- Show ordinate units when plotting blobs without spectral data.
- module sherpamod is now sherpa_modules.
- Initial release