|
@@ -59,7 +59,8 @@ const renderPokemonTileCluster = (area, { mu, nu, proportion }, scores) => {
|
|
|
["", nu[1].toFixed(2) + ","],
|
|
|
["", nu[2].toFixed(2) + ")"],
|
|
|
["I =", scores.inertia.toFixed(2)],
|
|
|
- ["V =", scores.muNuAngle.toFixed(2) + "°"],
|
|
|
+ ["V =", scores.variance.toFixed(2)],
|
|
|
+ ["Φ =", scores.muNuAngle.toFixed(2) + "°"],
|
|
|
["N =", scores.size],
|
|
|
["L =", scores.lightness.toFixed(2)],
|
|
|
["C =", scores.chroma.toFixed(2)],
|
|
@@ -130,7 +131,8 @@ 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.variance.toFixed(2)],
|
|
|
+ ["Φ =", scores.total.muNuAngle.toFixed(2) + "°"],
|
|
|
["N =", size],
|
|
|
["L =", scores.total.lightness.toFixed(2)],
|
|
|
["C =", scores.total.chroma.toFixed(2)],
|