In [2]:
%matplotlib inline
import matplotlib.pyplot as plt
plt.rcParams['figure.figsize'] = (12,9)
plt.rcParams['image.aspect'] = 'auto'
plt.rcParams['image.interpolation'] = 'none'
In [3]:
import specutils
In [4]:
from iuvs import io, plotting
In [5]:
%load_ext autoreload
%autoreload 2
In [55]:
l1b = io.some_l1b()
In [56]:
l1b.plot_raw_spectrogram(0, log=False)
Out[56]:
In [60]:
l1b.plot_some_profile('detector_raw', 0)
Out[60]:
In [58]:
l1b.plot_raw_overview(0)
In [52]:
l1b.plot_dark_profile(0)
Out[52]:
In [54]:
l1b.plot_dark_spectogram(0)
Out[54]:
In [ ]: