Learn R Programming

vosonSML (version 0.29.10)

Create.twomode.twitter: Create twitter twomode network

Description

Creates a twomode 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.

Usage

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

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.

weighted

Logical. Add weights to network edges. If set to FALSE tweet status_id and created_at fields will be preserved for edges in the dataframe. Default is TRUE.

verbose

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

...

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

Value

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

Examples

Run this code
# NOT RUN {
# create a twitter twomode network graph removing the hashtag '#auspol' as it was used in 
# the twitter search query
twomodeNetwork <- twitterData %>% 
                  Create("twomode", removeTermsOrHashtags = c("#auspol"), verbose = TRUE)

# network
# twomodeNetwork$nodes
# twomodeNetwork$edges
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab