Create.activity.mastodon {vosonSML} | R Documentation |
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 class 'activity.mastodon'
Create(
datasource,
type,
subtype = NULL,
...,
writeToFile = FALSE,
verbose = TRUE
)
Arguments
datasource |
Collected social media data with |
type |
Character string. Type of network to be created, set to |
subtype |
Character string. Subtype of activity network to be created. Can be set to |
... |
Additional parameters passed to function. Not used in this method. |
writeToFile |
Logical. Write data to file. Default is |
verbose |
Logical. Output additional information. Default is |
Value
Network as a named list of two dataframes containing $nodes
and $edges
.
Examples
## Not run:
# create a mastodon activity network
activity_net <- mastodon_data |> Create("activity")
# create a mastodon tag relations network
activity_net <- mastodon_data |> Create("activity", "tag")
## End(Not run)
[Package vosonSML version 0.35.1 Index]