from pyuvis import sens_dfHSP sensitivity
HSP Sensitivity
Sensitivity numbers for HSP
The HSP sensitivity table is bundled with the package as a tab-separated lookup of wavelength → sensitivity factor.
sens_df.head()sens_df.shapePlot
import matplotlib.pyplot as plt
ax = sens_df.plot(legend=False)
ax.set_xlabel('Wavelength [Å]')
ax.set_ylabel('Sensitivity')
ax.set_title('HSP sensitivity vs wavelength')
plt.tight_layout()