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