gt_graph: Graph

Description Usage Arguments Value Examples

View source: R/overhaul.R

Description

Build igraph object.

Usage

1

Arguments

gt

An object of class graphTweets as returned by gt_edges and gt_nodes.

Value

An object of class igraph.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# simulate dataset
tweets <- data.frame(
  text = c("I tweet @you about @him", 
           "I tweet @me about @you"),
  screen_name = c("me", "him"),
  retweet_count = c(19, 5),
  status_id = c(1, 2),
  stringsAsFactors = FALSE
)

tweets %>% 
  gt_edges(text, screen_name, status_id) %>% 
  gt_nodes() %>% 
  gt_graph() -> net

graphTweets documentation built on Jan. 8, 2020, 9:07 a.m.