Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save ParthNipunDave/d92994f2a41281d5d239eee242105134 to your computer and use it in GitHub Desktop.
# Unique Values
data['MultipleLines'].unique()
# Value Count and Visualization
print("Multiple Lines \n",data['MultipleLines'].value_counts())
sns.countplot(data=data,x='MultipleLines')
# Multiple Lines Wise
sns.countplot(data=data,x='MultipleLines',hue="Churn")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment