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

fr.inria.edelweiss.kgraph.stats.data.SimpleAverage Maven / Gradle / Ivy

The newest version!
package fr.inria.edelweiss.kgraph.stats.data;

import fr.inria.edelweiss.kgram.api.core.Node;

/**
 * Simple average, number of all triples/number of distinct resources
 *
 * @author Fuqi Song, Wimmics Inria I3S
 * @date 10 juin 2014
 */
public class SimpleAverage extends BaseMap {

    @Override
    public int get(Node n) {
        return total / size();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy