Error Visualization after Running pyStan Model

I am working on a data set in which each variable has it error associated to each measure. I already generate the model, run it, and extract some predictions values from the output predicted model.

Now I would like to visualize the output predicted variable with it error associated to it, and have a better visual way to understand the output model. Can anyone help me with ways I can generate a graph with both variables one on top of each other, or ways I can solve this problem. I am working on a PyStan environment.

Thanks in advanced.

1 Like

Have you tried ArviZ?

https://arviz-devs.github.io/arviz/

Then there is always pure matplotlib (e.g. hist function)

1 Like

Thanks, I am going to take a look.