Uses of Interface
org.djutils.stats.summarizers.BasicTallyInterface
| Package | Description |
|---|---|
| org.djutils.stats.summarizers |
Data Summarizers accumulate values and provide statistical summaries thereof.
|
| org.djutils.stats.summarizers.event |
Event listening and event producing data summarizers.
|
-
Uses of BasicTallyInterface in org.djutils.stats.summarizers
Subinterfaces of BasicTallyInterface in org.djutils.stats.summarizers Modifier and Type Interface Description interfaceTallyInterfaceThe Tally interface defines the methods to be implemented by a tally object, which ingests a series of values and provides mean, standard deviation, etc.interfaceTimestampTallyInterfaceThe TimestampedTally interface defines the methods that a timestamped tally should implement in addition to the standard weighted tally.interfaceWeightedTallyInterfaceThe WeightedTally interface defines the methods that a time-weighted tally should implement.Classes in org.djutils.stats.summarizers that implement BasicTallyInterface Modifier and Type Class Description classTallyThe Tally class ingests a series of values and provides mean, standard deviation, etc.classTimestampWeightedTallyThe TimestampWeightedTally class defines a time-weighted tally based on timestamped data.classWeightedTallyThe WeightedTally class defines a statistical tally. -
Uses of BasicTallyInterface in org.djutils.stats.summarizers.event
Classes in org.djutils.stats.summarizers.event that implement BasicTallyInterface Modifier and Type Class Description classEventBasedTallyThe EventBasedTally class ingests a series of values and provides mean, standard deviation, etc.classEventBasedTimestampWeightedTallyThe TimestampWeightedTally class defines a time-weighted tally based on timestamped data.classEventBasedWeightedTallyThe EventBasedWeightedTally class defines a time-weighted tally that can be notified with weights and values using the EventListenerInterface.