AdityaSavara / PEUQSE

Parameter estimation for complex physical problems often suffers from finding ‘solutions’ that are not physically realistic. The PEUQSE software provides tools for finding physically realistic parameter estimates, graphs of the parameter estimate positions within parameter space, and plots of the final simulation results.
13 stars 5 forks source link

Increase Plotting capabilities with arviz #241

Open TroyGustke opened 2 years ago

TroyGustke commented 2 years ago

https://python.arviz.org/en/latest/index.html

AdityaSavara commented 2 years ago

@TroyGustke On this page: https://python.arviz.org/en/latest/user_guide/plots_arguments_guide.html I see this: mu = ("mu", "var") samples = np.random.normal(0, 1, 100) data = az.dict_to_dataset({mu: samples}) az.plot_posterior(data);

So if you look at the structure of “samples” here, it looks like you can use the arviz dict_to_dataset create an arviz dataset.

Put investigating this on your to-do list as low priority.