esof522
Understanding Factors Influencing the Citation Count of Networking Conference Papers
Science Score: 18.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (4.8%) to scientific vocabulary
Repository
Understanding Factors Influencing the Citation Count of Networking Conference Papers
Basic Info
Statistics
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
ESOF522
Understanding the Influence of Conference Acceptance Rate on Citation Count
Run the code as follows:
python scholar.py -c 900 --pub "conferencename" --after "afteryear" --before "before_year" --json
Sample Query:
python scholar.py -c 900 --pub "Internet Measurement Conference" --after "2008" --before "2008" --json
Sample Response:
echo "{\"obj\": [{ \"paperaccepted\": 32, \"numcitations\": 232, \"title\": \"Unveiling facebook: a measurement study of social network based applications\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 219, \"title\": \"Watching television over an IP network\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 181, \"title\": \"An empirical evaluation of entropy-based traffic anomaly detection\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 162, \"title\": \"Comparison of online social relations in volume vs interaction: a case study of cyworld\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 133, \"title\": \"Ten years in the evolution of the internet ecosystem\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 100, \"title\": \"802.11 n under the microscope\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 96, \"title\": \"Detecting bittorrent blocking\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 78, \"title\": \"Analysis of a mixed-use urban wifi network: when metropolitan becomes neapolitan\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 75, \"title\": \"Census and survey of the visible Internet\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 72, \"title\": \"Experimental study of router buffer sizing\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 65, \"title\": \"Traceroute probe method and forward IP path inference\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 53, \"title\": \"Fast monitoring of traffic subpopulations\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 46, \"title\": \"Mark-and-sweep: Getting the inside scoop on neighborhood networks\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 47, \"title\": \"Fixing ally's growing pains with velocity modeling\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 46, \"title\": \"Quantifying the operational status of the dnssec deployment\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 46, \"title\": \"A measurement study of a commercial-grade urban wifi mesh\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 43, \"title\": \"Bigfoot, sasquatch, the yeti and other missing links: what we don't know about the as graph\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 40, \"title\": \"Context-aware clustering of dns query traffic\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 38, \"title\": \"How healthy are today's enterprise networks?\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }, { \"paperaccepted\": 32, \"numcitations\": 37, \"title\": \"Towards optimal sampling for flow size estimation\", \"publication\": \"internet measurement conference\", \"year\": \"2008\" }]}" > tier-1/1426930587737.json
Owner
- Name: Utkarsh Goel
- Login: ugoel
- Kind: user
- Company: Akamai
- Website: https://www.utkarshgoel.in
- Repositories: 14
- Profile: https://github.com/ugoel
Citation (citation.php)
<?php
$dbhostname = "nl.cs.montana.edu";
$dbusername = "dns";
$dbpassword = "Database4DnsProxy";
$dbschemaname = "dns_proxy";
$con = mysql_connect($dbhostname, $dbusername, $dbpassword);
if (!$con)
{
die('Website down for maintenance. We will be live soon.');
}
mysql_select_db($dbschemaname, $con);
$title = $_GET['title'];
$num_citations = $_GET['num_citations'];
$year = $_GET['year'];
$publication = $_GET['publication'];
$conf_rank = $_GET['conf_rank'];
$sql = "insert into citation (title, num_citations, year, publication, conf_rank) values('$title', $num_citations, $year, '$publication', '$conf_rank')";
echo $sql;
if (!mysql_query ($sql,$con)) {
die('Website down for maintenance. We will be live soon.');
}
else {
echo "Recored.";
}
?>