NaPoWriMo+GenMo2025_Dendo3

DendroGramOfSenses3

For the 13th Poem of NaPoWriMo/NaPoGenMo 2025, DendroGramOfSenses3 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

Squinting To See
Sounds Are Loud
Sounds are Around
Twisting Inner Abilities
As the images are Small
Adding to the Internal Pressures
From these Aura Creatures
Emitting its Inner Thoughts
That contains Spiky Textures
To See

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()
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

Kofi / Illestpreacha
Kofi / Illestpreacha