-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from john-bagiliko/jb_branch
Jb branch
- Loading branch information
Showing
4 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,6 +134,23 @@ | |
} | ||
|
||
|
||
.slider { | ||
width: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.slides { | ||
display: flex; | ||
transition: transform 0.5s ease; | ||
} | ||
|
||
.slides img { | ||
width: 100%; | ||
height: auto; | ||
} | ||
|
||
|
||
|
||
|
||
</style> | ||
</head> | ||
|
@@ -178,6 +195,74 @@ | |
<div class="container section-title" data-aos="fade-up"> | ||
<div class="row gy-4"> | ||
|
||
<!-- begin news item --> | ||
<div class="col-md-12 col-sm-12 col-lg-12" id="news-item-4" data-aos="fade-up" data-aos-delay="200"> | ||
<br /> | ||
<br /> | ||
<br /> | ||
|
||
<h2> 3-Day Training on Data Science </h2> | ||
<p class="author-date">July 17, 2024</p> | ||
<br/> | ||
|
||
<!-- <img src="assets/img/day1.jpeg" alt="Introduction to Data" class="responsive-image"> --> | ||
<div class="slider" id="imageSlider"> | ||
<div class="slides"> | ||
<img src="assets/img/day1.jpeg" alt="Introduction to Data"> | ||
<img src="assets/img/day2.jpeg" alt="Day 2 of Data Science Training"> | ||
<img src="assets/img/day3.jpeg" alt="Day 3 of Data Science Training"> | ||
</div> | ||
</div> | ||
|
||
<br/> | ||
|
||
<p style="text-align: justify";> | ||
GHAIDEMS in collaboration with the Association of Computer Science, Mathematics & Statistics Students of the Kwame Nkrumah University of | ||
Science and and Technology, KNUST, organized a 3-day training on data science. | ||
</p> | ||
|
||
<br/> | ||
|
||
<p style="text-align: justify";> | ||
In the span of three days, participants were taken through the following topics: | ||
</p> | ||
|
||
<p style="text-align: justify";> | ||
1. Introduction to Data with R and R-Instat: This session was taken by Prof. Roger Stern and Dr. Francis Torgbor. Participants were introduced to sources of data, data acquiscition, | ||
data wrangling and visualization using the R programming language, and the R-Instat software. | ||
</p> | ||
|
||
<br/> | ||
|
||
<p style="text-align: justify";> | ||
2. Introduction to Data Science: This session was taken by Dr. Lily Clements and Mr. Nicholas Opoku. Participants were introduced to the science of data. | ||
Particularly, this was on how to make sense of data, understanding variablility in data, and building meaningful and useful models. | ||
</p> | ||
|
||
<br/> | ||
|
||
<p style="text-align: justify";> | ||
3. Introduction to Python for Data Science: This session was taken by Dr. George Simmons and Mr. John Bagiliko. Participants were introduced to the basics of the Python | ||
programming language, and how it is used for data science. | ||
</p> | ||
|
||
|
||
<br/> | ||
|
||
<p style="text-align: justify";> | ||
These sessions were very interactive and hands-on. Did you miss it? You can still get access to the resources and recordings of the sessions. | ||
The materials are all available <a href="https://drive.google.com/drive/folders/10dlSi_Y_wExEX7V1UO4ABXkbDCYOoSr1?usp=sharing" target="_blank">here</a>. | ||
</p> | ||
|
||
<br/> | ||
|
||
<p style="text-align: justify";> | ||
For more information, please contact us at <a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
|
||
</div> | ||
<!-- end news item --> | ||
|
||
<!-- begin news item --> | ||
<div class="col-md-12 col-sm-12 col-lg-12" id="news-item-3" data-aos="fade-up" data-aos-delay="200"> | ||
|
||
|
@@ -536,6 +621,11 @@ <h4> About the Speaker </h4> | |
</div> | ||
|
||
<ul class="nav flex-column" id="newsLinks"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#news-item-4"> | ||
3-Day Training on Data Science | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#news-item-3"> | ||
Careers in Mathematics and How Playing Plays a Role | ||
|
@@ -646,6 +736,28 @@ <h4>Contact Us</h4> | |
} | ||
} | ||
</script> | ||
|
||
<script> | ||
let currentSlide = 0; | ||
const slides = document.querySelectorAll('#imageSlider .slides img'); | ||
const totalSlides = slides.length; | ||
|
||
function nextSlide() { | ||
slides[currentSlide].style.display = 'none'; | ||
currentSlide = (currentSlide + 1) % totalSlides; | ||
slides[currentSlide].style.display = 'block'; | ||
} | ||
|
||
function prevSlide() { | ||
slides[currentSlide].style.display = 'none'; | ||
currentSlide = (currentSlide - 1 + totalSlides) % totalSlides; | ||
slides[currentSlide].style.display = 'block'; | ||
} | ||
|
||
// Automatic slide change every 3 seconds | ||
setInterval(nextSlide, 3000); | ||
</script> | ||
|
||
|
||
</body> | ||
</html> |