import pandas as pd
df = pd.read_csv("data/ml-ready/cdi-customer-churn.csv")
print(df.head()) customer_id tenure_months monthly_spend support_calls contract_type \
0 C100000 6 45.85 2 one-year
1 C100001 17 69.95 1 month-to-month
2 C100002 64 70.98 0 month-to-month
3 C100003 59 33.02 2 month-to-month
4 C100004 8 70.74 0 month-to-month
autopay churn
0 no 0
1 yes 1
2 no 1
3 yes 0
4 yes 1