AUTEUR v0.1.6
AUTEUR v0.1.6

y-statistic:

import { Draft, Threshold } from "auteur";

const [yThreshold, setYThreshold] = React.useState(d3.mean(coffee, d => d.Flavor));
const [yStatistic, setYStatistic] = useState("mean");

const draft = useRef(new Draft());
const newYThreshold = useRef(new Threshold("Flavor", yStatistic, "leq"));

newYThreshold.current.selection(scatterpoints);

draft.current.layer(ref.current)
            .x("Aroma", xScale)
            .y("Flavor", yScale)
            .exclude({"name":["regression", "label"]})
            .augment(newYThreshold.current.getAugs());
View raw data