All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cmu.tetrad.algcomparison.statistic.Statistics Maven / Gradle / Ivy

There is a newer version: 7.6.4
Show newest version
package edu.cmu.tetrad.algcomparison.statistic;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * A list of statistics and their utility weights.
 *
 * @author josephramsey
 */
public class Statistics {
    private final List statistics = new ArrayList<>();
    private final Map weights = new HashMap<>();

    public Statistics() {
    }

    /**
     * Adds a statistic.
     *
     * @param statistic The statistic to add.
     */
    public void add(Statistic statistic) {
        this.statistics.add(statistic);
    }

    /**
     * Sets the utility weight of the statistic by the given name.
     *
     * @param abbrebiation The abbreviation set in the statistic.
     * @param weight       The utility weight for that statistic.
     */
    public void setWeight(String abbrebiation, double weight) {
        if (weight < 0 || weight > 1) throw new IllegalArgumentException("Weight must be in [0, 1]: " + weight);

        boolean set = false;

        for (Statistic stat : this.statistics) {
            if (stat.getAbbreviation().equals(abbrebiation)) {
                this.weights.put(stat, weight);
                set = true;
            }
        }

        if (!set) {
            throw new IllegalArgumentException("No statistic has been added with that abbreviation: "
                    + abbrebiation);
        }
    }

    /**
     * Return the list of statistics.
     *
     * @return A copy of this list, in the order added.
     */
    public List getStatistics() {
        return new ArrayList<>(this.statistics);
    }

    /**
     * The utility weight for the statistic.
     *
     * @param statistic The statistic.
     * @return The utility weight for it.
     */
    public double getWeight(Statistic statistic) {
        return this.weights.getOrDefault(statistic, 0.0);
    }

    /**
     * The number of statistics.
     *
     * @return This number.
     */
    public int size() {
        return this.statistics.size();
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy