-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
113 lines (95 loc) · 3.79 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
<!DOCTYPE html>
<head>
<title>TagOverflow</title>
<meta name="description" content="TagOverflow - interactive visualization of tags from StackExchange sites (e.g. StackOverflow, MathOverflow, ...).">
<meta name="keywords" content="d3js,graph,tags,stackexchange">
<meta name="author" content="Marta Cz-C, Piotr Migdał">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="tagoverflow.css">
<meta property='og:title' content="TagOverflow">
<meta property='og:url' content="https://stared.github.io/tagoverflow/">
<meta property='og:description' content="TagOverflow - interactive visualization of tags from StackExchange sites (e.g. StackOverflow, MathOverflow, ...).">
<meta property='og:image' content="https://stared.github.io/tagoverflow/screenshot_dev.png">
</head>
<body>
<div id="loading_status">Starting...</div>
<div id="footnote">
TagOverflow (<a href="https://github.com/stared/tagoverflow#tagoverflow">source and description on GitHub</a>),<br>
by <a href="http://migdal.wikidot.com/">Piotr Migdał</a> and <a href="http://martaczc.deviantart.com/">Marta Czarnocka-Cieciura</a>.
</div>
<div id="left_bar">
<div id="options">
<div id="hide_options">(hide)</div>
<div id="hideable">
Site:<br>
<select id="site_selector">
</select><br><br>
Number of tags:<br>
<select id="pageSize">
<option value="8">8</option>
<option value="16" selected="selected">16</option>
<option value="32">32</option>
<option value="64">64 (warning: SE may block you)</option>
<option value="100">100 (at your own wish...)</option>
</select><br><br>
Only questions with a tag:<br>
<input id="central_tag"></input><button id="go">Go!</button><br><br>
Tag coloring:<br>
<select id="colorParameter">
<option value="community">community detection</option>
<option value="answered">% answered</option>
<option value="answersMd">median number of answers</option>
<option value="answersAv">average number of answers</option>
<option value="scoreMd">median score</option>
<option value="scoreAv">average score</option>
<option value="viewMd">median view count</option>
<option value="viewAv">average view count</option>
<option value="reputationMd">median owner reputation</option>
<option value="reputationAv">average owner reputation</option>
</select>
</div>
</div>
<div id="theBar"></div>
</div>
<div id="right_bar">
<div class="site_info">
<div class="subtitle">
<a id="site_name">(Select site!)</a>
<span id="count"></span>
</div>
<div id="dscr"></div>
</div>
<div class="tag_info">
<div id="hide_tag_info">(hide)</div>
<div class="subtitle">
<a id="tag_name">(Click on a tag!)</a>
<span id="tag_count"></span><br>
</div>
<div id="show_conditional_subgraph">(show the conditional subgraph)</div>
<!-- <div id="dscr">(And here: on the tag.)</div> -->
<div class="aa">
<div id="askers">
<div class="subsubtitle">top askers</div>
<div class="facelist"></div>
</div>
<div id="answerers">
<div class="subsubtitle">top answerers</div>
<div class="facelist"></div>
</div>
</div>
<div id="questions" class="questions">
<div class="subsubtitle">top questions</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="d3.v3.min.js"></script>
<script src="se_query.js"></script>
<script src="se_tags.js"></script>
<script src="se_stats.js"></script>
<script src="linLegend.js"></script>
<script src="asinhLegend.js"></script>
<script src="community_detection.js"></script>
<script src="main.js"></script>
<script defer data-domain="p.migdal.pl" src="https://plausible.io/js/script.js"></script>
</body>