diff --git a/Python_script/example_sweeps.txt b/Python_script/example_sweeps.txt
index e768344efded0d6244f7c398d993f6ac820e8f2d..ba974a21a021b24b90f1530f379723462da67f84 100644
--- a/Python_script/example_sweeps.txt
+++ b/Python_script/example_sweeps.txt
@@ -1,2 +1,2 @@
-30.0 40 300 30
+25.0 40 30 30
 
diff --git a/Python_script/prototype.py b/Python_script/prototype.py
index d07df80c65855f55e5f6197b0d09ba6cc5bf9a25..c036ccb79851a9cbe3b89cb38254fccfbe518958 100755
--- a/Python_script/prototype.py
+++ b/Python_script/prototype.py
@@ -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))