-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (103 loc) · 5.73 KB
/
index.html
File metadata and controls
104 lines (103 loc) · 5.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en-US" xml:lang="en-US" itemscope="" itemtype="http://schema.org/WebSite">
<head>
<meta charset="UTF-8">
<meta name="description" content="Statistics of words in Eminem songs">
<meta name="keywords" content="statistic, Eminem, Marshall Bruce Mathers III, B.Rabbit, Slim Shady, music,
music words, vocabulary">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta name="author" content="Ihor Vysotskyi">
<link rel="icon" type="image/x-icon" href="public/logo/logo32.png">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="brabbit">
<link rel="alternate" type="application/rss+xml" title="RSS for brabbit.com" href="https://www.brabbit.com/rss.xml">
<link rel="canonical" href="https://www.brabbit.com/">
<link rel="stylesheet" type="text/css" href="public/css/main.css"/>
<title>brabbit</title>
<script src="public/js/main.js"></script>
<script src="public/js/utils.js"></script>
<script src="public/data.js"></script>
</head>
<body onload="onLoad()">
<dialog id="findWordDialog">
<p>Please press <kbd>Ctrl</kbd> + <kbd>F</kbd> and type word.</p>
<form method="dialog">
<button>OK</button>
</form>
</dialog>
<header>
<img src="public/logo/logo32.png" alt="Logo">
<p><b>brabbit</b> - Statistics of words in Eminem songs</p>
<h1>Eminem</h1>
</header>
<main>
<div id="container">
<ul id="statistic">
<li><span id="unique"><b>Unique</b>: <span id="unique-val">load...</span></span></li>
<li><span id="total"><b>Total</b>: <span id="total-val">load...</span></span></li>
<li><span id="uniqueRatio">
<b>Unique ratio<sup><a href="#uniqueRatio-ref">[1]</a></sup></b>:
<span id="uniqueRatio-val">load...</span></span>
</li>
<li><span id="nwi"><b>NWI<sup><a href="#nwi-ref">[2]</a></sup></b>: <span id="nwi-val">load...</span></span></li>
<li><span id="evolution"><b>Evolution over Time<sup><a href="#evolution-ref">[3]</a></sup></b>: <span id="evolution-val">load...</span></span></li>
<li><span id="syllables">
<b>Syllable<sup><a href="#syllable-ref">[4]</a></sup></b>:
<span id="syllables-val">load...</span></span>
</li>
<li><span id="character"><b>Character<sup><a href="#character-ref">[5]</a></sup></b>:
<span id="character-val">load...</span></span>
</li>
<li><span id="pos"><b>POS<sup><a href="#pos-ref">[6]</a></sup></b>: <span id="pos-val">load...</span></span></li>
<li><span id="top3"><b>Top3 word</b>: <span id="top3-val">load...</span></span></li>
</ul>
<div>
<button onclick="mixWords();">Mix</button>
<button onClick="openDialogBy('findWordDialog');">Find word</button>
</div>
<small><i id="text">load...</i></small>
<p id="tracks">load...</p>
</div>
<h3>References:</h3>
<ol id="references">
<li id="uniqueRatio-ref">
<a href="#uniqueRatio" aria-label="Back to text" title="Back to text">↑</a>
<span><b>Unique Words vs. Total Words</b>: This classic statistic shows the ratio of unique words used to the
total number of words in Eminem's discography (or a specific album). This can be compared to other
rappers or artists to see his vocabulary richness.</span>
</li>
<li id="nwi-ref">
<a href="#nwi" aria-label="Back to text" title="Back to text">↑</a>
<span><b>New Word Interval (NWI)</b>: The frequency of new words. Similar
to the stat achieved by Guinness World Records it the average number of words between each
unique word Eminem uses. A lower NWI indicates a denser vocabulary usage.</span>
</li>
<li id="evolution-ref">
<a href="#evolution" aria-label="Back to text" title="Back to text">↑</a>
<span><b>Evolution over Time</b>: The changes in Eminem's vocabulary statistics over his career.
Did his NWI decrease, indicating a more diverse vocabulary, or has it remained consistent.</span>
</li>
<li id="syllable-ref">
<a href="#syllable" aria-label="Back to text" title="Back to text">↑</a>
<span><b>Syllable Count</b>: The distribution of words by syllable count. Does Eminem favor short,
punchy words for emphasis, or use a wider range for flow and complexity.</span>
</li>
<li id="character-ref">
<a href="#character" aria-label="Back to text" title="Back to text">↑</a>
<span><b>Character Count</b>: Similar to syllables, if Eminem leans towards shorter, more concise words
or incorporates a variety of word lengths for lyrical richness.</span>
</li>
<li id="pos-ref">
<a href="#pos" aria-label="Back to text" title="Back to text">↑</a>
<span><b>Part-of-Speech Analysis</b>: The distribution of parts of speech (nouns, verbs,
adjectives etc.) This can show lyrical style, focus on storytelling vs. emotions, or aggressiveness
vs. introspection.</span>
</li>
</ol>
</main>
<footer>
<hr>
<p id="version"></p>
<p>Made by <a href="https://github.com/Ig-v-k">Ig-v-k</a>, 2024</p>
</footer>
</body>
</html>