|
@@ -60,8 +60,8 @@ const renderPokemonTileCluster = (area, { mu, nu, proportion }, scores) => {
|
|
|
["I =", scores.inertia.toFixed(2)],
|
|
|
["L =", scores.lightness.toFixed(2)],
|
|
|
["C =", scores.chroma.toFixed(2)],
|
|
|
- ["γ = ", scores.importance.toFixed(2)],
|
|
|
- ["V =", scores.muNuAngle.toFixed(2)],
|
|
|
+ ["β = ", scores.importance.toFixed(2)],
|
|
|
+ ["V =", scores.muNuAngle.toFixed(2) + "°"],
|
|
|
["N =", scores.size],
|
|
|
]
|
|
|
.map(([lbl, val]) => renderStatPair(lbl, val))
|
|
@@ -132,7 +132,7 @@ const renderPokemonTile = (kind, name, { total: { mu, nu, size }, clusters }, sc
|
|
|
)}
|
|
|
${ renderStatRow(
|
|
|
[ ["I =", scores.total.inertia.toFixed(2)],
|
|
|
- ["V =", scores.total.muNuAngle.toFixed(2)],
|
|
|
+ ["V =", scores.total.muNuAngle.toFixed(2) + "°"],
|
|
|
["N =", size],
|
|
|
["L =", scores.total.lightness.toFixed(2)],
|
|
|
["C =", scores.total.chroma.toFixed(2)],
|