Data Science & Machine Learning
68K subscribers
744 photos
78 files
657 links
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free

For collaborations: @love_data
Download Telegram
Which file should you upload along with your Jupyter Notebook to make your project reproducible?
Anonymous Quiz
8%
a) Screenshot of results
16%
b) Excel output file
72%
c) requirements.txt or environment.yml
4%
d) A video walkthrough
โค1
โค2
Which of the following is NOT a recommended practice when uploading a data science project to GitHub?*
Anonymous Quiz
15%
A) Including a well-written README.md with setup and usage instructions
69%
B) Uploading large raw datasets directly into the repository
8%
C) Organizing code into modular scripts under a src/ folder
8%
D) Providing a requirements.txt or environment.yml for dependencies
โค1
๐—•๐—ฒ๐—ฐ๐—ผ๐—บ๐—ฒ ๐—ฎ ๐—–๐—ฒ๐—ฟ๐˜๐—ถ๐—ณ๐—ถ๐—ฒ๐—ฑ ๐——๐—ฎ๐˜๐—ฎ ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜€๐˜ ๐—œ๐—ป ๐—ง๐—ผ๐—ฝ ๐— ๐—ก๐—–๐˜€๐Ÿ˜

Learn Data Analytics, Data Science & AI From Top Data Experts 

Curriculum designed and taught by Alumni from IITs & Leading Tech Companies.

๐—›๐—ถ๐—ด๐—ต๐—น๐—ถ๐—ด๐—ต๐˜๐—ฒ๐˜€:- 
- 12.65 Lakhs Highest Salary
- 500+ Partner Companies
- 100% Job Assistance
- 5.7 LPA Average Salary

๐—•๐—ผ๐—ผ๐—ธ ๐—ฎ ๐—™๐—ฅ๐—˜๐—˜ ๐——๐—ฒ๐—บ๐—ผ๐Ÿ‘‡:-

๐—ข๐—ป๐—น๐—ถ๐—ป๐—ฒ :- https://pdlink.in/4fdWxJB

๐—›๐˜†๐—ฑ๐—ฒ๐—ฟ๐—ฎ๐—ฏ๐—ฎ๐—ฑ :- https://pdlink.in/4kFhjn3

๐—ฃ๐˜‚๐—ป๐—ฒ :- https://pdlink.in/45p4GrC

( Hurry Up ๐Ÿƒโ€โ™‚๏ธLimited Slots )
โค3
๐— ๐—ผ๐˜€๐˜ ๐—”๐˜€๐—ธ๐—ฒ๐—ฑ ๐—ฆ๐—ค๐—Ÿ ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„ ๐—ค๐˜‚๐—ฒ๐˜€๐˜๐—ถ๐—ผ๐—ป๐˜€ ๐—ฎ๐˜ ๐— ๐—”๐—”๐—ก๐—š ๐—–๐—ผ๐—บ๐—ฝ๐—ฎ๐—ป๐—ถ๐—ฒ๐˜€๐Ÿ”ฅ๐Ÿ”ฅ

1. How do you retrieve all columns from a table?

SELECT * FROM table_name;


2. What SQL statement is used to filter records?

SELECT * FROM table_name
WHERE condition;

The WHERE clause is used to filter records based on a specified condition.


3. How can you join multiple tables? Describe different types of JOINs.

SELECT columns
FROM table1
JOIN table2 ON table1.column = table2.column
JOIN table3 ON table2.column = table3.column;

Types of JOINs:

1. INNER JOIN: Returns records with matching values in both tables

SELECT * FROM table1
INNER JOIN table2 ON table1.column = table2.column;

2. LEFT JOIN (or LEFT OUTER JOIN): Returns all records from the left table and matched records from the right table. Unmatched records will have NULL values.

SELECT * FROM table1
LEFT JOIN table2 ON table1.column = table2.column;

3. RIGHT JOIN (or RIGHT OUTER JOIN): Returns all records from the right table and matched records from the left table. Unmatched records will have NULL values.

SELECT * FROM table1
RIGHT JOIN table2 ON table1.column = table2.column;

4. FULL JOIN (or FULL OUTER JOIN): Returns records when there is a match in either left or right table. Unmatched records will have NULL values.

SELECT * FROM table1
FULL JOIN table2 ON table1.column = table2.column;


4. What is the difference between WHERE and HAVING clauses?

WHERE: Filters records before any groupings are made.

SELECT * FROM table_name
WHERE condition;

HAVING: Filters records after groupings are made.

SELECT column, COUNT(*)
FROM table_name
GROUP BY column
HAVING COUNT(*) > value;


5. How do you count the number of records in a table?

SELECT COUNT(*) FROM table_name;

This query counts all the records in the specified table.

6. How do you calculate average, sum, minimum, and maximum values in a column?

Average: SELECT AVG(column_name) FROM table_name;

Sum: SELECT SUM(column_name) FROM table_name;

Minimum: SELECT MIN(column_name) FROM table_name;

Maximum: SELECT MAX(column_name) FROM table_name;


7. What is a subquery, and how do you use it?

Subquery: A query nested inside another query

SELECT * FROM table_name
WHERE column_name = (SELECT column_name FROM another_table WHERE condition);




Till then keep learning and keep exploring ๐Ÿ™Œ
โค6๐Ÿ‘2๐Ÿ‘1
Since many of you were asking me to send Data Science Session

๐Ÿ“ŒSo we have come with a session for you!! ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป

This will help you to speed up your job hunting process ๐Ÿ’ช

Register here
๐Ÿ‘‡๐Ÿ‘‡
https://go.acciojob.com/RYFvdU

Only limited free slots are available so Register Now
โค2๐Ÿ‘1
๐ŸŽ“ ๐—จ๐—ฝ๐˜€๐—ธ๐—ถ๐—น๐—น ๐—ช๐—ถ๐˜๐—ต ๐—š๐—ผ๐˜ƒ๐—ฒ๐—ฟ๐—ป๐—บ๐—ฒ๐—ป๐˜-๐—”๐—ฝ๐—ฝ๐—ฟ๐—ผ๐˜ƒ๐—ฒ๐—ฑ ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€ ๐—™๐—ผ๐—ฟ ๐—™๐—ฅ๐—˜๐—˜ ๐Ÿ˜

Industry-approved Certifications to enhance employability

โœ… AI & ML
โœ… Cloud Computing
โœ… Cybersecurity
โœ… Data Analytics & More!

Earn industry-recognized certificates and boost your career ๐Ÿš€

๐—˜๐—ป๐—ฟ๐—ผ๐—น๐—น ๐—™๐—ผ๐—ฟ ๐—™๐—ฅ๐—˜๐—˜๐Ÿ‘‡:- 
 
https://pdlink.in/3ImMFAB
 
Get the Govt. of India Incentives on course completion๐Ÿ†
โค1
โœ… Resume Tips for Data Science Roles ๐Ÿ“„๐Ÿ’ผ

Your resume is your first impression โ€” make it clear, concise, and confident with these tips:

1. Keep It One Page (for beginners)
โฆ Recruiters spend 6โ€“10 seconds glancing through.
โฆ Use crisp bullet points, no long paragraphs.
โฆ Focus on relevant data science experience.

2. Strong Summary at the Top 
Example: 
โ€œAspiring Data Scientist with hands-on experience in Python, Pandas, and Machine Learning. Built 5+ real-world projects including house price prediction and sentiment analysis.โ€

3. Highlight Technical Skills 
Separate Skills section:
โฆ Languages: Python, SQL
โฆ Libraries: Pandas, NumPy, Matplotlib, Scikit-learn
โฆ Tools: Jupyter, VS Code, Git, Tableau
โฆ Concepts: EDA, Regression, Classification, Data Cleaning

4. Showcase Projects (with results) 
Each project: 2โ€“3 bullet points
โฆ โ€œBuilt linear regression model predicting house prices with 85% accuracy using Scikit-learn.โ€
โฆ โ€œCleaned & visualized 10K+ rows of sales data with Pandas & Seaborn.โ€ 
  Include GitHub links.

5. Education & Certifications 
Include:
โฆ Degree (any field)
โฆ Online certifications (Coursera, Kaggle, etc.)
โฆ Mention course projects or capstones

6. Quantify Everything 
Instead of โ€œAnalyzed dataโ€, write: 
โ€œAnalyzed 20K+ customer rows to identify churn factors, improving model performance by 12%.โ€

7. Customize for Each Job
โฆ Match keywords from job descriptions.
โฆ Use role-specific terms like โ€œclassification model,โ€ โ€œdata pipeline.โ€

๐Ÿ’ฌ React โค๏ธ for more!

Data Science Learning Series: 
https://whatsapp.com/channel/0029Va8v3eo1NCrQfGMseL2D/998

Learn Python: 
https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L
โค10
๐๐š๐ฒ ๐€๐Ÿ๐ญ๐ž๐ซ ๐๐ฅ๐š๐œ๐ž๐ฆ๐ž๐ง๐ญ - ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป ๐—ณ๐—ฟ๐—ผ๐—บ ๐˜๐—ต๐—ฒ ๐—ง๐—ผ๐—ฝ ๐Ÿญ% ๐—ผ๐—ณ ๐˜๐—ต๐—ฒ ๐—ง๐—ฒ๐—ฐ๐—ต ๐—œ๐—ป๐—ฑ๐˜‚๐˜€๐˜๐—ฟ๐˜†๐Ÿ˜

Learn Coding & Get Placed In Top Tech Companies

 ๐Ÿ”ฅ Highlights:-
โœ… ๐Ÿฐ๐Ÿญ๐—Ÿ๐—ฃ๐—” - Highest Package
โœ… ๐Ÿณ.๐Ÿฐ๐—Ÿ๐—ฃ๐—” - Average Package
โœ… ๐Ÿฑ๐Ÿฌ๐Ÿฌ+ Hiring Partners
โœ… ๐Ÿฎ๐Ÿฌ๐Ÿฌ๐Ÿฌ+ Students Placed

๐Ÿ”— ๐‘๐ž๐ ๐ข๐ฌ๐ญ๐ž๐ซ ๐๐จ๐ฐ๐Ÿ‘‡:-

 https://pdlink.in/4hO7rWY

Hurry! Limited Seats Available๐Ÿƒโ€โ™‚๏ธ
โค3
List of Python Project Ideas๐Ÿ’ก๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป๐Ÿ -

Beginner Projects

๐Ÿ”น Calculator
๐Ÿ”น To-Do List
๐Ÿ”น Number Guessing Game
๐Ÿ”น Basic Web Scraper
๐Ÿ”น Password Generator
๐Ÿ”น Flashcard Quizzer
๐Ÿ”น Simple Chatbot
๐Ÿ”น Weather App
๐Ÿ”น Unit Converter
๐Ÿ”น Rock-Paper-Scissors Game

Intermediate Projects

๐Ÿ”ธ Personal Diary
๐Ÿ”ธ Web Scraping Tool
๐Ÿ”ธ Expense Tracker
๐Ÿ”ธ Flask Blog
๐Ÿ”ธ Image Gallery
๐Ÿ”ธ Chat Application
๐Ÿ”ธ API Wrapper
๐Ÿ”ธ Markdown to HTML Converter
๐Ÿ”ธ Command-Line Pomodoro Timer
๐Ÿ”ธ Basic Game with Pygame

Advanced Projects

๐Ÿ”บ Social Media Dashboard
๐Ÿ”บ Machine Learning Model
๐Ÿ”บ Data Visualization Tool
๐Ÿ”บ Portfolio Website
๐Ÿ”บ Blockchain Simulation
๐Ÿ”บ Chatbot with NLP
๐Ÿ”บ Multi-user Blog Platform
๐Ÿ”บ Automated Web Tester
๐Ÿ”บ File Organizer
โค18
Roadmap for AI Engineers
โค4๐Ÿ‘1๐Ÿฅฐ1
๐—š๐—ฒ๐—ป๐—ฒ๐—ฟ๐—ฎ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—”๐—œ + ๐— ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด โ€“ ๐—™๐—ฟ๐—ฒ๐—ฒ ๐—–๐—ฒ๐—ฟ๐˜๐—ถ๐—ณ๐—ถ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป๐Ÿ˜

Unlock the Power of Generative AI & ML - 100% Free Certification Course

๐Ÿ“š Learn Future-Ready Skills
๐ŸŽ“ Earn a Recognized Certificate
๐Ÿ’ก Build Real-World Projects

๐Ÿ”— ๐—˜๐—ป๐—ฟ๐—ผ๐—น๐—น ๐—ก๐—ผ๐˜„ ๐Ÿ‘‡:-

https://pdlink.in/3U3eZuq

Enroll Today for Free & Get Certified ๐ŸŽ“
โค1๐Ÿ‘1
๐Ÿง  Learn AI in 15 Steps
๐Ÿ‘3โค1
๐Ÿ”— How to use Machine Learning to predict fraud

1. Identify project objectives

Determine the key business objectives upon which the machine learning model will be built.
For instance, your goal may be like:

- Reduce false alerts
- Minimize estimated chargeback ratio
- Keep operating costs at a controlled level

2. Data preparation

To create fraudster profiles, machines need to study about previous fraudulent events from historical data. The more the data provided, the better the results of analyzation. The raw data garnered by the company must be cleaned and provided in a machine-understandable format.

3. Constructing a machine learning model


The machine learning model is the final product of the entire ML process.
Once the model receives data related to a new transaction, the model will deliver an output, highlighting whether the transaction is a fraud attempt or not.

4. Data scoring

Deploy the ML model and integrate it with the companyโ€™s infrastructure.

For instance, whenever a customer purchases a product from an e-store, the respective data transaction will be sent to the machine learning model. The model will then analyze the data to generate a recommendation, depending on which the e-storeโ€™s transaction system will make its decision, i.e., approve or block or mark the transaction for a manual review. This process is known as data scoring.

5. Upgrading the model

Just like how humans learn from their mistakes and experience, machine learning models should be tweaked regularly with the updated information, so that the models become increasingly sophisticated and detect fraud activities more accurately.
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4๐Ÿ‘2
You're an upcoming data scientist?
This is for you.

The key to success isn't hoarding every tutorial and course.
It's about taking that first, decisive step.
Start small. Start now.

I remember feeling paralyzed by options:
Coursera, Udacity, bootcamps, blogs...
Where to begin?

Then my mentor gave me one piece of advice:

"Stop planning. Start doing.
Pick the shortest video you can find.
Watch it. Now."

It was tough love, but it worked.

I chose a 3-minute intro to pandas.
Then a quick matplotlib demo.
Suddenly, I was building momentum.

Each bite-sized lesson built my confidence.
Every "I did it!" moment sparked joy.
I was no longer overwhelmedโ€”I was excited.

So here's my advice for you:

1. Find a 5-minute data science video. Any topic.
2. Watch it before you finish your coffee.
3. Do one thing you learned. Anything.

Remember:
A messy start beats a perfect plan
Every. Single. Time.
โค2๐Ÿ‘2๐Ÿ‘1
๐Ÿš€๐Ÿ”ฅ ๐—•๐—ฒ๐—ฐ๐—ผ๐—บ๐—ฒ ๐—ฎ๐—ป ๐—”๐—ด๐—ฒ๐—ป๐˜๐—ถ๐—ฐ ๐—”๐—œ ๐—•๐˜‚๐—ถ๐—น๐—ฑ๐—ฒ๐—ฟ โ€” ๐—™๐—ฟ๐—ฒ๐—ฒ ๐—–๐—ฒ๐—ฟ๐˜๐—ถ๐—ณ๐—ถ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ
Master the most in-demand AI skill in todayโ€™s job market: building autonomous AI systems.

In Ready Tensorโ€™s free, project-first program, youโ€™ll create three portfolio-ready projects using ๐—Ÿ๐—ฎ๐—ป๐—ด๐—–๐—ต๐—ฎ๐—ถ๐—ป, ๐—Ÿ๐—ฎ๐—ป๐—ด๐—š๐—ฟ๐—ฎ๐—ฝ๐—ต, and vector databases โ€” and deploy production-ready agents that employers will notice.

Includes guided lectures, videos, and code.
๐—™๐—ฟ๐—ฒ๐—ฒ. ๐—ฆ๐—ฒ๐—น๐—ณ-๐—ฝ๐—ฎ๐—ฐ๐—ฒ๐—ฑ. ๐—–๐—ฎ๐—ฟ๐—ฒ๐—ฒ๐—ฟ-๐—ฐ๐—ต๐—ฎ๐—ป๐—ด๐—ถ๐—ป๐—ด.

๐Ÿ‘‰ Apply now: https://go.readytensor.ai/cert-549-agentic-ai-certification
โค2