Type Alias StatSummary

StatSummary: {
    best: number;
    count: number;
    mean: number;
    median: number;
    second: number;
    worst: number;
}

A summary of the statistics of a population of genomes.

This object contains the count of genomes in the population, the best and second best values, the mean, median, and worst values.

Type declaration

  • Readonlybest: number

    The best value in the population.

  • Readonlycount: number

    The count of genomes in the population.

  • Readonlymean: number

    The mean value in the population.

  • Readonlymedian: number

    The median value in the population.

  • Readonlysecond: number

    The second best value in the population.

  • Readonlyworst: number

    The worst value in the population.