Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/source/api/distributions/transforms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ Transform instances are the entities that should be used in the
simplex
logodds
log_exp_m1
ordered
ordered_univariate
ordered_multivariate
log
sum_to_1
circular
Expand Down
9 changes: 0 additions & 9 deletions pymc/distributions/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"logodds",
"Interval",
"log_exp_m1",
"ordered",
"univariate_ordered",
"multivariate_ordered",
"log",
Expand Down Expand Up @@ -370,14 +369,6 @@ def extend_axis_rev(array, axis):
Instantiation of :class:`pymc.distributions.transforms.Ordered`
for use in the ``transform`` argument of a multivariate random variable."""

# backwards compatibility
ordered = Ordered(ndim_supp=1)
ordered.__doc__ = """
Instantiation of :class:`pymc.distributions.transforms.Ordered`
for use in the ``transform`` argument of a random variable.
This instantiation is for backwards compatibility only.
Please use `univariate_ordererd` or `multivariate_ordered` instead."""

log = LogTransform()
log.__doc__ = """
Instantiation of :class:`pymc.logprob.transforms.LogTransform`
Expand Down