Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

🤖 Artificial Intelligence
☁️ Cloud and Infrastructure
💾 Data and Databases
💼 Professional Skills
🎯 Programming and Development
🔒 Security and Networking
📚 Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 0
0/5 XP
GitHub
© 2026 CheatGrid™. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Survival Analysis Cheat Sheet

Survival Analysis Cheat Sheet

Back to Data Science
Updated 2026-03-19
Next Topic: Time Series Analysis Cheat Sheet

Survival analysis is a branch of statistics focused on analyzing time-to-event data, where the outcome is the time until a specific event occurs (death, failure, churn, recovery). Originating in biomedical research to model patient lifespans, survival analysis has expanded across clinical trials, reliability engineering, customer retention analytics, and social sciences. The key feature that distinguishes survival analysis from standard regression is its ability to handle censored observations—cases where the event has not yet occurred by the end of the study period. Unlike traditional methods that discard incomplete data, survival analysis incorporates partial information through specialized estimators and models, providing unbiased estimates even when exact event times are unknown for some subjects. The central insight is that knowing someone hasn't experienced the event by time t is itself valuable information.

What This Cheat Sheet Covers

This topic spans 26 focused tables and 125 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Core ConceptsTable 2: Censoring TypesTable 3: Truncation TypesTable 4: Non-Parametric EstimationTable 5: Survival Curve Comparison TestsTable 6: Cox Proportional Hazards ModelTable 7: Cox Model ExtensionsTable 8: Ties Handling MethodsTable 9: Model DiagnosticsTable 10: Parametric Survival ModelsTable 11: Accelerated Failure Time ModelsTable 12: Advanced Modeling FrameworksTable 13: Model Evaluation MetricsTable 14: Specialized TechniquesTable 15: Software and LibrariesTable 16: Clinical and Applied Use CasesTable 17: Absolute Risk and PredictionTable 18: Sample Size and PowerTable 19: Interval EstimationTable 20: Machine Learning IntegrationTable 21: Model Building StrategiesTable 22: Assumptions and ViolationsTable 23: Notation and TerminologyTable 24: Advanced DiagnosticsTable 25: Special Data StructuresTable 26: Key Relationships

Table 1: Core Concepts

ConceptExampleDescription
Survival function
S(t) = P(T > t)
• Probability that the event has not occurred by time t
• decreases from 1 at t=0 toward 0 as time increases.
Hazard function
h(t) = \lim_{\Delta t \to 0} \frac{P(t \leq T < t + \Delta t \mid T \geq t)}{\Delta t}
• Instantaneous rate of event occurrence at time t given survival up to t
• describes risk intensity at each moment.
Cumulative hazard
H(t) = \int_0^t h(u) du
• Total accumulated hazard from time 0 to t
• related to survival via S(t) = e^{-H(t)}.

More in Data Science

  • Streamlit Data Application Framework Cheat Sheet
  • Time Series Analysis Cheat Sheet
  • AB Testing and Online Experimentation Cheat Sheet
  • Design of Experiments (DOE) Cheat Sheet
  • Network Analysis with NetworkX Cheat Sheet
  • R for Data Science and Tidyverse Cheat Sheet
View all 47 topics in Data Science