Created
April 12, 2021 08:43
-
-
Save ParthNipunDave/7e84c7d26b0d73478b263d16c777adfa 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
| # Unqiue Value | |
| data['OnlineSecurity'].unique() | |
| # Value Count and Visualization | |
| print("Online Security\n",data['OnlineSecurity'].value_counts()) | |
| sns.countplot(data=data,x='OnlineSecurity') | |
| # Online Security wise Churn Rate | |
| 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