Skip to content

Instantly share code, notes, and snippets.

@alonsosilvaallende
Last active October 8, 2019 10:04
Show Gist options
  • Save alonsosilvaallende/1013faa85ba0f0d04c714e8253b8ddef to your computer and use it in GitHub Desktop.
Save alonsosilvaallende/1013faa85ba0f0d04c714e8253b8ddef to your computer and use it in GitHub Desktop.
Perfectly wrong prediction with the inverse function
from lifelines.utils import concordance_index
names = ['Alice', 'Bob', 'Carol', 'Dave', 'Eve']
events = [1, 2, 3, 4, 5]
preds = [1/event for event in events]
df = pd.DataFrame(data={'Churn dates': events, 'Predictions': preds}, index=names)
print(df)
print(f'Concordance index: {concordance_index(events, preds)}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment