Assessor

class hokohoko.entities.Assessor(parameters=None)

Bases: object

This is the base class for an assessor. It provides the following base attributes:

parameters      The parameter string given for this Assessor.

Initialises the Assessor, saving the given parameters.

Parameters

parameters (str) – The parameters passed on configuration.

analyse(data)

Analyse Hokohoko’s benchmarking results.

Parameters

data (list[multiprocessing.pool.AsyncResult[tuple[int, hokohoko.entities.Account]]]) – The data to analyse. This is provided as an Account per Period.

Important

This must be overridden.