Data Analytics Projects
My primary language is Python, along with SQL. I also used R, C++ and JavaScript in Colleg and Internships for Statistics,
Web Development and Cyber Security Projects, you can find the projects in my Software Development Project and Web Development Projects.
I used only Python for my Machine Learning Class, I also did a few small projects outside of class.
Eat-Chikuwa-Game
This is a mini game called eating chikuwa.
The characters and background are from the cartoon New Atashin'chi :)
It is my favorite cartoon growing up.
The objective of this game is to eat as many chikuwa as you can.
You can use the keyboard up and down keys to control character movements.
Eating food other than chikuwa will make your score drop by one.
Misses the chikuwa will also lose one life.
The game started with 0 score and 5 lives.
Game ends when you lose all 5 lives.
This is some screenshots of the game :)
Abalone dataset exploratory data analysis
This is my first exploratory data analysis project from my Machine Learning class in college.
Objectives:
Cleaning data
Perform basic arithmetic analysis on the dataset (mean, mode, 25 percentile, etc)
Find correlations between attributes
Plot graphs
Note: This is a ipynb file.
There are more Machine Learning projects that I have not uploaded to Github just yet, this page will continue to update.
binary_search_algorithm
Objectives:
Using list comprehension to get 1 to 100000.
Split the data into two half each time until target is found by head, tail or mid in the dataset.
Reminder:
List has to be sorted in order to do binary search.
Data types like set cannot perform binary search before changing into list and be sorted.