-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-data.html
79 lines (71 loc) · 3.07 KB
/
project-data.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Music Analytics</title>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<script src="assets/js/analytics.js" defer></script> <!-- Ensure JS is loaded after HTML -->
</head>
<body class="site-project-data">
<header class="site-header">
<div class="container">
<h1 class="site-title">Project Data</h1>
<p class="site-description">Here's how we obtained the data for this project</p>
</div>
</header>
<nav class="site-nav">
<div class="container">
<ul class="nav-list">
<li><a href="index.html" class="raise">Home</a></li>
<li><a href="goals.html" class="raise">Goals</a></li>
<li><a href="project-data.html" class="raise">Project Data</a></li>
<li><a href="findings.html" class="raise">Findings</a></li>
<li><a href="spotify-top-50.html" class="raise">Spotify Predictive Analytics</a></li>
<li><a href="team.html" class="raise">Meet the Team</a></li>
</ul>
</div>
</nav>
<main class="site-content container">
<section id="data" class="team-section">
<div class="team-container">
<!-- Historical and Financial Data Card -->
<div class="team-member">
<h3>Historical and Financial Data</h3>
<p>We found financial data from <a href="https://fred.stlouisfed.org/docs/api/fred/" target="_blank">FRED</a>.
The data tracks levels on indicators like unemployment and inflation for each month in the past 10 years.
</p>
</div>
<!-- Spotify Data Card -->
<div class="team-member">
<h3>Spotify Data</h3>
<p>We utilized musical data from <a
href="https://www.kaggle.com/datasets/conorvaneden/best-songs-on-spotify-for-every-year-2000-2023"
target="_blank">Kaggle</a>.
This data includes musical features like danceability, energy, valence, and tempo for the top 50 songs on
Spotify for each month in the past 10 years.</p>
</div>
<!-- GitHub Integration Card -->
<div class="team-member">
<h3>GitHub Integration</h3>
<p>The project utilized a GitHub repository to automate the daily extraction of data from Spotify's API.
The repository <a href="https://github.com/rsm-jhernandezguizar/SpotifyTop50" target="_blank">SpotifyTop50
GitHub</a>
hosts the code responsible for connecting to Spotify via its API and retrieving relevant data. This
automated process ensured
up-to-date data for predictive analysis and visualization.
</p>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<p>© 2024 Group 1. All Rights Reserved.</p>
</div>
</footer>
<script src="assets/js/analytics.js"></script>
</body>
</html>