Censoring
Details
Examples
open all close allBasic Examples (2)
Use with right-censored data in SurvivalDistribution:
data = Censoring[{5, 10, 15, 20}, {0, 0, 1, 0}]Plot[SurvivalFunction[SurvivalDistribution[data], x], {x, 0, 25}, Exclusions -> None]Convert tables with censoring indicators to interval notation:
Censoring[{5, 10, 15, 20, 25}, {0, 1, -1, 0, 1}]Scope (6)
Convert a right-censored observation to interval notation:
Censoring[5, 1]Alternatively, use Right:
Censoring[5, Right]Work with left-censored observations:
Censoring[5, -1]Alternatively, use Left:
Censoring[5, Left]The observation is unchanged in the absence of censoring:
Censoring[5, 0]You can also specify no censoring as None:
Censoring[5, None]Thread a single censoring indicator over a list of events:
Censoring[{10, 15, 20, 25}, 1]Use a mix of censoring indicators:
Censoring[{10, 15, 20, 25}, {0, 1, -1, 0}]Interval-censored observations are converted as well:
Table[Censoring[{10, 15}, i], {i, {Left, None, Right}}]Possible Issues (1)
A dataset of length 2 is treated as a single interval-censored observation:
t = {10, 15};One right-censored observation results in:
Censoring[t, Right]If two observations were intended, use two indicators:
Censoring[t, {Right, Right}]History
Text
Wolfram Research (2010), Censoring, Wolfram Language function, https://reference.wolfram.com/language/ref/Censoring.html.
CMS
Wolfram Language. 2010. "Censoring." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/Censoring.html.
APA
Wolfram Language. (2010). Censoring. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Censoring.html
BibTeX
@misc{reference.wolfram_2026_censoring, author="Wolfram Research", title="{Censoring}", year="2010", howpublished="\url{https://reference.wolfram.com/language/ref/Censoring.html}", note=[Accessed: 12-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_censoring, organization={Wolfram Research}, title={Censoring}, year={2010}, url={https://reference.wolfram.com/language/ref/Censoring.html}, note=[Accessed: 12-June-2026]}