Skip to main content

Command Palette

Search for a command to run...

MinaCoding2025_Message

Statistically Skewed

Updated
1 min read
MinaCoding2025_Message

SkewedNarratives

For MinaCoding2025 Prompt 12: Message, SkewedNarratives is coded in Python & HydraVideoSynth representing how skewed narratives can affect perspective and knowledge transfer.

Poem

Skewed to the Hue
Skewed to the left
For Some Depth
Skewed to the right
To take its decided flight
Skewed to the Hue
For this is how the Story Flew

Video

Code

HydraVideoSynth

s0.initScreen()

src(s0).modulatePixelate(src(s0).pixelate(85,95)).modulateRotate(src(s0).colorama()).out()

Python

from matplotlib import pyplot as plt
import numpy as np

# generate 2 2D arrays of shape (6, 6) with random integers

#Right Skewed
Skewed_R = np.random.randint(12, 23, (8,8))

#Left Skewed
Skewed_L = np.random.randint(3, 18, (6,6))

# Creating histogram

#blues with  the left Skew
plt.hist(Skewed_L,
color = ["skyblue","blue","teal","cadetblue","aliceblue","azure"], 
bins='auto', label = 'skewed left')

#red with the right Skew
plt.hist(Skewed_R,
color = ["salmon","mistyrose","darkred","red","tomato","indianred","orangered",
"maroon"], bins='auto', label = 'skewed Right')  


# Show plot
plt.title("Skewed")
plt.show()

MinaCoding2025

Part 28 of 40

Submissions for MinaCoding 2025: https://minacoding.online/theme

Up next

MinaCoding2025_Letter

Letter as Design