Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Social Network BusinessAnalytica wants to create a quote network. A quote happens when a posts contains new content on top of a shared posts (
Social Network
BusinessAnalytica wants to create a quote network. A quote happens when a posts contains new content on top of a shared posts Reddit or Mastodon API: Premium data dictionary Docs Reddit or Mastodon Developer Platform Build a quote network from the posts you downloaded and plot a graph to present to BusinessAnalytica. In order to solve this question, you should first find whether each posts is a quote and get the screen names of the quoted posts. Then get the screen names of the Reddit or Mastodon users of the original posts that were quoted. Create an edge list of who quoted whom and plot the graph.
Find the row numbers of the quote posts from the posts data you downloaded. Store them in the variable, quote.posts
mark
Find the screen names of the users in quote.posts. Store them in a variable, who.quoted
Find the information regarding the original posts objects that were quoted. This will be a list. Store it in a variable, original.quoted.posts.list. Verify that its class is a list. Then find the class of the contents of the first object in the list. Finally find the names of all attributes of the first object in the list. marks
Find the screen names of the original authors of the posts, from original.quoted.posts.list.
Store them in a variable, original
mark
Build an edge list of who quoted whom, with whom as the first column and whom as the second column. Ensure there are no NAs in either columns.
marks
Plot the quote network. If the plot looks too dense, create a subgraph that is not dense and
plot it Verify your plot by comparing it appropriate R networkgraph function.
marks
List the top central users using the closeness centrality measure. mark
Formatting
Each question number and question statement are clearly stated.
mark
Declaration and group members names and percentage contribution is included
mark
Report looks professional with desired R code snippets followed by appropriate outputs or plots with no duplication of code segments in the reports
mark
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started