Created
April 12, 2021 09:27
-
-
Save ParthNipunDave/89d555b49f57105c7d13df907a871c63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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