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


Can't import plotly

In [5]:
%load_ext autoreload
%autoreload 2

In [55]:
l1b = io.some_l1b()

In [56]:
l1b.plot_raw_spectrogram(0, log=False)


Out[56]:
<matplotlib.axes._subplots.AxesSubplot at 0x109ee3d68>

In [60]:
l1b.plot_some_profile('detector_raw', 0)


Out[60]:
<matplotlib.axes._subplots.AxesSubplot at 0x10e832208>

In [58]:
l1b.plot_raw_overview(0)



In [52]:
l1b.plot_dark_profile(0)


Out[52]:
<matplotlib.axes._subplots.AxesSubplot at 0x10d013eb8>

In [54]:
l1b.plot_dark_spectogram(0)


Out[54]:
<matplotlib.axes._subplots.AxesSubplot at 0x10cdd1438>

In [ ]: