Skip to content

Commit 2122e2a

Browse files
authored
Swap descriptions of truncated and censored distributions (#655)
* Swap descriptions of truncated & censored distributions * Swap descriptions of truncated and censored distributions
1 parent 6b122a3 commit 2122e2a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/distributions/gallery/censored.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ Normal(0, 1).plot_cdf(alpha=0.5);
9090
9191
**Related Distributions:**
9292
93-
- [Truncated](truncated.md) - In a truncated distribution, values outside the range are set to the nearest bound, while in a censored distribution, they are not recorded.
93+
- [Truncated](truncated.md) - In a truncated distribution, values outside the range are not recorded, while in a censored distribution, they are set to the nearest bound.
9494
9595
```
9696

9797
## References
9898

99-
- Wikipedia - [Censored distribution](https://en.wikipedia.org/wiki/Censoring_(statistics))
99+
- Wikipedia - [Censored distribution](https://en.wikipedia.org/wiki/Censoring_(statistics))

docs/distributions/gallery/truncated.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ Gamma(mu=2, sigma=1).plot_cdf();
8989
9090
**Related Distributions:**
9191
92-
- [Censored](censored.md) - In a censored distribution, values outside the range are not recorded, while in a truncated distribution, they are set to the nearest bound.
92+
- [Censored](censored.md) - In a censored distribution, values outside the range are set to the nearest bound, while in a truncated distribution, they are not recorded.
9393
- [TruncatedNormal](truncated_normal.md) - A truncated normal distribution is a normal distribution that has been restricted to a specific range.
9494
9595
```
9696

9797
## References
9898

99-
- Wikipedia - [Truncated distribution](https://en.wikipedia.org/wiki/Truncated_distribution)
99+
- Wikipedia - [Truncated distribution](https://en.wikipedia.org/wiki/Truncated_distribution)

0 commit comments

Comments
 (0)