Skip to content

SCAGNOSTIC_NAMES

const SCAGNOSTIC_NAMES: readonly ["outlying", "skewed", "clumpy", "sparse", "striated", "convex", "skinny", "stringy", "monotonic"];

Defined in: scagnostics/index.ts:50

The nine scagnostic names, in their canonical order.

import { scagnostics, SCAGNOSTIC_NAMES } from "@saehrimnir/sickle";
SCAGNOSTIC_NAMES;
// ["outlying", "skewed", "clumpy", "sparse", "striated",
// "convex", "skinny", "stringy", "monotonic"]
const s = scagnostics(projection);
for (const name of SCAGNOSTIC_NAMES) console.log(name, s[name]);