Created
April 12, 2021 08:47
-
-
Save ParthNipunDave/820d1142656406ffb3db9aa2fa62894b 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['OnlineBackup'].unique() | |
| # Value Count and Visualization | |
| print("Online Backup\n",data['OnlineBackup'].value_counts()) | |
| sns.countplot(data['OnlineBackup']) | |
| # Online Backup WIse | |
| sns.countplot(data=data,x='OnlineBackup',hue='Churn') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment