forked from cytoscape/cytoscape.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstat.html
162 lines (134 loc) · 5.6 KB
/
stat.html
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cytoscape Project Statistics</title>
<meta name="description" content="Statistics of Cytoscape projects.">
<meta name="author" content="Keiichiro Ono">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link href="css/main.bootstrap.css" rel="stylesheet">
<!-- For Scroll -->
<script src="js/smooth-scroll.min.js"></script>
</head>
<body>
<div class="white">
<div class="container">
<h1 class="centering">Cytoscape Project Statistics</h1>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 col-md-offset-4">
<img src="images/logo/cy3logoOrange.svg" class="image-fit">
</div>
</div>
</div>
</div>
<!-- Menu -->
<div class="narrow white">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4">
<p>
<a class="btn btn-primary btn-lg btn-block" href="#overall" data-scroll>
Cytoscape Application
</a>
</p>
</div>
<div class="col-xs-12 col-md-4">
<p>
<a class="btn btn-primary btn-lg btn-block" href="#appstore" data-scroll>
App Store
</a>
</p>
</div>
<div class="col-xs-12 col-md-4">
<p>
<a class="btn btn-primary btn-lg btn-block" href="#misc" data-scroll>
Misc.
</a>
</p>
</div>
</div>
</div>
</div>
<!-- Actual Charts -->
<div class="belt light-blue" id="overall">
<div class="container centering">
<h1 class="centering" style="color: white;">Cytoscape</h1>
</div>
</div>
<div class="narrow white">
<div class="container">
<h3 class="underline">Daily Cytoscape Starts: Total 16,017,592 (2/9/2014 - 9/15/2023)</h3>
<p>
</p>
<img src="images/stat/september2023/starts_per_day.svg" class="image-fit">
<h3 class="underline">PubMed Cytoscape Citations as of middle of September 2023</h3>
<p>
Citation counts for 2023 are not complete.
</p>
<img src="images/stat/september2023/cited_publications_per_year.svg" class="image-fit">
<h3 class="underline">Top 15 Cytoscape Citation Venues (since 2004)</h3>
<p>
The top journals for Cytoscape citations over all time have been PLoS One and Sci represents.
</p>
<img src="images\stat\september2023\top_cited_publications_journal.svg" class="image-fit">
<h3 class="underline">Top 15 Funding Agencies for Cytoscape Citations (since 2004)</h3>
<p>
Only basic string comparisons were used to categorize these funding agencies so
assume the counts below are rough estimates.
</p>
<img src="images\stat\september2023\top_cited_publications_grants.svg" class="image-fit">
</div>
</div>
<div class="belt orange" id="appstore">
<div class="container centering">
<h1 class="centering" style="color: white;">App Store</h1>
</div>
</div>
<div class="narrow white">
<div class="container">
<h3 class="underline">Daily Apps downloaded from App Store: Total 4,901,902 (10/15/2012 - 9/15/2023)</h3>
<p>
Not sure what happened, but there were over 7,000 AppStore App downloads on 04/30/2019 and 05/01/2019
and 6,800 AppStore App downloads on 11/08/2021.
</p>
<img src="images/stat/september2023/app_downloads_per_day.svg" class="image-fit">
</div>
</div>
<div class="belt light-blue" id="misc">
<div class="container centering">
<h1 class="centering" style="color: white;">Misc. Statistics</h1>
</div>
</div>
<div class="narrow white">
<div class="container">
<h3 class="underline">Downloads by Platform (10/17/2018 - 9/15/2023)</h3>
<p>
<b>Cytoscape downloads by platform</b><br/>
Binary downloads (.gz ending) are <b>Linux</b> downloads and .zip downloads are assumed to be Windows.
<br/><br/>
<b>Note:</b> Only downloads since 10/17/2018 for Cytoscape versions 3.7.0 and above are rendered in the plot below.
</p>
<img src="images/stat/september2023/downloads_by_platform.svg" class="image-fit">
<a href="https://github.com/cytoscape/cytoscape-admin-scripts/tree/master/project-stats" target="_blank">Link to scripts used to generate these figures</a>
</div>
</div>
<footer></footer>
<script src="js/load_cyjs.js"></script>
<script src="js/setup_page.js"></script>
<script>
// For smooth scrolling
smoothScroll.init({
speed: 1000,
easing: 'easeInOutCubic'
});
// Page setup
var startDate = ""
var endDate = ""
</script>
</body>
</html>