> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# atoti_ai.AutoExplain.excluded_hierarchies

#### *property* AutoExplain.excluded\_hierarchies *: [Set](https://docs.python.org/3/library/collections.abc.html#collections.abc.Set)\[HasIdentifier\[HierarchyIdentifier] | HierarchyIdentifier]*

The hierarchies that are never explored.

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> table = session.create_table("Example", data_types={"Country": "String"})
>>> cube = session.create_cube(table)
>>> h = cube.hierarchies
>>> cube.auto_explain.excluded_hierarchies
frozenset()
>>> cube.auto_explain.excluded_hierarchies = {h["Country"]}
>>> sorted(cube.auto_explain.excluded_hierarchies)
[h['Example', 'Country']]
```

<Callout icon="link">
  **See also**:
  [`excluded_hierarchies_per_measure()`](./atoti_ai.AutoExplain.excluded_hierarchies_per_measure#atoti_ai.AutoExplain.excluded_hierarchies_per_measure).
</Callout>
