Blog Archive

A collection of thoughts, projects, and learnings from my journey through data science, research, and sport.


📚 Recent Posts


✨ Formatting Reference

Use this section to preview formatting in Markdown for future posts or notes.

Headers

H1 - Title

H2 - Section

H3 - Subsection

H4 - Subsubsection

Blockquote

“The more I learn, the more I realize how much I don’t know.” —Einstein

Table

ProjectYearDescription
Churn Prediction2024Classification using XGBoost
Sentiment Analyzer2024NLP project on tweet sentiment
Bike Injury Dashboard2023Interactive Plotly app using pandas

Lists

Unordered

  • Python
  • SQL
    • PostgreSQL
    • SQLite
  • Streamlit

Ordered

  1. Load dataset
  2. Clean missing values
  3. Fit model
  4. Evaluate results

Inline Elements

Code Block

```python def predict_churn(data): model = XGBClassifier() model.fit(data.X, data.y) return model.predict(data.X_test)