-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhousing_details.html
More file actions
132 lines (116 loc) · 5.51 KB
/
Copy pathhousing_details.html
File metadata and controls
132 lines (116 loc) · 5.51 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5DSMFK94');</script>
<!-- End Google Tag Manager -->
<title>Housing Price Predictor | Frank Ellingsen</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5DSMFK94"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="page-wrapper">
<!-- Header -->
<div id="header-wrapper">
<div class="container">
<header id="header">
<h1><a href="index.html" id="logo">data_frank</a></h1>
<nav id="nav">
<a href="index.html">Home</a>
<a href="p1.html">MS Fabric</a>
<a href="p2.html">Power BI</a>
<a href="p3.html">Exploratory Dashboard</a>
<a href="p4.html">Excel Data Model</a>
<a href="login.html">Login</a>
</nav>
</header>
</div>
</div>
<!-- Main -->
<div id="main">
<div class="container">
<div class="row main-row">
<!-- Left: Project Content -->
<div class="col-8 col-12-medium">
<section>
<h2 style="border-bottom: none; font-size: 2.5em; margin-bottom: 0.5rem;">Housing Price Predictor</h2>
<div style="margin-bottom: 2rem;">
<span class="tag-badge primary">Python ·</span>
<span class="tag-badge primary">Machine Learning ·</span>
<span class="tag-badge primary">Regression · </span>
<span class="tag-badge primary">Streamlit</span></span>
</div>
<img src="images/housing-price.png" alt="Housing Price Chart" class="top" style="width: 100%;">
<h3>Business Problem</h3>
<p>
Accurately pricing residential properties is critical for buyers, sellers, and real estate professionals.
Manual pricing methods are often subjective and fail to capture complex interactions between location, size, and quality.
</p>
<p>
The goal of this project is to support <strong>data-driven pricing decisions</strong> by building a predictive model
that estimates housing prices and highlights the key factors influencing value.
</p>
<h3>The Process</h3>
<ul>
<li><strong>Data Cleaning:</strong> Standardized raw housing datasets and handled missing values.</li>
<li><strong>Feature Engineering:</strong> Created location-based bins and price tiers to improve model accuracy.</li>
<li><strong>Model Selection:</strong> Evaluated multiple algorithms, selecting Random Forest for its balance of performance and interpretability.</li>
<li><strong>Validation:</strong> Compared predictions against actual market prices to ensure reliability.</li>
</ul>
<h3>Insights & Business Value</h3>
<p>
The model demonstrates strong predictive performance with an <strong>R² Score of 0.82</strong> and an <strong>18% reduction in RMSE</strong>
compared to baseline estimates. Beyond raw predictions, the analysis identified that location and living area remain the primary price drivers.
</p>
</section>
</div>
<!-- Right: Sidebar -->
<div class="col-4 col-12-medium">
<section class="project-card" style="padding: 1.5rem; border-left: none; border-top: 6px solid #007897;">
<h3>Tools Used</h3>
<div style="margin-bottom: 1.5rem;">
<span class="tag-badge">Pandas ·</span>
<span class="tag-badge">scikit-learn ·</span>
<span class="tag-badge">Matplotlib ·</span>
<span class="tag-badge">Seaborn ·</span>
<span class="tag-badge">Streamlit </span>
</div>
<h3>Key Metrics</h3>
<div class="metric-box" style="flex-direction: column;">
<div class="metric-item">R²: 0.82</div>
<div class="metric-item">RMSE ↓ 18%</div>
<div class="metric-item">8k+ Data Points</div>
</div>
<h3 style="margin-top: 1.5rem;">Project Links</h3>
<ul class="link-list">
<li><a href="https://github.com/Frank-Ellingsen/Housing-Price-Predictor" target="_blank" rel="noopener">GitHub Repository →</a></li>
<li><a href="https://housing-price-predictor-8u16.onrender.com/" target="_blank" rel="noopener">Live Streamlit App →</a></li>
</ul>
</section>
<p style="text-align: center;">
<a href="index.html" style="font-weight: 600;">← Back to Portfolio</a>
</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div id="footer-wrapper">
<div class="container">
<div id="copyright">
© Frank Ellingsen. All rights reserved.
</div>
</div>
</div>
</div>
</body>
</html>