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