-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics.html
More file actions
102 lines (81 loc) · 3.16 KB
/
analytics.html
File metadata and controls
102 lines (81 loc) · 3.16 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
<html lang ="en">
<header>
<link rel="stylesheet" type="text/css" href="./style.css">
<div class="topnav">
<a href="https://samkibe.github.io/Kibe/">|Home|</a>
<a href="science.html">|Data Science|</a>
<a href="analytics.html">|Data Analytics|</a>
<a href="engineer.html">|Data Engineering|</a>
<a href="posts.html">|Write ups|</a>
<!-- <a href="#cv.html">|CV|</a> -->
</div>
<style>
body {
background: url(assets/s.png);
}
.left-section {
width: 50%;
float: left;
padding: 20px;
}
.right-section {
width: 50%;
float: right;
padding: 20px;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
li a {
color: blue;
line-height: 1.5;
}
</style>
</header>
<body>
<div class="left-section">
<h1>Data Analytics Projects</h1>
<ul>
<li> <a href="https://github.com/samkibe/My-Serious-SQL-encounter-pros-and-cons">|Serious SQL In Data Exploration| Marketing Analytics Case study | Health Analytics mini case study |</a></li>
<li> <a href="https://github.com/samkibe/Microsoft-Tableau">|Creating a Dashboard || Data_Storytelling || Interactive Filters in Microsoft Tableau|
eg Creating an Employees Annual Bonus Analysis System.| </a></li>
<li> <a href="https://github.com/samkibe/Microsoft-Excel">| Pivot tables || Excel formulas || Data cleaning || Charts || Dashboard| Utilizing active slicers to implement visualization through PivotChart analysis |In Microsoft Excel.|</a></li>
<li> <a href="https://github.com/samkibe/Microsoft-Power-BI">| Power BI ~ Timeseries, Aggregation and Filters | Aggregation and granularity | </a></li>
<li> <a href="#">|Coming soon|</a></li>
<!-- Add more projects as needed -->
</ul>
</div>
<div class="right-section">
<h1>More Data Analytics Projects</h1>
<ul>
<li> <a href="https://github.com/samkibe/Basic-Exploratory-Data-Analysis">|Exploratory Data Analysis using Python| Basic statistics | </a></li>
<li> <a href="#">|Coming soon|</a></li>
<!-- Add more projects as needed -->
</ul>
</div>
</body>
<footer>
<section class="container">
<h2 class="h2 mb-5">Most Importantly,</h2>
<div class="me text-center flex">
<div class="w-full text-end">Its all about </div>
<div id="hobbies_text" class="w-full text-start">Data</div>
</div>
<!-- Todo: Create an array of hobbies and cycle through them -->
</section>
<script>
const hobbies = ["|AI|","|Data Science|", "|Python|","|R|","|Machine Learning|", "|FAMILY|", "|Data Analytics|", "|SQL|","|Tableau|", "|Microsoft Excel|", "|NLP|", "Merci"]; // Add your hobbies to this array
const hobbiesText = document.getElementById("hobbies_text");
let currentIndex = 0;
function cycleHobbies() {
hobbiesText.textContent = hobbies[currentIndex];
currentIndex = (currentIndex + 1) % hobbies.length;
}
// Call the cycleHobbies function every 3 seconds (you can adjust the time)
setInterval(cycleHobbies, 500);
</script>
</section>
</footer>
</html>