-Let's see the dimensions and coordinates for the `posterior` in our `dt` object. We can see 3 dimensions `chain`, `draw`, and `school`. As usual the posterior group of a DataTree object will be generated from a MCMC sampler. The `chain` dimension is used to index the different chains of the MCMC sampler, the `draw` dimension is used to index the different samples generated by the MCMC sampler. The `chain` and `draw` dimensions are ubiquitous, you will see them essentially in any DataTree object when working with ArviZ. The coordinates for `chain` are the integers `[0, 1, 2, 3]` and for `draw` are the integers `[0, 1, 2, ..., 499]`. Then, we also have the `school` dimension. This problem-specific, we have it here because the model from which the posterior was generated has a parameter conditional on school. The coordinates for `school` are the names of the schools, if you click on the {{< fa database >}} symbol by the `school` coordinate, you will be able to see the names of each school. They are: `['Choate', 'Deerfield', 'Phillips Andover', 'Phillips Exeter', 'Hotchkiss', 'Lawrenceville', "St. Paul's", 'Mt. Hermon']`
0 commit comments