diff --git a/src/database/matplotlib_graph.py b/src/database/matplotlib_graph.py index c8b41b6..43df5dd 100644 --- a/src/database/matplotlib_graph.py +++ b/src/database/matplotlib_graph.py @@ -44,6 +44,10 @@ class Matplotlib_Graph: #if self.ylabel is not None: xlabel = self.ylabel #if self.title is not None: xlabel = self.title + plt.xlabel(self.xlabel) + plt.ylabel(self.ylabel) + plt.title(self.title) + # Show the plot plt.show()