Skip to content
View nitinrawat05's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report nitinrawat05

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
nitinrawat05/README.md

Typing SVG

Banner


🧠 About Me

  • πŸ“Œ Data Enthusiast focused on insightful storytelling through data
  • 🧬 Exploring the world of ML, LLMs, and AI automation
  • πŸ“Š Specializing in dashboard design, ETL, and data wrangling
  • πŸ’‘ Current obsessions: LangChain, Hugging Face, TensorFlow
  • πŸ’¬ Fun fact: I love debugging JOIN queries like solving puzzles 🧩

πŸ’Ό Experience Snapshot

🧠 MIS Intelligence Analyst – AdByteHub

  • Analyzed performance marketing data (CTR, CPC, ROAS, conversions) for Facebook Ads campaigns
  • Created detailed revenue, campaign, and ROI reports to provide actionable insights
  • Developed Tableau dashboards to track KPIs and campaign performance
  • Managed and cleaned large datasets to ensure accurate reporting and analysis

πŸš€ Jr. Data Analyst – Elon Staffing

  • Automated KPI dashboards using Tableau & Excel
  • Streamlined ETL pipelines using Python (Pandas, NumPy)
  • Performed ad-hoc SQL queries for fast insights
  • Reduced reporting time by 30% via automation

πŸ” Freelance Projects – Data Analyst Intern

  • βœ… Worked on Sales, Loan Prediction, and Marketing Analytics projects
  • πŸ› οΈ Tools used: MySQL, Scikit-learn, Power BI, Seaborn, Excel

πŸ”§ Tech Stack & Tools

βš™οΈ Programming, Analysis & ML

πŸ“Š BI & Visualization

πŸ€– AI & LLMs (Learning)


πŸ“Š Project Gallery

πŸ”Ή Sales Analysis

Sales Dashboard

Trends & Revenue insights powered by Matplotlib & Seaborn

πŸ”Ή Loan Default Prediction

# ML: Random Forest for Bank Loan Classification
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score

# Load data
df = pd.read_csv("loan_data.csv")
X = df.drop("loan_status", axis=1)
y = df["loan_status"]

# Train/Test Split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

# Model Training
model = RandomForestClassifier(random_state=42)
model.fit(X_train, y_train)

# Prediction & Accuracy
preds = model.predict(X_test)
print(f"Accuracy: {accuracy_score(y_test, preds):.2f}")

    keep_trying()

Pinned Loading

  1. SQL-EDA-Analytical-Project SQL-EDA-Analytical-Project Public

    An in-depth Exploratory Data Analysis (EDA) project that leverages Python libraries like Pandas, Matplotlib, and Seaborn to uncover trends, patterns, and insights from datasets, preparing the data …

    TSQL 1

  2. Princess-EDA-ML Princess-EDA-ML Public

    A rich dataset and analysis on Disney princesses covering character traits, story elements, and social media popularity. Includes EDA and machine learning to explore cultural trends, narrative role…

    Jupyter Notebook 1

  3. SQL-DataWarehouse-Project- SQL-DataWarehouse-Project- Public

    Building a modern data warehouse With SQL server Including ETL processes Data modelling , and analytics

    1

  4. Product-Price-Dynamics Product-Price-Dynamics Public

    A Python-based analysis of product retail prices, examining price trends, tax impacts, and regional differences over time.

    Jupyter Notebook 1

  5. Decoding-Customer-Shopping-Trends-A-Modern-Analysis Decoding-Customer-Shopping-Trends-A-Modern-Analysis Public

    Jupyter Notebook

  6. sales-Analytics sales-Analytics Public

    Sales analytics dashboard in Tableau, transforming raw data into insights with multi-dimensional analysis and predictive modeling for business optimization.