From 460ae6f8193f8448baf3888ba93c7119b9ea9da4 Mon Sep 17 00:00:00 2001 From: pbrod Date: Sun, 1 Jan 2017 03:14:23 +0100 Subject: [PATCH] Fixed a bug --- wafo/stats/estimation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wafo/stats/estimation.py b/wafo/stats/estimation.py index 53625a4..464cea7 100644 --- a/wafo/stats/estimation.py +++ b/wafo/stats/estimation.py @@ -1527,7 +1527,7 @@ class FitDistribution(rv_frozen): 'P-value is on the conservative side (i.e. too large) due to' + ' ties in the data!') - T = self.dist.nlogps(theta, x) + T = self._nlogps(theta, x) n = len(x) np1 = n + 1