Created
December 18, 2018 09:51
-
-
Save jonathanoheix/5f87310d6e22f60c61226f2a6baf8d87 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
# highest positive sentiment reviews (with more than 5 words) | |
reviews_df[reviews_df["nb_words"] >= 5].sort_values("pos", ascending = False)[["review", "pos"]].head(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment