# Mathober2023_Hierarchy

# Mis-Hierarchy

For the 9th Prompt Of Mathober: ***Hierarchy***,  **Mis-Hierarchy** is  coded in **LiveCodeLab & Python** that contains multiple linear dendrograms and overlays them in a matter that sort of makes the information of the hierarchy harder to disseminate

Aided by **LiveCodeLab** Sounds

## Poem

```ocaml
What is the hierarchy?
Where is it in this story?
Are the lines communicating?
Or is the confusion elevating
```

## Video

<iframe width="470" height="835" src="https://www.youtube.com/embed/WASPOX9vksA"></iframe>

## Python Code

```python
import plotly.figure_factory as ff

import numpy as np

#Various combinations for the graph below
X = np.random.rand(11, 11)

names = ['coloc','peep','beeb','otto','kayak','noon','bob','mom','dad','yay','bloolb']
fig = ff.create_dendrogram(X, labels=names)
fig.update_layout(width=800, height=800)
fig.show()
```
