Skip to content

Instantly share code, notes, and snippets.

@ParthNipunDave
Created April 12, 2021 09:17
Show Gist options
  • Select an option

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

Select an option

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