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

Highlights

  • Pro

Block or report prathmbavge

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
prathmbavge/README.md


Hey there, I’m Prathmesh Bavge 👋


👩‍💻 About Me

I’m a Third-year Information Technology student at Pune Institute of Computer Technology, Pune, India.

  • 🌱 Learning: Next.js, Three.js, advanced React patterns, and scalable backend architectures with Python Flask.
  • In my free time: I enjoy competitive programming, reading tech blogs, and scripting YouTube Shorts.

🛠 Languages & Tools

JavaScript TypeScript Python Java

React Next.js Three.js Flask

MongoDB MySQL AWS

🚀 Projects & Collaborations

TechBash Notes App

• Built with HTML, CSS & JavaScript; migrating to Vite-React with Three.js, GSAP & Glassmorphism for enhanced UI/UX.

Key Collaboration

  • Cloud Minds Team: With Nawaz Sayyad & Mayuresh Muluk, secured 3rd prize at the AWS Ideathon for an LLM fine-tuning prototype (SFLLM).

🎓 Certifications & Achievements

  • Diploma, VAPM Latur – Completed 2024
  • Cisco Introduction to Data Science – Data Analytics & AI/ML fundamentals
  • INFOSYS-SPRINGBOARD: Basics of Python
  • LinkedIn Learning: Project Management Foundations
  • Multiple hackathon & workshop participations (Innovation Foundation, RAILMIT, DEVTOWN, INNOTECH)

🔥 My GitHub Stats

GitHub Streak Stats

GitHub Stats

GitHub Trophies


“Striving to build solutions that blend innovation with impact.”

simple_linear_regression_advertising.py

import pandas as pd import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression

1️⃣ Load dataset (ensure 'Advertising.csv' is in the same folder)

data = pd.read_csv("Advertising.csv")

Use TV as predictor and Sales as target

X = data[['TV']] # feature must be 2D y = data['Sales'] # target

2️⃣ Fit simple linear regression

model = LinearRegression() model.fit(X, y)

print("Intercept:", model.intercept_) print("Slope:", model.coef_[0]) print(f"R² score: {model.score(X, y):.3f}")

3️⃣ Plot scatter + regression line

plt.figure(figsize=(7,5)) plt.scatter(X, y, color='blue', label='Data Points') plt.plot(X, model.predict(X), color='red', linewidth=2, label='Regression Line') plt.xlabel('TV Advertising Budget ($1000s)') plt.ylabel('Sales (in 1000s units)') plt.title('Simple Linear Regression: TV vs Sales') plt.legend() plt.show()

Popular repositories Loading

  1. MyFirstrepository MyFirstrepository Public

    Thank you Hello world programming....

    JavaScript 2

  2. PathGenie PathGenie Public

    JavaScript 2

  3. Microproject-file-v2 Microproject-file-v2 Public

    1

  4. Working-Version-of-Micro-Project Working-Version-of-Micro-Project Public

    This code is runnable in the site!!

    HTML 1

  5. Medical Medical Public

    This is my Medical Store Management System Program

    C++ 1

  6. binaryProgram binaryProgram Public

    This is the Harsh kale important micro project program..!

    1