graphTweets: Visualise Twitter Interactions
- CRAN: http://cran.r-project.org/web/packages/graphTweets/index.html
- GitHub: https://github.com/JohnCoene/graphTweets
> library(graphTweets)
See ?getEdges and ?getNodes for examples
Attaching package: 'graphTweets'
The following object is masked from 'package:RNeo4j':
getNodes
バージョン: 0.2
関数名 | 概略 |
---|---|
getEdges |
getEdges |
getNodes |
getNodes |
graphTweets |
'graphTweets' visualise Twitter Interactions. |
getEdges
> tweets <- searchTwitter("rstats", n = 200) %>% twListToDF()
> edges <- getEdges(data = tweets, tweets = "text", source = "screenName")
>
> # igraph::graph.data.frame(edges, directed = TRUE) %>% plot()