NaPoWriMo+GenMo2025_Dendrogram2

1 min read
Table of contents

DendroGramOfSenses2
For the 5th Poem of NaPoWriMo/NaPoGenMo 2025, DendroGramOfSenses2 contains rules and prompts coded in Python. This is done by having two shuffled arrays of subject matter and creating a Dendrogram that every branch represents the amount of words allowed in that Line. Each branch is then followed by the subject they must correspond to.
Dendrograms
Poetry
Sometimes it is stringing
Sometimes it is Orbital
Spicy in Nature
But Glowish Spiritual
Embodying the emptiness
Emptiness stays mildly spicy
With a pleasant scent
That occasionally flinging
The spiritual presence
As it streams
Motioning its Orbits
To block smellways
To masked its presence
To alter its freeze
Moving with new ease
Altering the various pitches
Opening now the smellways
In tune with itself
Outwards with depth
Orbital stealth
Code
import plotly.figure_factory as ff
import random as rd
import numpy as np
X = np.random.rand(10, 12)
Y = np.random.rand(10, 12)
senses = ['Taste','Smell','Touch','Sight','Sound','Sixth Sense','Aura','Planetary','InterPersonal','Microscopic']
rd.shuffle(senses)
#double up some of the senses
sensesSliced = senses[1:8] + senses[1:4]
sensesSliced2 = senses[4:10] +senses[4:8]
fig = ff.create_dendrogram(X,orientation='right',labels=sensesSliced)
fig1 = ff.create_dendrogram(Y,orientation='right',labels=sensesSliced2)
fig.show()
fig1.show()
0
Subscribe to my newsletter
Read articles from Kofi / Illestpreacha directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
