-
Notifications
You must be signed in to change notification settings - Fork 1
/
class2023.html
145 lines (134 loc) · 6.85 KB
/
class2023.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="SUTD HASS02.526">
<meta name="author" content="Chi-Loong (www.vslashr.com)">
<meta name="google-site-verification" content="..." />
<meta property="og:title" content="SUTD HASS02.526 course">
<meta property="og:type" content="website">
<meta property="og:url" content="https://chi-loong.github.io/HASS02.526/">
<meta property="og:description" content="SUTD HASS02.526">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@vslashr" />
<meta name="twitter:creator" content="@chiloong" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.21/css/dataTables.bootstrap4.min.css"/>
</head>
<body>
<div class="container">
<h6 class="text-center px-3 py-3"><a href="index.html">Schedule</a> | <a href="objectives.html">Objectives</a></h6>
<div class="row">
<div class="col-md-12">
<h4>Assignments</h4>
<table id="hass02526" class="table table-striped table-bordered" width="100%"></table>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-12">
<h4 class="py-3">Final Projects 2023</h4>
<p><b><a href="https://ysbllh.github.io/MOP" target="_blank">Visualizing MOPs trends</a> (Ysabelle, Yi Jie)</b></p>
<p>How affordable are HDB resale flats that just MOP-ed for people in Singapore?</p>
<hr/>
<p><b><a href="https://sl194.github.io/HASS-finalassignment/" target="_blank">Social Robots One-stop Platform</a> (Sharmayne, Zhouqun)</b></p>
<p>Summary, dashboard and database of key aspects of social robots.</p>
<hr/>
<p><b><a href="https://rpxj.github.io/HASS-finalassignment/" target="_blank">Bubble Tea Market</a> (Ruth, Janice)</b></p>
<p>Overview of the bubble tea market in SEA and Singapore.</p>
<hr/>
<p><b><a href="http://lenezoe.github.io/lastmilehealthcare" target="_blank">Walk how far to see doctor?</a> (Alice)</b></p>
<p>Examining equity of public transit access to healthcare in Singapore by comparing last-mile walking distance between healthcare facilities and different public transit stops.</p>
<hr/>
<p><b><a href="https://markhh.com/PAM/" target="_blank">Urban Adventures</a> (Huang He, Xiaofei)</b></p>
<p>Visualizing a Person's Journey through the City</p>
<hr/>
<p><b><a href="https://ancga.github.io/UrbanisationIndonesia/" target="_blank">The Trend of Urbanization in Indonesia</a> (Angga)</b></p>
<p>The project is the story of internal migration, unequal access to basic amenities, over-density, and the rise of the new urban sphere in Indonesia amid the growing number of urban population which surpass the rural population.</p>
<hr/>
<p><b><a href="https://duopeng-cver.github.io/HASS-assignment5/" target="_blank">COVID-19 Data Visualisation</a> (Peng Duo)</b></p>
<p>Using data visualization to represent the entire growth process of the COVID-19 pandemic.</p>
<hr/>
<p><b><a href="https://poro2023.github.io/HASS-assignment6/" target="_blank">Predicting Chinese citizen’s intention of building home gardens</a> (Yunjie)</b></p>
<p>Data Visualization of Applying an Extended Version of the Theory of Planned Behavior to predicting Chinese citizen’s intention of building home gardens.</p>
<hr/>
<p><b><a href="https://li-kainan.github.io/HASS-assignment5/" target="_blank">Understanding Recommondation Algorithm through Visualization</a> (Kainan)</b></p>
<p>Enable the user to visualize how the recommendation is made based on their preference, using Spotify music dataset.</p>
<hr/>
<p><b><a href="https://darendi.github.io/HASS-assignment5/" target="_blank">Where the trees at?</a> (Darren)</b></p>
<p>Comparing concentration of trees between different subzones in Singapore represented on a choropleth map.</p>
</div>
</div>
<hr/>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.21/js/dataTables.bootstrap4.min.js"></script>
<script src="js/papaparse.min.js"></script>
<script>
Papa.parse("data/data2023.csv", {
delimiter: ",",
header:true,
download:true,
complete: function(results) {
var data = results.data.map(function(d) {return [d.SID, d.Name, d.GitUsername]});
$("#hass02526").DataTable({
data: data,
responsive: true,
columns: [
{ title: "Student ID" },
{ title: "Full Name" },
{ title: "Github Username" },
{ title: "Assignment1", orderable: false },
{ title: "Assignment2", orderable: false },
{ title: "Assignment3", orderable: false },
{ title: "Assignment4", orderable: false },
{ title: "Assignment5", orderable: false }
],
pageLength: 20,
order: [[0, "asc"]],
columnDefs: [
{
targets: 3,
data: "Assignment1",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment1/">Assignment 1</a>';
}
},
{
targets: 4,
data: "Assignment2",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment2/">Assignment 2</a>';
}
},
{
targets: 5,
data: "Assignment3",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment3/">Assignment 3</a>';
}
},
{
targets: 6,
data: "Assignment4",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment4/">Assignment 4</a>';
}
},
{
targets: 7,
data: "Assignment5",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment5/">Assignment 5</a>';
}
}
]
});
}
})
</script>
</body>
</html>