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

org.djutils.stats.ConfidenceInterval Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy