Posts by vitorbgs • 11 points
1 post
-
1
votes2
answers1295
viewsA: Create a frequency table based on another column in Python
Complementing the @Lacobus response, to know the classification of each word, you can separate the positives and negatives as follows: import csv import string from collections import Counter…