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