-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (56 loc) · 3.02 KB
/
Copy pathabout.html
File metadata and controls
77 lines (56 loc) · 3.02 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/style-about.css">
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" type="text/css" href="css/fonts/icomoon/style.css">
<title>NUS Statistics Society</title>
</head>
<body>
<div class="banner">
<img class="header-img" src="images/StatsSocLogo.jpg" width="100" height="100">
<h1 class="header-banner">NUS Statistics Society</h1>
</div>
<div class="header-bar">
<nav class="header-bar">
<ul id="horizontal-list">
<li><a href="about.html">About Us</a></li>
<li><a href="events.html">Events</a></li>
</ul>
</nav>
</div>
<section class="about-banner">
<img src="images/about-us-cover.jpg">
<h1 class="about-us-header">About Us</h1>
<p class="about-intro">The ellipses that are centered around βˆ represent regions of constant
RSS. In other words, all of the points on a given ellipse share a common
value of the RSS. As the ellipses expand away from the least squares coefficient estimates, the RSS increases. Equations (6.8) and (6.9) indicate
that the lasso and ridge regression coefficient estimates are given by the
first point at which an ellipse contacts the constraint region. Since ridge
regression has a circular constraint with no sharp points, this intersection
will not generally occur on an axis, and so the ridge regression coefficient
estimates will be exclusively non-zero. However, the lasso constraint has
corners at each of the axes, and so the ellipse will often intersect the constraint region at an axis. When this occurs, one of the coefficients will equal
zero. In higher dimensions, many of the coefficient estimates may equal zero
simultaneously. In Figure 6.7, the intersection occurs at β1 = 0, and so the
resulting model will only include β2.</p>
<h2 class="about-us-header">Committees</h2>
</section>
<div class="footer">
<div class="footer-container">
<div class="row">
<div class="col-12 text-center">
<div class="social-icons">
<a href="https://www.facebook.com/nus.statistics.soc/"><span class="icon-facebook"></span></a>
<a href="https://www.linkedin.com/company/nusstatssoc"><span class="icon-linkedin"></span></a>
<a href="#"><span class="icon-instagram"></span></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>