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.
Example
Section titled “Example”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]);