Social Network Analysis (SNA) is the process of investigating social structures through the use of networks and graph theory.[1] It characterizes networked structures in terms of nodes (individual actors, people, or things within the network) and the ties, edges, or links (relationships or interactions) that connect them.
Network Analysis with Gephi Tutorial Page
https://libguides.brown.edu/gephi
JSON to CSV format
https://github.com/Big-Data-Analytics-Lab-USF/Covid/blob/main/Processing/complete_table_all.R
Building Edge lists
A data format example is below: Source is an account that retweeted the Target account. Target account is the one who initiated the original tweet that was retweeted by Source. Weight is frequency of retweets Source -> Target. retweet is "Directed network."
| Source |
Target |
Type |
Weight |
| CuddleTalk |
CuddleTalk |
Directed |
6 |
| mjgranger1 |
mjgranger1 |
Directed |
6 |
| VetrepreneurOne |
VetrepreneurOne |
Directed |
5 |
| KuppJG |
s_kupp |
Directed |
4 |
| LRrenn |
mitchellvii |
Directed |
4 |
| aliwojo19 |
aliwojo19 |
Directed |
3 |
| amtwsk |
MichaelCoudrey |
Directed |
3 |
| BillBat26852319 |
IngrahamAngle |
Directed |
3 |
| CaliSue7 |
MichaelCoudrey |
Directed |
3 |
| d_taylorl |
cnni |
Directed |
3 |
| DclemDeborah |
schneiderleonid |
Directed |
3 |
| DonMcglashen |
stephphilip8 |
Directed |
3 |
| FayoseGbolahan |
NafdacAgency |
Directed |
3 |
| fezziwig2019 |
fezziwig2019 |
Directed |
3 |
These R scripts lead you files we've done in the past to create edge list files using Twitter retweet relation with edge, and frequency as the weight of the edge. Once the edge list is created, we import the file using gephi (https://gephi.org/ ) for further network analysis.
https://github.com/Big-Data-Analytics-Lab-USF/Covid/blob/main/Analysis/NetworkAnalysis/adjaceny_list_csv_maker.R
OR
https://github.com/Big-Data-Analytics-Lab-USF/Covid-Vaccines/blob/main/scripts/network_analysis_edgelist_creator.R
Network Metrics
- degree
- density
- betweenness
- egocentricity
- closeness
Tools
Related
External Resources
Comments (0)
You don't have permission to comment on this page.