blob: 25b5c51a6dbb33c0c722fc397c97caac86057fce [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.statistics.distribution;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
/**
* Test cases for LogisticsDistribution.
*/
class LogisticDistributionTest extends ContinuousDistributionAbstractTest {
//-------------- Implementations for abstract methods ----------------------
@Override
public LogisticDistribution makeDistribution() {
return new LogisticDistribution(2, 5);
}
@Override
public double[] makeCumulativeTestPoints() {
return new double[] {
-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5
};
}
@Override
public double[] makeDensityTestValues() {
return new double[] {
0.03173698, 0.03557889, 0.03932239, 0.04278194, 0.04575685, 0.04805215,
0.04950331, 0.05000000, 0.04950331, 0.04805215, 0.04575685
};
}
@Override
public double[] makeCumulativeTestValues() {
return new double[] {
0.1978161, 0.2314752, 0.2689414, 0.3100255, 0.3543437, 0.4013123,
0.4501660, 0.5000000, 0.5498340, 0.5986877, 0.6456563
};
}
@Override
public double[] makeCumulativePrecisionTestPoints() {
return new double[] {-197, -203};
}
@Override
public double[] makeCumulativePrecisionTestValues() {
// These were created using WolframAlpha
return new double[] {5.188951605054656e-18, 1.5628821893349888e-18};
}
@Override
public double[] makeSurvivalPrecisionTestPoints() {
return new double[] {197, 203};
}
@Override
public double[] makeSurvivalPrecisionTestValues() {
// These were created using WolframAlpha
return new double[] {1.1548224173015786e-17, 3.478258278776922e-18};
}
//-------------------- Additional test cases -------------------------------
@Test
void testExtremeLogDensity() {
final double scale = 2.5;
final LogisticDistribution dist = new LogisticDistribution(0, scale);
final double x = 1e160;
Assertions.assertEquals(0.0, dist.density(x));
final double expected = -Math.log(scale) - x / scale;
Assertions.assertEquals(expected, dist.logDensity(x), Math.abs(expected) * 1e-14);
}
@Test
void testInverseCumulativeProbabilityExtremes() {
setInverseCumulativeTestPoints(new double[] {0, 1});
setInverseCumulativeTestValues(new double[] {Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY});
verifyInverseCumulativeProbabilities();
}
@Test
void testParametersAccessors() {
final LogisticDistribution dist = makeDistribution();
Assertions.assertEquals(2, dist.getLocation());
Assertions.assertEquals(5, dist.getScale());
}
@Test
void testConstructorPrecondition1() {
Assertions.assertThrows(DistributionException.class, () -> new LogisticDistribution(1, 0));
}
@Test
void testMeanAndVariance() {
final LogisticDistribution dist = makeDistribution();
// Constructor 'location' parameter = mean
Assertions.assertEquals(2.0, dist.getMean());
// Variance = (s^2 * pi^2) / 3
// Constructor 'scale' parameter = s
Assertions.assertEquals(5 * 5 * Math.PI * Math.PI / 3, dist.getVariance());
}
@Test
void testSupport() {
final LogisticDistribution dist = makeDistribution();
Assertions.assertEquals(Double.NEGATIVE_INFINITY, dist.getSupportLowerBound());
Assertions.assertEquals(Double.POSITIVE_INFINITY, dist.getSupportUpperBound());
Assertions.assertTrue(dist.isSupportConnected());
}
}