Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created May 31, 2021 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/65a5fea9744711b64dce0076dbb0856c to your computer and use it in GitHub Desktop.
Save amankharwal/65a5fea9744711b64dce0076dbb0856c to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
import seaborn as sns
plt.figure(figsize=(15, 10))
sns.scatterplot(data['Sentiment_Polarity'], data['Sentiment_Subjectivity'],
hue = data['Sentiment'], edgecolor='white', palette="twilight_shifted_r")
plt.title("Google Play Store Reviews Sentiment Analysis", fontsize=20)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment