Not logged in
Talk
Contributions
Create account
Log in
Navigation
Main page
About
People
Publications
Teaching
Resources
Research Blog
Wiki Functions
Recent changes
Help
Licensing
Page
Discussion
Edit
View history
Editing
Communication and Social Networks (Fall 2023)/Visualization challenge
(section)
From CommunityData
Jump to:
navigation
,
search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Resources === The [https://jeremydfoote.com/Communication-and-Social-Networks/week_6/ggraph_walkthrough.html Introduction to ggraph and tidygraph reading] actually uses this dataset. You can look to that for examples to build on (Here is the [https://jeremydfoote.com/Communication-and-Social-Networks/week_6/ggraph_walkthrough.Rmd R Markdown file] that I used to create the web page). Data: * [https://raw.githubusercontent.com/jdfoote/Communication-and-Social-Networks/fall-2022/resources/school_graph_nodes.csv Node data] * [https://raw.githubusercontent.com/jdfoote/Communication-and-Social-Networks/fall-2022/resources/school_graph_edges.csv Edge data] Descriptions of what each measure means are at [http://www.stats.ox.ac.uk/~snijders/siena/tutorial2010_data.htm this site], maintained by the people who collected the data. To import the data you can right-click on and save the edge and node data files above to your computer and then import them into R. Alternatively, the following code will download the files and create a graph object. You are welcome to reuse it. <syntaxhighlight lang="R"> library(tidyverse) library(igraph) library(tidygraph) library(ggraph) nodes = read_csv('https://raw.githubusercontent.com/jdfoote/Communication-and-Social-Networks/fall-2022/resources/school_graph_nodes.csv') edges = read_csv('https://raw.githubusercontent.com/jdfoote/Communication-and-Social-Networks/fall-2022/resources/school_graph_edges.csv') G = graph_from_data_frame(d=edges, v=nodes) %>% as_tbl_graph() </syntaxhighlight>
Summary:
Please note that all contributions to CommunityData are considered to be released under the Attribution-Share Alike 3.0 Unported (see
CommunityData:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:
Cancel
Editing help
(opens in new window)
Tools
What links here
Related changes
Special pages
Page information