Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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