From e817003a8f292089db6941026b6a519aee0831f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Sat, 25 Jan 2025 21:09:19 +0100 Subject: [PATCH] Update t.py --- skpro/distributions/t.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skpro/distributions/t.py b/skpro/distributions/t.py index 5770bd08..577b47e0 100644 --- a/skpro/distributions/t.py +++ b/skpro/distributions/t.py @@ -16,13 +16,13 @@ class TDistribution(BaseDistribution): Parameters ---------- mean : float or array of float (1D or 2D) - median of the t-distribution distribution. + median of the t-distribution. Same as the mean, if it exists. sd : float or array of float (1D or 2D), must be positive scale parameter of the t-distribution. Same as the standard deviation in the limit of large degrees of freedom. df : float or array of float (1D or 2D), must be positive - Degrees of freedom of the t-distribution + Degrees of freedom of the t-distribution. index : pd.Index, optional, default = RangeIndex columns : pd.Index, optional, default = RangeIndex