Skip to content

Instantly share code, notes, and snippets.

@ParthNipunDave
Created April 12, 2021 10:01
Show Gist options
  • Select an option

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

Select an option

Save ParthNipunDave/7d5c39b28dab581c44038599f4a6da7d to your computer and use it in GitHub Desktop.
# Unique Value
data['PaperlessBilling'].unique()
# Value Count and visualization
print("Paperless Billing\n",data["PaperlessBilling"].value_counts())
sns.countplot(data=data,x="PaperlessBilling")
# Paperless Bill Wise Churn Rate
sns.countplot(data=data,x='PaperlessBilling',hue="Churn")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment