Rerun jupyter notebook and updated FileList.h5 and napp_plotlib.py due to changes on code dependencies.

This commit is contained in:
2023-10-31 14:33:25 +01:00
parent cc52fafc44
commit 86be738216
3 changed files with 297 additions and 30 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -40,11 +40,13 @@ def plot_spectra(dataframe,filter):
x_min, x_max = np.min(bindingEnergy_eV), np.max(bindingEnergy_eV)
y_min, y_max = 0, rows
#for i in range(cols):
ax.plot(bindingEnergy_eV, spectrum_countsPerSecond,label = meas['name'][0])
#ax.plot(bindingEnergy_eV, spectrum_countsPerSecond,label = meas['name'][0])
ax.plot(bindingEnergy_eV, spectrum_countsPerSecond,label = meas['name'])
ax.set_xlabel('bindingEnergy_eV')
ax.set_ylabel('counts Per Second')
ax.set_title('\n'+meas['sample'][0]+ '\n' + 'PE spectra')
ax.set_title('\n'+meas['sample']+ '\n' + 'PE spectra')
#ax.set_title('\n'+meas['sample'][0]+ '\n' + 'PE spectra')
#ax.set_title(meas['name'][0] + '\n'+meas['sample'][0]+ '\n' + meas['lastModifiedDatestr'][0])
ax.legend()