Skip to content
Snippets Groups Projects
Commit e30c3670 authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fix plotted channels (was S11, should be s21)

parent fe244235
No related branches found
No related tags found
No related merge requests found
30.0 40 300 30
25.0 40 30 30
......@@ -272,9 +272,9 @@ class Measurements:
fig, ax1 = plt.subplots(2, figsize=(12, 10))
fig.suptitle("Graphical representation of chamber output", color="red")
path_collection01 = ax1[0].scatter(csv_data.TIMESTAMP, csv_data.S11_PHASE, c='red', marker='<', label='Phase')
path_collection01 = ax1[0].scatter(csv_data.TIMESTAMP, csv_data.S21_PHASE, c='red', marker='<', label='Phase')
twin2_0 = ax1[0].twinx()
path_collection02 = twin2_0.scatter(csv_data.TIMESTAMP, csv_data.S11_MAGNITUDE, c='#3120E0', marker='4',
path_collection02 = twin2_0.scatter(csv_data.TIMESTAMP, csv_data.S21_MAGNITUDE, c='#3120E0', marker='4',
label='Magnitude')
twin3_0 = ax1[0].twinx()
twin3_0.spines['right'].set_position(('outward', 40))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment