Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

function drawfig #18

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions diffpy/snmf/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
import scipy.sparse
from pathlib import Path
from diffpy.utils.parsers.loaddata import loadData
import matplotlib.pyplot as plt
from bg_mpl_stylesheet.bg_mpl_stylesheet import bg_mpl_style

plt.style.use(bg_mpl_style)


def initialize_variables(data_input, component_amount, data_type, sparsity=1, smoothness=1e18):
Expand Down Expand Up @@ -114,3 +118,32 @@ def load_input_signals(file_path=None):
grid_vector = np.unique(grid_array, axis=1)
values_array = np.column_stack(values_list)
return grid_vector, values_array


def drawfig(moment_amount, stretching_matrix, weight_matrix, grid_vector):
plt.ion()
fig = plt.figure()
grid = plt.GridSpec(4, 4)
stretching_plot = fig.add_subplot(grid[0:2, 0:2])
weight_plot = fig.add_subplot(grid[2:, 0:2])
component_plot = fig.add_subplot(grid[:, 2:])

stretching_plot.plot(stretching_matrix.T)
stretching_plot.set_title("Component Stretching Factors")
stretching_plot.set_xlabel("Moment")
stretching_plot.set_ylabel("Stretching Factor")

weight_plot.plot(weight_matrix.T)
weight_plot.set_title("Component Weights")
weight_plot.set_ylabel("Weight")
weight_plot.set_xlabel("Moment")

component_plot.plot(grid_vector, component_plot)
component_plot.set_title("Component Signals")
component_plot.sex_ylabel("g(r)")
component_plot.set_xlabel("r")

fig.canvas.draw()
fig.canvas.flush_events()
plt.tight_layout()
plt.show()