org.djutils.stats.ConfidenceInterval Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of djutils-stats Show documentation
Show all versions of djutils-stats Show documentation
DJUTILS statistical and data storage utilities
package org.djutils.stats;
/**
* ConfidenceInterval lists the three type of confidence intervals: two one-sided and one two-sided interval.
*
* Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See DJUNITS License.
*
* @author Alexander Verbraeck
*/
public enum ConfidenceInterval
{
/** LEFT_SIDE_CONFIDENCE refers to the left side confidence. */
LEFT_SIDE_CONFIDENCE,
/** BOTH_SIDE_CONFIDENCE refers to both sides of the confidence. */
BOTH_SIDE_CONFIDENCE,
/** RIGTH_SIDE_CONFIDENCE refers to the right side confidence. */
RIGHT_SIDE_CONFIDENCE;
}