generated from usf-cs360-spring2020/template-bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset.html
213 lines (190 loc) · 8.02 KB
/
dataset.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Drew's Final</title>
<!-- Load Bulma from CDN (consider saving it to repository instead) -->
<!-- https://bulma.io/ -->
<link rel="stylesheet" href="./data/bulma.min.css">
<!-- Load Font Awesome 5 (free) icons -->
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<!-- Page header -->
<!-- https://bulma.io/documentation/layout/hero/ -->
<section class="hero is-primary is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">Drew's Views</h1>
<h2 class="subtitle">Steam Reviews</h2>
</div>
</div>
</section>
<!-- End page header -->
<!-- Page navigation -->
<!-- https://bulma.io/documentation/components/navbar/ -->
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<span class="icon"><i class="fas fa-home"></i></span>
<span>Home</span>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="main-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="main-menu" class="navbar-menu has-text-weight-medium">
<!-- Left navbar items -->
<div class="navbar-start">
<a class="navbar-item" href="dataset.html" title="Data">
<span class="icon"><i class="fas fa-table"></i></span>
<span>Dataset</span>
</a>
<a class="navbar-item" href="./data/viz.html" title="Data">
<span class="icon"><i class="fas fa-chart-line"></i></span>
<span>Alpha Prototype</span>
</a>
<a class="navbar-item" href="./data/prototype.html" title="Data">
<span class="icon"><i class="fas fa-chart-line"></i></span>
<span>Beta Prototype</span>
</a>
<a class="navbar-item" href="./data/final.html" title="Data">
<span class="icon"><i class="fas fa-chart-line"></i></span>
<span>Final Prototype</span>
</a>
</div>
</div>
<!-- Right navbar items -->
<div class="navbar-end">
<a class="navbar-item" href="about.html" title="About">
<span class="icon"><i class="fas fa-info-circle"></i></span>
<span>About</span>
</a>
</div>
</div>
</div>
</nav>
<!-- End page navigation -->
<section class="section">
<div class="container">
<!-- Begin page content -->
<div class="content">
<h1 class="title">
Steam Reviews Dataset
</h1>
<h4>Collection of Steam's best selling games reviews</h4>
<p>This dataset isn't a comprehensive list of every single review of every single game on Steam as that would be gigabytes or terabytes of data. This dataset includes data only of the best selling games on Steam.</p>
<h3>Info</h3>
<p>This dataset contains 8 columns and 434,891 rows of data.</p>
<h3>Columns</h3>
<ol>
<li>date_posted
<ul>
<li>Posting date of the review.</li>
</ul>
</li>
<li>hour_played
<ul>
<li>How many hours the reviewer has played the game for.</li>
</ul>
</li>
<li>recommendation
<ul>
<li>If the reviewer recommends the game or not.</li>
</ul>
</li>
<li>title
<ul>
<li>The title of the game.</li>
</ul>
</li>
</ol>
<blockquote>
<p>
"This data is made available under the Public Domain Dedication and License v1.0 whose full text can be found at: <a href="http://www.opendatacommons.org/licenses/pddl/1.0/">www.opendatacommons.org/licenses/pddl/1.0/</a>"
</p>
<cite>Resource retrieved from <a href="https://www.kaggle.com/luthfim/steam-reviews-dataset#steam_reviews.csv">https://www.kaggle.com/luthfim/steam-reviews-dataset#steam_reviews.csv</a>, accessed April 10, 2020</cite>
</blockquote>
<h1>Steam Games Complete Dataset</h1>
<p>This dataset contains lifetime information on about 40,000 games on Steam's store. This dataset was used to give context on the details of the games themselves as the reviews dataset didn't contain much about besides the reviews. These two datasets were then combined to create hierarchical data to be run through d3.</p>
<p>This dataset contains 20 columns and about 40,000 rows of data. Only 5 rows were used when wrangling to avoid bloating the input file with unnecessary data.</p>
<ol>
<li>all_reviews
<ul>
<li>Lifetime review score of the game (overwhelmingly positive, very positive, mostly positive,
positive, mixed, negative, mostly negative, very negative, overwhelmingly negative, etc).
</li>
</ul></li>
<li>genre
<ul>
<li>The genre of the game. Can be an array of comma separated values.</li>
</ul></li>
<li>title
<ul>
<li>The title of the game.</li>
</ul></li>
</ol>
<blockquote>
<p>
"This data is made available under the Public Domain Dedication and License v1.0 whose full text can be found at: <a href="http://www.opendatacommons.org/licenses/pddl/1.0/">www.opendatacommons.org/licenses/pddl/1.0/</a>"
</p>
<cite>Resource retrieved from <a href="https://www.kaggle.com/trolukovich/steam-games-complete-dataset">
https://www.kaggle.com/trolukovich/steam-games-complete-dataset</a>, accessed May 5, 2020</cite>
</blockquote>
<div>
<h3>Note</h3>
<p>I included the reduced and combined datasets (steam_combined.final.csv and
steam_reduced_with_genre_no_reviews.json). Also included are the scripts made to do the wrangling.</p>
</div>
</div>
<!-- End page content -->
</div>
</section>
<!-- Page footer -->
<!-- https://bulma.io/documentation/layout/footer/ -->
<footer class="footer">
<div class="content has-text-centered is-size-7">
<p>
<a href="#top">
<span class="fas fa-arrow-up"></span>
<span class="has-text-weight-medium">Back to Top</span>
</a>
</p>
<p>
<a href="https://github.com/usf-cs360-spring2020/homework2-dknoma" class="button is-small" style="padding-left: 1em; padding-right: 1em;">
<i class="fab fa-github-alt"></i> <strong>Github</strong>
</a>
<a href="https://fontawesome.com/" class="button is-small" style="padding-left: 1em; padding-right: 1em;">
<i class="fab fa-font-awesome"></i> <strong>FontAwesome</strong>
</a>
<a href="https://bulma.io" class="button is-small">
<img src="https://bulma.io/images/made-with-bulma--semiblack.png" alt="Made with Bulma" width="128" height="24">
</a>
</p>
</div>
</footer>
<!-- End page footer -->
<!-- Mobile menu responsiveness -->
<!-- https://bulma.io/documentation/components/navbar/ -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
if ($navbarBurgers.length > 0) {
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
const target = el.dataset.target;
const $target = document.getElementById(target);
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
<!-- End mobile menu responsiveness -->
</body>
</html>