-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEuro_Tuition.html
236 lines (209 loc) · 13.3 KB
/
Euro_Tuition.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE HTML>
<!--
Solid State by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Manzano Analytics</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<link rel="icon" type="image/png" href="images/geo_flake_b&w.png">
<style>
.content2 {
background-color: rgba(0, 0, 0, 0.55); /* Dark background color */
margin-left: auto; /* Add padding to improve readability */
margin-right: auto;
width: 50%;
color: #ffffff;
border-radius: 10px; /* Add rounded corners for aesthetic appeal */
}
.hover-zoom:hover {
transform: scale(1.1); /* Increase size by 10% on hover */
}
</style>
</head>
<body>
<header class="banner">
<div style="padding-top: 100px; padding-left: 200px; margin-bottom: -150px; width: 350px; height: auto;">
<a href="index.html">
<img src="images/geo_flake_b&w.png" alt="Manzano Analytics Icon" style="width: 100%; height: 100%; transition: transform 0.6s ease-in-out;"
class="hover-zoom">
</a>
</div>
</header>
</body>
<body class="is-preload" style="background-image: url(images/mountains_stars_2.jpeg); background-size: cover;">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html">Manzano Analytics</a></h1>
<nav>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<div class="inner" style="width: auto;">
<h2>Menu</h2>
<ul class="links">
<li><a href="index.html"><img url="images/geo_flake_b&w.png" style="width: 20px; height: auto; vertical-align: middle;"> Home</a></li>
<li><a href="resume.html" target="_blank" class="icon solid fa-gem"> Resume</a></li>
<li><a href="Women_Empowerment.html">The Economy of Women's Rights</a></li>
<li><a href="Rockbuster.html">RockBuster and XGBoost</a></li>
<li><a href="Influenza.html">Influenza Staffing Strategy</a></li>
<li><a href="Beecher.html">Archaelogical Analysis</a></li>
<li><a href="Instacart.html">Instacart Customer Analysis</a></li>
<li><a href="Gameco.html">GameCo Marketing Strategy</a></li>
<li><a href="Euro_Tuition.html">European Education Costs</a></li>
<li><a href="Pig_E_Bank.html">Bank Churn Modeling</a></li>
<li><a href="index.html#footer"><img src="images/geo_flake_double.png" style="width: 20px; height: auto; vertical-align: middle;"> Contact</a></li>
</ul>
<a href="#" class="close">Close</a>
</div>
</nav>
<!-- Wrapper -->
<section id="wrapper">
<header>
<div class="content2">
<h2>European Education Costs</h2>
<p>Higher Education costs and GDP in Europe.</p>
</div>
<div class="image-container" style="position: absolute; right: 120px; top: 200px;">
<img src="images/Tuition_intro.png" style="width: 280px; height: auto; border-width: 5px;">
</div>
</header>
<!-- Content -->
<div class="wrapper">
<div class="inner">
<h3 class="major">Exploratory Data Analysis</h3>
<p>This data is from data.world, and can be found <a href="https://data.world/makeovermonday/2024w5-the-cheapest-countries-to-study-in-europe-in-2023">here</a>. This includes educational and living costs for Europe in 2023. We then begin this analysis by needing to create a single merged dataset. GDP per capita come from the World Bank.</p>
<img src="images/Tuition_EDA.png" alt="" width="700" height="500" style="display: block; margin-left: auto; margin-right: auto; margin-bottom: 50px;">
<p>Here Python is used for cleaning and merging the datasets into only relevant data. Countries names are checked using a list comprehension, and values are adjusted by the average exchange rate of US dollars to UK pounds.</p>
<h3 class="major">Tableau Dashboard Engineering</h3>
<p>The merged dataset is then imported into tableau for data visualization. The main aim is to visualize and statistically analyze the countries total education costs and gdp per capita.</p>
<img src="images/Tuition_Rankings.png" width="850" height="auto" style="display: block; margin-left: auto; margin-right: auto; margin-bottom: 50px;">
<p>This shows the rankings of Europe by Tuition Fees. To gain a deeper understanding, GDP Per Capita and Living Costs are explored in a Geographic Analysis.</p>
<img src="images/Tuition_Dash.png" width="800" height="auto" style="display: block; margin-left: auto; margin-right: auto; margin-bottom: 50px;">
<p>The coefficient is very high, indicating that a high percentage of the variance in total educational costs and living costs are determined by gdp per capita.</p>
<p>When living costs are controlled for, the coefficient decreases substantially, but remains positive and significant.</p>
<img src="images/Tuition_Education_Cost.png" width="700" height="auto" style="display: block; margin-left: auto; margin-right: auto; margin-bottom: 200px;">
<p></p>
<h3 class="major">Tableau Dashboard</h3>
<p>Below is the entire tableau dashboard for exploration.</p>
<div class='tableauPlaceholder' id='viz1707429383260' style='position: relative'><noscript><a href='#'><img alt='European Education ' src='https://public.tableau.com/static/images/Eu/Euro_Education_23/EuropeanEducation/1_rss.png' style='border: none' /></a></noscript><object class='tableauViz' style='display:none;'><param name='host_url' value='https%3A%2F%2Fpublic.tableau.com%2F' /> <param name='embed_code_version' value='3' /> <param name='site_root' value='' /><param name='name' value='Euro_Education_23/EuropeanEducation' /><param name='tabs' value='no' /><param name='toolbar' value='yes' /><param name='static_image' value='https://public.tableau.com/static/images/Eu/Euro_Education_23/EuropeanEducation/1.png' /> <param name='animate_transition' value='yes' /><param name='display_static_image' value='yes' /><param name='display_spinner' value='yes' /><param name='display_overlay' value='yes' /><param name='display_count' value='yes' /><param name='language' value='en-US' /><param name='filter' value='publish=yes' /></object></div> <script type='text/javascript'> var divElement = document.getElementById('viz1707429383260'); var vizElement = divElement.getElementsByTagName('object')[0]; vizElement.style.width='1016px';vizElement.style.height='991px'; var scriptElement = document.createElement('script'); scriptElement.src = 'https://public.tableau.com/javascripts/api/viz_v1.js'; vizElement.parentNode.insertBefore(scriptElement, vizElement); </script>
<h3 class="major" style="padding-top: 90px; padding-bottom: -100px;"></h3>
<section id="banner" style="display: block; margin: 0 auto; padding-top: -190px;">
<div class="inner" >
<div class="logo"><img src="images/geo_flake_b&w.png" style="width: 150px; height: auto; display: block; margin: 0 auto; padding-bottom: 50px;"></i></div>
<div class="no-background">
<h2 style="font-size: 30px; display: block; margin: 0 auto; padding-left: 40px; white-space: nowrap;">Manzano Analytics: European Education Costs</h2>
<p style="font-size: 30px; font-weight: 100; text-align: center;">Lessons Learned:</p>
</div>
<div class="content1">
<section>
<div class="row">
<div class="alternate">
<h4 style="font-size: 18px;">Tableau Dashboard Engineering</h4>
<ul style="font-size: 20px;">
<li>Tableau is a powerful tool for combining correlational analysis and geospatial visualizations,
and this project helped me refine my process for each. Illustrating the correlation between total
education costs and GDP per capita was straightforward, but condensing this information into a single
frame was essential. Leveraging Tableau's features, creating a cohesive dashboard through effective data
visualization techniques becomes more accessible.
</li>
</ul>
<h4 style="font-size: 18px;">Designing with Icons</h4>
<ul style="font-size: 20px;">
<li>To make the most appealing visuals possible, I imported custom icons of flags and matched each with
the correct country. Tableau allows for easy importing of custom icons, and this supports its popularity
with the data visualization community. The project highlights how attention to aesthetically pleasing design
elements enhances the impact and clarity of data visualization.
</li>
</ul>
<h4 style="font-size: 18px;">Python Data Wrangling</h4>
<ul style="font-size: 20px;">
<li>This project involved merging datasets from data.world and the World Bank, necessitating proficiency in Python data
manipulation. I defined a function for list comprehensions in order to easily check which countries
were different, and then changed the names where applicable. Utilizing list comprehensions and
function building streamlines and accelerates this process compared to other methods.
</li>
</ul>
</div>
</section>
</div>
</div>
</section>
<h3 class="major"></h3>
<section class="features">
<article>
<a href="Beecher.html" class="image"><img src="images/Beecher_Tree_Map.png" alt="" /></a>
<h3 class="major">Archaelogical Site Analysis</h3>
<p>A descriptive analysis of a Southeastern Kentucky Archaelogical site.</p>
<a href="Beecher.html" class="special">Learn more</a>
</article>
<article>
<a href="#" class="image"><img src="images/Flu_Intro.png" alt="" /></a>
<h3 class="major">Influenza Staffing Strategy</h3>
<p>Every year, hospitals are faced with staffing challenges due to the influx of influenza patients. This prescriptive analysis uses USA CDC data and seeks to define and direct staff from low-need states to high-need states.</p>
<a href="#" class="special">Learn more</a>
</article>
</section>
</div>
</div>
</section>
<!-- Footer -->
<section id="footer">
<div class="inner">
<h2 class="major">Get in touch</h2>
<p> A seasoned and self-made fund manager, averaging a 40% CAGR for six years, and demonstrating an expertise in applied data analytics.</p>
<form method="post" action="https://formspree.io/f/mayrjnpo">
<div class="fields">
<div class="field">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="field">
<label for="email">Email</label>
<input type="email" name="email" id="email" />
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="4"></textarea>
</div>
</div>
<ul class="actions">
<li><input type="submit" value="Send Message" /></li>
</ul>
</form>
<ul class="contact">
<li class="icon brands fa-codepen">
<b>Manzano Analytics</b><br />
Aaron Manzano<br />
Washington, PA 15301
</li>
<li class="icon solid fa-phone">(724) 787-9773</li>
<li class="icon solid fa-envelope"><a href="mailto:aaronlmanzano@gmail.com">AaronLManzano@gmail.com</a></li>
<li class="icon solid fa-gem"><a href="resume.html" target="_blank">Resume</a></li>
<li class="icon brands fa-linkedin"><a href="https://www.linkedin.com/in/aaronmanzano" target="_blank">Linkedin</a></li>
<li class="icon brands fa-github"><a href="https://github.com/tendyzen" target="_blank">GitHub</a></li>
</ul>
<ul class="copyright">
<li>© Manzano Analytics Inc. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>