Skip to content
Snippets Groups Projects
Commit 28c1b106 authored by Maximilian Gruber's avatar Maximilian Gruber
Browse files

provide dummy visualization method

parent c50fd8e2
No related branches found
No related tags found
No related merge requests found
......@@ -499,6 +499,16 @@ class CocalMethods:
fig.savefig(self.result_image_path)
# plt.show()
def generate_spectral_domain_visualization_dummy(self):
# visualize result
fig, ax = plt.subplots(nrows=1, ncols=1, sharex=True, squeeze=False, figsize=(8,5))
fig.suptitle("DUMMY PLOT")
fig.tight_layout()
fig.savefig(self.result_image_path)
# plt.show()
def perform_dummy_computations(self):
self.start_date = datetime.date.today().isoformat()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment