Creates a web page activity network from pages. Nodes are web pages.
# S3 method for activity.web
Create(datasource, type, lcase = TRUE, verbose = TRUE, ...)Collected social media data with "datasource" and "web" class names.
Character string. Type of network to be created, set to "activity".
Logical. Convert urls and page names to lowercase.
Logical. Output additional information about the network creation. Default is TRUE.
Additional parameters passed to function. Not used in this method.
Network as a named list of two dataframes containing $nodes and $edges.
if (FALSE) {
# create a web activity network graph
net_activity <- data_collect |> Create("activity")
# network
# net_activity$nodes
# net_activity$edges
}