@visactor/vdataset
Version:
data processing tool
25 lines (24 loc) • 599 B
TypeScript
import type { Transform } from '.';
export interface IBoxplotOptions {
groupField?: string | string[];
field: string;
includeValues?: boolean;
whiskers?: number | number[];
outputNames?: {
key?: string;
count?: string;
mean?: string;
q1?: string;
median?: string;
q3?: string;
iqr?: string;
min?: string;
max?: string;
lowerWhisker?: string;
upperWhisker?: string;
outliers?: string;
values?: string;
};
}
export declare const boxplot: Transform;
export default boxplot;