Learn R Programming

vosonSML (version 0.35.1)

Create.activity.mastodon: Create mastodon activity network

Description

Creates a mastodon activity network from collected posts. Nodes are posts and directed edges represent the relationship of posts to one another.

Usage

# S3 method for activity.mastodon
Create(
  datasource,
  type,
  subtype = NULL,
  ...,
  writeToFile = FALSE,
  verbose = TRUE
)

Value

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

Arguments

datasource

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

type

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

subtype

Character string. Subtype of activity network to be created. Can be set to "tag". Default is NULL.

...

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

writeToFile

Logical. Write data to file. Default is FALSE.

verbose

Logical. Output additional information. Default is TRUE.

Examples

Run this code
if (FALSE) {
# create a mastodon activity network
activity_net <- mastodon_data |> Create("activity")

# create a mastodon tag relations network
activity_net <- mastodon_data |> Create("activity", "tag")
}

Run the code above in your browser using DataLab