-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfig.json
75 lines (75 loc) · 2.72 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"maxYear": 5,
"fields": [
{
"name": "citations",
"display": "Citations",
"description": "Number of times an article was cited in other articles present in the dataset."
},
{
"name": "timescaledpagerank",
"display": "Impact",
"description": "Time-rescaled node centrality calculated over the citation network."
},
{
"name": "hindex",
"display": "h-index",
"description": "Mean of the maximum values of h such that the given authors have published h papers that have each been cited at least h times."
},
{
"name": "adopters",
"display": "Early Adopters",
"description": "Number of the unique citing authors in the current year."
},
{
"name": "citationsperpaper",
"display": "Citations-Per-Paper",
"description": "Mean number of citations-per-paper of the authors."
},
{
"name": "citationsperyear",
"display": "Citations-Per-Year",
"description": "Mean number of citations per year of the authors."
},
{
"name": "totalcitations",
"display": "Total Citations",
"description": "Mean of the total citation count of the authors."
},
{
"name": "totalpapers",
"display": "Total Papers",
"description": "Mean of the total paper count of the authors."
},
{
"name": "authorage",
"display": "Author Age",
"description": "Mean number of years since the first publication in the dataset for the authors."
},
{
"name": "recentcoauthors",
"display": "Recent Coauthors",
"description": "Mean number of coauthors of each author in the current and antecedent years."
},
{
"name": "venuecitatiosnperpapermean",
"display": "Mean Journal Citations",
"description": "Mean number of citations per paper for journals published in by the authors."
},
{
"name": "venuehindexmean",
"display": "Mean Journal h-Index",
"description": "Mean h-Index for journals published in by the authors."
},
{
"name": "totalvenues",
"display": "Total Journals",
"description": "Total number of journals published in by the authors."
},
{
"name": "pagerank",
"display": "Coauthor PageRank",
"description": "Mean PageRank score calculated on the unweighted coauthorship network."
}
]
}