Example usage for org.apache.commons.math3.random EmpiricalDistribution DEFAULT_BIN_COUNT

List of usage examples for org.apache.commons.math3.random EmpiricalDistribution DEFAULT_BIN_COUNT

Introduction

In this page you can find the example usage for org.apache.commons.math3.random EmpiricalDistribution DEFAULT_BIN_COUNT.

Prototype

int DEFAULT_BIN_COUNT

To view the source code for org.apache.commons.math3.random EmpiricalDistribution DEFAULT_BIN_COUNT.

Click Source Link

Document

Default bin count

Usage

From source file:adams.data.distribution.Empirical.java

/**
 * Adds options to the internal list of options.
 *///from www  .  j a  va  2 s. c o m
@Override
public void defineOptions() {
    super.defineOptions();

    m_OptionManager.add("bin-count", "binCount", EmpiricalDistribution.DEFAULT_BIN_COUNT, 1, null);
}