Expected Lifetime: Churn Formula vs. Experience Data

I am analyzing data for a subscription based company. I.e they sell a service in exchange for monthly payment. I would like to conduct an analysis and come up with an estimate of the average lifetime (in months) of a customer. I have approximately 6 years of data including date of enrollment and date of cancellation. N is fairly large 70k, 80k, 100k, 115k, 135k, 161k enrolled clients in the 6 years, respectively.

I have seen articles such as this one that describe how to calculate average lifetime by taking $$\frac{1}{\text{churn rate}} = \frac{1}{\text{1-retention rate}}.$$

I don't entirely understand why this formula holds,but my understanding is that this is a problistic calculation. Someone on my team calculated an average lifetime of 71 months using this methodology.

Out of curiosity, I wanted to compare this to our experience, so I computed the following in R

data %%
  filter(Cancelled == TRUE) %%  #--ignore active policies 
  mutate(duration = 12*(as.yearmon(CancelRequestDate) - as.yearmon(EnrollDate))) %%
  pull(duration) %%
  mean()
 
 dataAvgPetMo
  24.52419

  

These two numbers are very different. Could anyone enlighten me as to why, and perhaps offer some guidance for how to interpret or refine this study to come up with a reasonable estimate of average lifetime.


new to this community. edits and advice welcome :)

Topic churn

Category Data Science


The average lifetime is calculated simply by using the geometric distribution's mean formula. If probability of churn in any month (or simply percent churned in a month) is 0.2, then the expected life time of a customer is 1/0.2 = 5 months.

Here you are filtering the unchurned customer at the first step (filter(Cancelled == "TRUE")) and therefore you get the average lifetime of the churned customers in your sample rather than the average lifetime of any customer.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.