Created
April 12, 2021 10:12
-
-
Save ParthNipunDave/8be47363a8a7b925dab57b5df8171b4d 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['PaymentMethod'].unique() | |
| # Value Count | |
| print("Payment Method \n",data["PaymentMethod"].value_counts()) | |
| plt.figure(figsize=(15,7)) | |
| sns.countplot(data=data,x='PaymentMethod') | |
| #Payment Wise | |
| plt.figure(figsize=(15,7)) | |
| sns.countplot(data=data,x='PaymentMethod',hue="Churn") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment