small update

This commit is contained in:
arnaucode
2017-04-15 16:20:43 +02:00
parent 4addf9d551
commit ee7caca895
7 changed files with 16 additions and 2 deletions

View File

@@ -66,7 +66,9 @@ func analyzeHours(tweets []twitter.Tweet) {
}
func analyzeDates(tweets []twitter.Tweet) {
fmt.Println("Weekly activity distribution (per day)")
analyzeDays(tweets)
fmt.Println(" ")
fmt.Println("Daily activity distribution (per hour)")
analyzeHours(tweets)
}