tapilab / protest

analyze brazilian protests on Twitter
0 stars 0 forks source link

Plot top words per month #7

Closed aronwc closed 9 years ago

aronwc commented 9 years ago

This should tell us roughly what were the main terms used in positive tweets for each month.

ElaineResende commented 9 years ago

For each month we have:

Positive tweets: image

Now I am trying to see some of those words and their meaning for each month.

Edit:

All organic tweets:

image

aronwc commented 9 years ago

This just considers positive tweets for each month?

ElaineResende commented 9 years ago

Yes, I have filtered like this:

positive_ones = [(t['text'],parse_date(t['posted_time'])) for t in labeled_tweets if t['class']=='1']