SED Plotting

With HostPhot, the user can plot the SED from the calculated photometry.

[1]:
import hostphot
print('HostPhot version:', hostphot.__version__)
HostPhot version: 2.7.1
[2]:
from hostphot.sed_plotting import plot_sed
name = 'SN2004eo'
phot_type = 'global'
z = 0.0157

plot_sed(name, phot_type, z=z)
../_images/examples_sed_plotting_2_0.png
[ ]: