ZacharyCarrollAshl / A.-Midterm-Project-Social-Network-Edgelist-I

This was my midterm project in my Java Development 2 class at Sinclair Community College. For the class, we had been making a Facebook menu program using user created data. This program uses actual Twitter data collected between July 1st through the 7th 2012. The data is available from http://snap.stanford.edu/data/higgs-twitter.html The file we used is called social_network.edgelist and it contains anonymized information on who is following whom. The information has the usernames replaced with ID numbers (from 0 to 456630). The format of the file is int <space> int, where the first int is the ID of the user doing the following and the second int is the user being followed. We had to create a TwitterUser class to represent the users in this dataset. I've included the rubric given by the teacher within the folder for the project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repository is not active

About

This was my midterm project in my Java Development 2 class at Sinclair Community College. For the class, we had been making a Facebook menu program using user created data. This program uses actual Twitter data collected between July 1st through the 7th 2012. The data is available from http://snap.stanford.edu/data/higgs-twitter.html The file we used is called social_network.edgelist and it contains anonymized information on who is following whom. The information has the usernames replaced with ID numbers (from 0 to 456630). The format of the file is int <space> int, where the first int is the ID of the user doing the following and the second int is the user being followed. We had to create a TwitterUser class to represent the users in this dataset. I've included the rubric given by the teacher within the folder for the project.