Public
Edited
May 7, 2024
Insert cell
Insert cell
Plot.plot({
axis: null,
height: 2*width*9/16,
margin: 10,
marginLeft: 40,
marginRight: 120,
marks: [
Plot.tree(ParrotsEmotionsByGroup)
]
})
Insert cell
ParrotsEmotionsByGroup = WikipediasParrottsEmotionsByGroups
.trim()
.toLowerCase()
.replace(/lust\/sexual desire/, "lust")
.replace(/ \(fear\)/, "")
.split("\n")
.map(splitLevels)
.map(repeatLevel0)
.flatMap(splitLevel3)
.map(k => k.join("/"))
Insert cell
splitLevels = l => l.split("\t") // split each line into its levels
Insert cell
repeatLevel0 = { // repeat level 0 when needed so each entry has 3 levels
let l0;
return (l) => {
if (l.length === 3) {
l0 = l[0];
return l;
}
return [l0, ...l];
}
}
Insert cell
splitLevel3 = ([l0, l1, l2]) => // split level 3 into its own observations
l2
.split(" · ")
.map(l2 => [l0, l1, l2])
Insert cell
// verbatim copy of the body of the table https://en.wikipedia.org/wiki/Emotion_classification#Parrott's_emotions_by_groups
WikipediasParrottsEmotionsByGroups = `Love Affection Adoration · Fondness · Liking · Attraction · Caring · Tenderness · Compassion · Sentimentality
Lust/Sexual desire Desire · Passion · Infatuation
Longing Longing
Joy Cheerfulness Amusement · Bliss · Gaiety · Glee · Jolliness · Joviality · Joy · Delight · Enjoyment · Gladness · Happiness · Jubilation · Elation · Satisfaction · Ecstasy · Euphoria
Zest Enthusiasm · Zeal · Excitement · Thrill · Exhilaration
Contentment Pleasure
Pride Triumph
Optimism Eagerness · Hope
Enthrallment Enthrallment · Rapture
Relief Relief
Surprise Surprise Amazement · Astonishment
Anger Irritability Aggravation · Agitation · Annoyance · Grouchy · Grumpy · Crosspatch
Exasperation Frustration
Rage Anger · Outrage · Fury · Wrath · Hostility · Ferocity · Bitterness · Hatred · Scorn · Spite · Vengefulness · Dislike · Resentment
Disgust Revulsion · Contempt · Loathing
Envy Jealousy
Torment Torment
Sadness Suffering Agony · Anguish · Hurt
Sadness Depression · Despair · Gloom · Glumness · Unhappiness · Grief · Sorrow · Woe · Misery · Melancholy
Disappointment Dismay · Displeasure
Shame Guilt · Regret · Remorse
Neglect Alienation · Defeatism · Dejection · Embarrassment · Homesickness · Humiliation · Insecurity · Insult · Isolation · Loneliness · Rejection
Sympathy Pity · Mono no aware · Sympathy
Fear Horror Alarm · Shock · Fear · Fright · Horror · Terror · Panic · Hysteria · Mortification
Nervousness Anxiety · Suspense · Uneasiness · Apprehension (fear) · Worry · Distress · Dread`
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more