-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
63 lines (51 loc) · 1.68 KB
/
main.html
File metadata and controls
63 lines (51 loc) · 1.68 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="javascript/main.js"></script>
<title>Chi-Chun Chen</title>
</head>
<script>
function bigImg(x)
{
x.style.height="82px";
x.style.width="82px";
}
function normalImg(x)
{
x.style.height="32px";
x.style.width="32px";
}
function gosmile(){
var yes = confirm('Are you going to the dataset page?');
if (yes) {
window.open(' https://www.kaggle.com/uciml/adult-census-income ', 'kaggle', config='height=500,width=500');
} else {
alert('你按了取消按鈕');
}
}
</script>
<body>
<div id="goWeka">
<a href="DecisionTreeJPEG.html">WEKA決策樹圖</a>
</div>
<div id="btnPlace">
<h1>2022 System Implementation Final Project</h1>
<div style="background-color: bisque;">
<h2>It's a system analysising "Adult Census Income"</h2>
<p style="font-size: 18px;">
This data was extracted from the 1994 Census Bureau database by Ronny Kohavi and Barry Becker.<br>
The prediction task is determining whether someone makes over $50K a year..
</p>
</div>
<button class="btnStyle" onclick="goPage1()" >Desion Tree</button>
<button class="btnStyle" onclick="goPage2()">Cluster Knn analysis</button>
<br>
<br>
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="JPEG/Smile.png" alt="Smiley" width="24" height="24" id="smile" onclick="gosmile()">
</div>
</body>
</html>