improved visualization of tweet analysis, better Bot detection

This commit is contained in:
arnaucode
2017-06-24 16:53:52 +02:00
parent 1b7865d715
commit d20608add2
5 changed files with 39 additions and 10 deletions

View File

@@ -26,6 +26,9 @@ func optionAnalyzeUserTweets(client *twitter.Client) {
fmt.Println("User @" + username + " does not have tweets")
return
}
analyzeUserAccount(client, username)
//now analyze words and dates
fmt.Println("Word frequency (more than " + strconv.Itoa(minNumWords) + " times):")
words := analyzeWords(tweets)
@@ -62,6 +65,6 @@ func optionAnalyzeUserTweets(client *twitter.Client) {
fmt.Println(" ")
fmt.Print("User @")
c.Cyan(username)
analyzeUserAccount(client, username)
//analyzeUserAccount(client, username)
fmt.Println(" analysis finished")
}