Skip to content

Instantly share code, notes, and snippets.

@ParthNipunDave
Created April 12, 2021 08:36
Show Gist options
  • Select an option

  • Save ParthNipunDave/dfc806ff9b62cb2851a4bee35cedc341 to your computer and use it in GitHub Desktop.

Select an option

Save ParthNipunDave/dfc806ff9b62cb2851a4bee35cedc341 to your computer and use it in GitHub Desktop.
# 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