forked from bchiang7/bchiang7.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,18 +1,26 @@ | ||
<section class="section featured-projects"> | ||
<div class="section__title">Featured Projects</div> | ||
<div class="section__content"> | ||
<div class="project blistabloc"> | ||
<div class="project"> | ||
<figure class="project__pic"> | ||
<a href="https://github.com/rsandan/nba_clustering" target="_blank"> | ||
<img src="{{site.baseurl}}/img/featured/nba_clustering/output.png" alt=""> | ||
<img src="{{site.baseurl}}/img/featured/nba_clustering/output.png" alt="Image description"> | ||
</a> | ||
</figure> | ||
<figcaption class="project__caption"> | ||
<div class="project__name"> | ||
next man up | ||
Next Man Up | ||
</div> | ||
<p>Implemented clustering model to group NBA, G League, and NCAA players based on box score statistics enabling: potential role player replacements, | ||
scouting emerging talent, and contingency planning for injuries or trades.</p> | ||
</figcaption> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
.project__pic img { | ||
max-width: 80%; /* 20% smaller than the original size */ | ||
height: auto; | ||
} | ||
|
||
|