-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
172 lines (159 loc) · 4.49 KB
/
index.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
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Citations by h-Index</title>
<style>
* {
margin: 0;
padding: 0;
border: 0;
font-family: sans-serif;
}
#plot {
position: fixed;
}
#control-panel {
position: fixed;
display: flex;
bottom: 0;
right: 0;
gap: 0.5rem;
flex-direction: column;
padding: 0.5rem;
width: 90%;
}
#control-panel {
width: 15rem;
}
#axis {
position: fixed;
height: 100%;
width: 100%;
font-size: 1rem;
}
#axis span {
position: fixed;
display: flex;
align-items: center;
height: 100%;
color: RGB(128, 128, 128);
border-left: 0.1rem RGBA(0, 0, 0, 0.25) solid;
}
#scroll-content {
position: absolute;
width: 100%;
height: auto;
}
.scroll-element {
display: flex;
flex-direction: column;
width: auto;
height: 100vh;
align-items: center;
justify-content: center;
}
.scroll-element p,
.scroll-element h1 {
padding: 5px;
max-width: 200px;
background-color: white;
}
.scroll-element h1 {
padding: 10px;
max-width: 425px;
}
.scroll-element * {
border-radius: 3px;
padding: 2px;
font-family: serif;
}
</style>
</head>
<body>
<canvas id="plot"></canvas>
<div id="axis"></div>
<div id="scroll-content">
<div class="scroll-element">
<h1>
<i
>Do Scientists Directly or Indirectly Cite other Scientists by
Reputation?</i
>
</h1>
<div>
<a
style="text-decoration: none"
href="https://github.com/YertleTurtleGit/cites-by-hindex"
>
<p style="text-align: center; font-size: 10pt; color: grey">
<span style="font-weight: 1000; font-size: 15pt">< / ></span
><br />view code
</p></a
>
</div>
</div>
<div class="scroll-element">
<p>
This plot shows how scientists cite each other by <i>reputation</i>.
</p>
</div>
<div class="scroll-element">
<p>A single arc stands for a citation.</p>
<p>
<span style="background-color: blue; color: white">Blue</span> arcs
mark scientists with higher <i>reputation</i> that cite scientists
with a lower <i>reputation</i> and
<span style="background-color: red; color: white">red</span> arcs mark
the opposite.
</p>
</div>
<div class="scroll-element">
<p>
<i>Reputation</i> is here defined by the
<a
href="https://en.wikipedia.org/wiki/H-index"
target="_blank"
rel="noopener noreferrer"
><i>h-index</i></a
>
of a scientist.
</p>
<p>
This metric is far from perfect, but has significance alone from being
used frequently on many science databases.
</p>
</div>
<div class="scroll-element">
<p>
If we only show the citations with a higher difference between
<i>h-indices</i>, we see more
<span style="background-color: red; color: white">red</span> than
<span style="background-color: blue; color: white">blue</span> lines.
</p>
<p>
That means that scientists with a lower <i>h-index</i> cite scientist
with a higher <i>h-index</i> more often than the other way around.
</p>
</div>
<div class="scroll-element">
<p>
If we visualize the opposite: citations with a lower difference
between
<i>h-indices</i>, we see that most of these citations happen in the
lower <i>h-index</i> spectrum.
</p>
</div>
<div class="scroll-element">
<p>Now, you can make your own picture.</p>
</div>
<div class="scroll-element"></div>
</div>
<div id="control-panel"></div>
<script src="./plot/libraries/three.js"></script>
<script src="./plot/libraries/three-orbit-controls.js"></script>
<script src="./plot/hindices.js"></script>
<script src="./plot/plot.js"></script>
</body>
</html>