kurtawirth / botscan

R tool for scanning Twitter for bot activity on a conversation level.
GNU General Public License v3.0
10 stars 6 forks source link

Add argument verbose to botscan() #14

Closed ryantmoore closed 5 years ago

ryantmoore commented 6 years ago

We currently use a loop in R to check multiple handles for botiness. We should add an argument for verbose printing in botscan().

  1. Add argument verbose = TRUE
  2. Document it
  3. At the top of the loop (line 57), add
    
    if(user_idx %% 10 == 0){
    cat(paste("Checking user number", user_idx, "\n"))
    }
ryantmoore commented 5 years ago

Initial version included in commit c7668fb.

kurtawirth commented 5 years ago

This is tested and working properly. Closing issue.