Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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