Creates a 2-mode network from tweets returned from the twitter search query. In this network there are two types of nodes, twitter users who authored or were mentioned in collected tweets and hashtags found within tweets. Network edges represent a users tweets that contain hashtags or mention users screen names.

# S3 method for twomode.twitter
Create(
  datasource,
  type,
  removeTermsOrHashtags = NULL,
  rmRetweets = TRUE,
  verbose = TRUE,
  ...
)

Arguments

datasource

Collected social media data with "datasource" and "twitter" class names.

type

Character string. Type of network to be created, set to "twomode".

removeTermsOrHashtags

Character vector. Users or hashtags to remove from the twomode network. For example, this parameter could be used to remove the user or hashtag that was used to collect the data by removing any nodes with matching name. Default is NULL to remove none.

rmRetweets

Logical. Do not process retweets in the input data. Default is TRUE.

verbose

Logical. Output additional information about the network creation. Default is TRUE.

...

Additional parameters passed to function. Not used in this method.

Value

Network as a named list of two dataframes containing $nodes and $edges.

Examples

if (FALSE) {
# create a twitter 2-mode network graph with the hashtag "#auspol" removed
net_2mode <- collect_tw |>
  Create("twomode", removeTermsOrHashtags = c("#auspol"), verbose = TRUE)

# network
# net_2mode$nodes
# net_2mode$edges
}