-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (103 loc) · 3.91 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feilin Guo Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 900px;
margin: 0 auto;
background-color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
h2 {
color: #444;
border-bottom: 2px solid #333;
padding-bottom: 5px;
}
p {
line-height: 1.6;
}
.section {
margin-bottom: 20px;
}
.education, .experience, .projects, .skills {
margin-bottom: 30px;
}
.contact {
text-align: center;
margin-top: 30px;
}
.contact a {
text-decoration: none;
color: #007BFF;
}
</style>
</head>
<body>
<div class="container">
<h1>Feilin Guo</h1>
<p>Email: <a href="mailto:feiling3@illinois.edu">feiling3@illinois.edu</a></p>
<p>Phone: +1 (217) 308-8435 | Shanghai, China</p>
<div class="section education">
<h2>Education</h2>
<p><strong>University of Illinois Urbana-Champaign</strong><br>
Master of Science, Major in Business Analytics<br>
Aug. 2024 – June 2025</p>
<p><strong>Shanghai University of Engineering and Technology</strong><br>
Bachelor of Economics, Major in International Economics and Trade<br>
Sep. 2019 – June 2024 | GPA: 3.7/4.0</p>
</div>
<div class="section experience">
<h2>Internships</h2>
<p><strong>XD Entertainment Pte Ltd, Data Analyst Intern</strong><br>
Jan. 2024 – Apr. 2024</p>
<ul>
<li>Utilized SQL to extract KPIs for the game “Sword of Convallaria” China launch, creating an analysis report that led to a tailored engagement strategy, boosting 1-month user retention by 9%.</li>
</ul>
<p><strong>Volvo, Retail Quality Improvement Intern</strong><br>
June 2023 – Nov. 2023</p>
<ul>
<li>Used Power BI to build a dashboard for dealer development in APAC, realized auto-updates, and published it in Volvo quality department.</li>
<li>Employed Python to analyze vehicle recall data from 2020 to 2023, producing an Excel report from approximately 3300 data entries.</li>
</ul>
</div>
<div class="section projects">
<h2>Selected Projects</h2>
<p><strong>Automatic Pricing and Replenishment Decision of Vegetables</strong><br>
Team Leader, Sep. 2023</p>
<ul>
<li>Used Python and MATLAB to preprocess and visualize 870k rows of daily vegetable sales data and established an ARIMA model for pricing prediction.</li>
</ul>
<p><strong>Vital Signs Data Estimation by Electronic Signals</strong><br>
Team Leader, June 2023</p>
<ul>
<li>Developed a vital sign monitoring pad and analyzed electronic signal data using cluster and decision tree models.</li>
</ul>
</div>
<div class="section skills">
<h2>Skills</h2>
<p>Python, SQL, MATLAB, Power BI, DAX, SPSS, Stata, HTML</p>
</div>
<div class="section interests">
<h2>Interests</h2>
<p>Calligraphy, Piano, Guitar, Tennis</p>
</div>
<div class="contact">
<p>Connect with me: <a href="mailto:feiling3@illinois.edu">Email Me</a></p>
</div>
</div>
</body>
</html>