Human resource data is hard to come by. The dataset used for this project was created to help teach
graduate HR students how to use and analyze data
[Read More]
Implementing a Regression Decision Tree
A decision tree is a predictive modeling approach that separates data into classes using a top-down appraoch,
with broader classes at the top and more specific classes as you travel down the tree.
[Read More]
🍕 Predicting Tip Income 🍕
While working as a delivery driver for many years, I kept record of how much I made in tips.
I decided to use that information to create a model that predicts daily tips. 🤑
To test the model, click >Here<
[Read More]
👩🏻🎓 2019 US Student Loan Debt Burden on Borrowers by State and Age Range
According to statistics, 80% of Americans are in debt. From auto loans to credit cards, most people have or are experiencing the crushing feeling of living under a burden of debt. Most of that debt is found in home mortgages, but student loans trails behind as the second highest category...
[Read More]
📊 Replicating FiveThirtyEight Charts
The website FiveThirtyEight covers a variety of news from sports, politics, and economics. However, they are also well known for their visualizations. There is even a FiveThirtyEight style sheet in the Matplotlib library.
import matplotlib.pyplot as plt
plt.style.use('fivethirtyeight')
[Read More]