Created
April 12, 2021 09:43
-
-
Save ParthNipunDave/6ebd5327cde56c5be1598e504bbb63c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Unique Values | |
| data['Contract'].unique() | |
| # Value Count and visualization | |
| print("Contract\n",data["Contract"].value_counts()) | |
| sns.countplot(data=data,x="Contract") | |
| # Contract Wise Churn Rate | |
| sns.countplot(data=data,x="Contract",hue="Churn") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment