diff --git a/src/Plotter.py b/src/Plotter.py
index c16adfe01c294d076f9904c8aa01695792d013b4..8e43acc5059187f8ae5d98d31823f7afa2b37cc5 100644
--- a/src/Plotter.py
+++ b/src/Plotter.py
@@ -43,4 +43,9 @@ class Plotter:
                 weights=anx_score_weights,
                 bins = bins,
                 alpha=0.5,
-            )
\ No newline at end of file
+            )
+
+    def plot_scatterplot(self, target1, target2, styling_params = {}):
+        fig, ax = plt.subplots()
+        self.customize_plot(fig, ax, styling_params)
+        ax.scatter(self.df[target1], self.df[target2])
\ No newline at end of file