Learn R Programming

tweetbotornot (version 0.1.0)

botornot: Identical to tweetbotornot

Description

Classify users/accounts in Twitter data as bots or not bots.

Usage

botornot(x, fast = FALSE)

tweetbotornot(x, fast = FALSE)

Arguments

x

Object to be classified. Can be user IDs, screen names, or data frames returned by rtweet.

fast

Logical indicating whether to use the fast (lighter) model. The default (fast = FALSE) method uses the most recent 100 tweets posted by users to determine the probability of bot. The fast (fast = TRUE) method only uses users-level data, which is easier to get in large quantities from Twitter's APIS but overall less accurate.

Value

Classifications for all users expressed as probability of whether each account is a bot.

Examples

Run this code
# NOT RUN {
## vector of screen names
sns <- c("kearneymw", "geoffjentry", "p_barbera",
  "tidyversetweets", "rstatsbot1234", "RStatsStExBot")

## get and view bot probability estimates
twb <- tweetbotornot(sns)
twb

## ask for the fast (user-level data only) version
twbf <- tweetbotornot(sns, fast = TRUE)
twbf

# }

Run the code above in your browser using DataLab