diff --git a/.all-contributorsrc b/.all-contributorsrc index b26a6c5fb..cfc0f30b2 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -120,6 +120,15 @@ "doc", "test" ] + }, + { + "login": "julian-fong", + "name": "Julian Fong", + "avatar_url": "https://avatars.githubusercontent.com/u/44014224?v=4", + "profile": "https://github.com/julian-fongi", + "contributions": [ + "code" + ] } ] } diff --git a/skpro/survival/compose/_reduce_cond_unc.py b/skpro/survival/compose/_reduce_cond_unc.py index 66c754e25..b7027123e 100644 --- a/skpro/survival/compose/_reduce_cond_unc.py +++ b/skpro/survival/compose/_reduce_cond_unc.py @@ -13,7 +13,7 @@ class ConditionUncensored(BaseProbaRegressor): Simple baseline reduction strategy for predictive survival analysis. Fits a probabilistic regressor on X padded with censoring information C, - in predict applies the fitted regressor to X padded with 0 (non-censord). + in predict applies the fitted regressor to X padded with 0 (non-censored). In ``fit``, passes column concat of ``X`` and ``C`` to ``regressor.fit``.