Created
April 12, 2021 09:17
-
-
Save ParthNipunDave/69dd66412d9c180fe0e72aa7f94285f1 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['TechSupport'].unique() | |
| # Value Count and visualization | |
| print("Tech Support\n",data["TechSupport"].value_counts()) | |
| sns.countplot(data=data,x='TechSupport') | |
| # Tech Support Wise Churn Rate | |
| sns.countplot(data=data,x='TechSupport',hue="Churn") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment