Table of contents
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
What is the hierarchy?
Where is it in this story?
Are the lines communicating?
Or is the confusion elevating
Video
Python Code
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()