Training vs. Sleep in Professional Cycling
Published:
A collection of thoughts, projects, and learnings from my journey through data science, research, and sport.
Use this section to preview formatting in Markdown for future posts or notes.
“The more I learn, the more I realize how much I don’t know.” —Einstein
| Project | Year | Description |
|---|---|---|
| Churn Prediction | 2024 | Classification using XGBoost |
| Sentiment Analyzer | 2024 | NLP project on tweet sentiment |
| Bike Injury Dashboard | 2023 | Interactive Plotly app using pandas |
Unordered
Ordered
Monospace```python def predict_churn(data): model = XGBClassifier() model.fit(data.X, data.y) return model.predict(data.X_test)