GraphAnalyticsPeerReviewReportTemplate PDF
GraphAnalyticsPeerReviewReportTemplate PDF
chat_create_team_chat.csv userID
teamID
teamChatSessionID
timestamp
chat_join_team_chat.csv userID
teamChatSessionID
timestamp
chat_leave_team_chat.csv userID
teamChatSessionID
timestamp
chat_item_team_chat.csv userID
teamChatSessionID
chatItemID
timestamp
chat_mention_team_chat.csv chatItemID
userID
timestamp
chat_respons_team_chat.csv chatItemID_1
chatItemID_2
timestamp
Explain the loading process and include a sample LOAD command
The first line load the csv from the specific location one row at a time. From the second line to fourth,
create the nodes for User, Team, TeamChatSession with a specific column converted to integer, this field
is used by the id attribute. The fifth and sixth lines create CreatesSession and OwnedBy edges and link
the nodes previously created. The edges have a timestamp property filled by the fourth column of
schema.
Present a screenshot of some part of the graph you have generated. The graphs must include clearly
visible examples of most node and edge types.
With 9 as longest path, count the number of distinct users who create ChatItem in this longest path. The
query returns 5.
Analyzing the relationship between top 10 chattiest users and top 10 chattiest
teams
Describe your steps from Question 2. In the process, create the following two tables. You only need to
include the top 3 for each table. Identify and report whether any of the chattiest users were part of any
of the chattiest teams.
Chattiest Users
Determine the number of chats created by a user from the CreateChat edge
Users Number of Chats
394 115
2067 111
209 109
Chattiest Teams
Match all ChatItem with a PartOd edge and connect them with a TeamChatSession node that have an
OwnedBy edge connection them with any other node.
Finally, present your answer, i.e. whether or not any of the chattiest users are part of any of the
chattiest teams.
This query is used to investigate if the most chattiest user are part of any chattiest team and it return
one result, userID 999 is part of teamID 52.
User ID Coefficient
394 0.9167
2067 0.7679
209 0.9524