Complete Syllabus for Data Analytics interview:
SQL:
1. Basic
- SELECT statements with WHERE, ORDER BY, GROUP BY, HAVING
- Basic JOINS (INNER, LEFT, RIGHT, FULL)
- Creating and using simple databases and tables
2. Intermediate
- Aggregate functions (COUNT, SUM, AVG, MAX, MIN)
- Subqueries and nested queries
- Common Table Expressions (WITH clause)
- CASE statements for conditional logic in queries
3. Advanced
- Advanced JOIN techniques (self-join, non-equi join)
- Window functions (OVER, PARTITION BY, ROW_NUMBER, RANK, DENSE_RANK, lead, lag)
- optimization with indexing
- Data manipulation (INSERT, UPDATE, DELETE)
Python:
1. Basic
- Syntax, variables, data types (integers, floats, strings, booleans)
- Control structures (if-else, for and while loops)
- Basic data structures (lists, dictionaries, sets, tuples)
- Functions, lambda functions, error handling (try-except)
- Modules and packages
2. Pandas & Numpy
- Creating and manipulating DataFrames and Series
- Indexing, selecting, and filtering data
- Handling missing data (fillna, dropna)
- Data aggregation with groupby, summarizing data
- Merging, joining, and concatenating datasets
3. Basic Visualization
- Basic plotting with Matplotlib (line plots, bar plots, histograms)
- Visualization with Seaborn (scatter plots, box plots, pair plots)
- Customizing plots (sizes, labels, legends, color palettes)
- Introduction to interactive visualizations (e.g., Plotly)
Excel:
1. Basic
- Cell operations, basic formulas (SUMIFS, COUNTIFS, AVERAGEIFS, IF, AND, OR, NOT & Nested Functions etc.)
- Introduction to charts and basic data visualization
- Data sorting and filtering
- Conditional formatting
2. Intermediate
- Advanced formulas (V/XLOOKUP, INDEX-MATCH, nested IF)
- PivotTables and PivotCharts for summarizing data
- Data validation tools
- What-if analysis tools (Data Tables, Goal Seek)
3. Advanced
- Array formulas and advanced functions
- Data Model & Power Pivot
- Advanced Filter
- Slicers and Timelines in Pivot Tables
- Dynamic charts and interactive dashboards
Power BI:
1. Data Modeling
- Importing data from various sources
- Creating and managing relationships between different datasets
- Data modeling basics (star schema, snowflake schema)
2. Data Transformation
- Using Power Query for data cleaning and transformation
- Advanced data shaping techniques
- Calculated columns and measures using DAX
3. Data Visualization and Reporting - Creating interactive reports and dashboards
- Visualizations (bar, line, pie charts, maps)
- Publishing and sharing reports, scheduling data refreshes
Statistics Fundamentals: Mean, Median, Mode, Standard Deviation, Variance, Probability Distributions, Hypothesis Testing, P-values, Confidence Intervals, Correlation, Simple Linear Regression, Normal Distribution, Binomial Distribution, Poisson Distribution.
Like for more ๐โค๏ธ
Python WhatsApp Community: https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L
SQL:
1. Basic
- SELECT statements with WHERE, ORDER BY, GROUP BY, HAVING
- Basic JOINS (INNER, LEFT, RIGHT, FULL)
- Creating and using simple databases and tables
2. Intermediate
- Aggregate functions (COUNT, SUM, AVG, MAX, MIN)
- Subqueries and nested queries
- Common Table Expressions (WITH clause)
- CASE statements for conditional logic in queries
3. Advanced
- Advanced JOIN techniques (self-join, non-equi join)
- Window functions (OVER, PARTITION BY, ROW_NUMBER, RANK, DENSE_RANK, lead, lag)
- optimization with indexing
- Data manipulation (INSERT, UPDATE, DELETE)
Python:
1. Basic
- Syntax, variables, data types (integers, floats, strings, booleans)
- Control structures (if-else, for and while loops)
- Basic data structures (lists, dictionaries, sets, tuples)
- Functions, lambda functions, error handling (try-except)
- Modules and packages
2. Pandas & Numpy
- Creating and manipulating DataFrames and Series
- Indexing, selecting, and filtering data
- Handling missing data (fillna, dropna)
- Data aggregation with groupby, summarizing data
- Merging, joining, and concatenating datasets
3. Basic Visualization
- Basic plotting with Matplotlib (line plots, bar plots, histograms)
- Visualization with Seaborn (scatter plots, box plots, pair plots)
- Customizing plots (sizes, labels, legends, color palettes)
- Introduction to interactive visualizations (e.g., Plotly)
Excel:
1. Basic
- Cell operations, basic formulas (SUMIFS, COUNTIFS, AVERAGEIFS, IF, AND, OR, NOT & Nested Functions etc.)
- Introduction to charts and basic data visualization
- Data sorting and filtering
- Conditional formatting
2. Intermediate
- Advanced formulas (V/XLOOKUP, INDEX-MATCH, nested IF)
- PivotTables and PivotCharts for summarizing data
- Data validation tools
- What-if analysis tools (Data Tables, Goal Seek)
3. Advanced
- Array formulas and advanced functions
- Data Model & Power Pivot
- Advanced Filter
- Slicers and Timelines in Pivot Tables
- Dynamic charts and interactive dashboards
Power BI:
1. Data Modeling
- Importing data from various sources
- Creating and managing relationships between different datasets
- Data modeling basics (star schema, snowflake schema)
2. Data Transformation
- Using Power Query for data cleaning and transformation
- Advanced data shaping techniques
- Calculated columns and measures using DAX
3. Data Visualization and Reporting - Creating interactive reports and dashboards
- Visualizations (bar, line, pie charts, maps)
- Publishing and sharing reports, scheduling data refreshes
Statistics Fundamentals: Mean, Median, Mode, Standard Deviation, Variance, Probability Distributions, Hypothesis Testing, P-values, Confidence Intervals, Correlation, Simple Linear Regression, Normal Distribution, Binomial Distribution, Poisson Distribution.
Like for more ๐โค๏ธ
Python WhatsApp Community: https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L
๐4โค1
๐ ๐ฎ๐๐๐ฒ๐ฟ ๐ฆ๐ค๐ ๐ณ๐ผ๐ฟ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐๐, ๐๐ฎ๐๐!
Here are 10 must-know SQL concepts:
โ Stored Procedure vs. Function
Procedures allow DML; functions handle calculations only.
โ Clustered vs. Non-Clustered Index
Clustered sorts data physically; non-clustered creates pointers.
โ DELETE vs. TRUNCATE
DELETE is row-specific; TRUNCATE clears all rows fast.
โ WHERE vs. HAVING
WHERE filters rows; HAVING filters after GROUP BY.
โ Primary Key vs. Unique Key
Primary is unique & non-null; Unique allows one null.
โ JOIN Types
INNER, LEFT, RIGHT, FULL JOINโcombine tables in different ways.
โ Normalization Forms
Minimizes redundancy and improves data integrity.
โ ACID Properties
Ensures reliable transactions with Atomicity, Consistency, Isolation, Durability.
โ Indexes
Speeds up data retrieval; careful use is key.
โ Subqueries
Nest queries within queries for flexible data retrieval.
Master these, and youโre SQL-interview ready!
Here are 10 must-know SQL concepts:
โ Stored Procedure vs. Function
Procedures allow DML; functions handle calculations only.
โ Clustered vs. Non-Clustered Index
Clustered sorts data physically; non-clustered creates pointers.
โ DELETE vs. TRUNCATE
DELETE is row-specific; TRUNCATE clears all rows fast.
โ WHERE vs. HAVING
WHERE filters rows; HAVING filters after GROUP BY.
โ Primary Key vs. Unique Key
Primary is unique & non-null; Unique allows one null.
โ JOIN Types
INNER, LEFT, RIGHT, FULL JOINโcombine tables in different ways.
โ Normalization Forms
Minimizes redundancy and improves data integrity.
โ ACID Properties
Ensures reliable transactions with Atomicity, Consistency, Isolation, Durability.
โ Indexes
Speeds up data retrieval; careful use is key.
โ Subqueries
Nest queries within queries for flexible data retrieval.
Master these, and youโre SQL-interview ready!
๐3
๐ฒ ๐๐ฅ๐๐ ๐ฌ๐ผ๐๐ง๐๐ฏ๐ฒ ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐๐ผ ๐๐ถ๐ฐ๐ธ๐๐๐ฎ๐ฟ๐ ๐ฌ๐ผ๐๐ฟ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ!๐
Want to break into Data Analytics but donโt know where to start?
These 6 FREE courses cover everythingโfrom Excel, SQL, Python, and Power BI to Business Math & Statistics and Portfolio Projects! ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4kMSztw
๐ Save this now and start learning today!
Want to break into Data Analytics but donโt know where to start?
These 6 FREE courses cover everythingโfrom Excel, SQL, Python, and Power BI to Business Math & Statistics and Portfolio Projects! ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4kMSztw
๐ Save this now and start learning today!
Python Pandas Beginner's Guide
๐ฅ2
Forwarded from Data Analysis Books | Python | SQL | Excel | Artificial Intelligence | Power BI | Tableau | AI Resources
๐ ๐ฎ๐๐๐ฒ๐ฟ ๐ฆ๐ผ๐ณ๐ ๐ฆ๐ธ๐ถ๐น๐น๐ ๐ณ๐ผ๐ฟ ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ ๐ฆ๐๐ฐ๐ฐ๐ฒ๐๐!๐
Want to stand out in your career?
Soft skills are just as important as technical expertise! ๐
Here are 3 FREE courses to help you communicate, negotiate, and present with confidence
๐๐ข๐ง๐ค๐:-
https://pdlink.in/41V1Yqi
Tag someone who needs this boost! ๐
Want to stand out in your career?
Soft skills are just as important as technical expertise! ๐
Here are 3 FREE courses to help you communicate, negotiate, and present with confidence
๐๐ข๐ง๐ค๐:-
https://pdlink.in/41V1Yqi
Tag someone who needs this boost! ๐
Data Analysis Roadmap.pdf
1001.3 KB
Data Analysis Roadmap!
Don't know where to start your Data Analyst journey? Worry not! Here is a 3 month roadmap that coverts everything a beginner needs, with no prior coding experience!
This roadmap covers:
- Technical Skills: Step-by-step guides for Excel, BI tools (Power BI/Tableau), SQL, Python & Pandas
- Soft Skills: Tips for networking, LinkedIn optimization, and business fundamentals
- Assignments and Projects: Real-world applications each week to build your portfolio
- Interview Prep: Practical resources and mock projects to get you job-ready
If youโre ready to learn with structured weekly goals, free resources, and hands-on assignments, this roadmap is a great place to start!
Don't know where to start your Data Analyst journey? Worry not! Here is a 3 month roadmap that coverts everything a beginner needs, with no prior coding experience!
This roadmap covers:
- Technical Skills: Step-by-step guides for Excel, BI tools (Power BI/Tableau), SQL, Python & Pandas
- Soft Skills: Tips for networking, LinkedIn optimization, and business fundamentals
- Assignments and Projects: Real-world applications each week to build your portfolio
- Interview Prep: Practical resources and mock projects to get you job-ready
If youโre ready to learn with structured weekly goals, free resources, and hands-on assignments, this roadmap is a great place to start!
๐7โค2
๐ ๐ฎ๐๐๐ฒ๐ฟ ๐ฆ๐ค๐ ๐ณ๐ผ๐ฟ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ ๐ถ๐ป ๐๐๐๐ ๐ญ๐ฐ ๐๐ฎ๐๐!๐
Want to become a SQL pro in just 2 weeks?
SQL is a must-have skill for data analysts! ๐ฏ
This step-by-step roadmap will take you from beginner to advanced ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3XOlgwf
๐ Follow this roadmap, practice daily, and take your SQL skills to the next level!
Want to become a SQL pro in just 2 weeks?
SQL is a must-have skill for data analysts! ๐ฏ
This step-by-step roadmap will take you from beginner to advanced ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3XOlgwf
๐ Follow this roadmap, practice daily, and take your SQL skills to the next level!
Preparing for a data science interview can be challenging, but with the right approach, you can increase your chances of success. Here are some tips to help you prepare for your next data science interview:
๐ 1. Review the Fundamentals: Make sure you have a thorough understanding of the fundamentals of statistics, probability, and linear algebra. You should also be familiar with data structures, algorithms, and programming languages like Python, R, and SQL.
๐ 2. Brush up on Machine Learning: Machine learning is a key aspect of data science. Make sure you have a solid understanding of different types of machine learning algorithms like supervised, unsupervised, and reinforcement learning.
๐ 3. Practice Coding: Practice coding questions related to data structures, algorithms, and data science problems. You can use online resources like HackerRank, LeetCode, and Kaggle to practice.
๐ 4. Build a Portfolio: Create a portfolio of projects that demonstrate your data science skills. This can include data cleaning, data wrangling, exploratory data analysis, and machine learning projects.
๐ 5. Practice Communication: Data scientists are expected to effectively communicate complex technical concepts to non-technical stakeholders. Practice explaining your projects and technical concepts in simple terms.
๐ 6. Research the Company: Research the company you are interviewing with and their industry. Understand how they use data and what data science problems they are trying to solve.
By following these tips, you can be well-prepared for your next data science interview. Good luck!
๐ 1. Review the Fundamentals: Make sure you have a thorough understanding of the fundamentals of statistics, probability, and linear algebra. You should also be familiar with data structures, algorithms, and programming languages like Python, R, and SQL.
๐ 2. Brush up on Machine Learning: Machine learning is a key aspect of data science. Make sure you have a solid understanding of different types of machine learning algorithms like supervised, unsupervised, and reinforcement learning.
๐ 3. Practice Coding: Practice coding questions related to data structures, algorithms, and data science problems. You can use online resources like HackerRank, LeetCode, and Kaggle to practice.
๐ 4. Build a Portfolio: Create a portfolio of projects that demonstrate your data science skills. This can include data cleaning, data wrangling, exploratory data analysis, and machine learning projects.
๐ 5. Practice Communication: Data scientists are expected to effectively communicate complex technical concepts to non-technical stakeholders. Practice explaining your projects and technical concepts in simple terms.
๐ 6. Research the Company: Research the company you are interviewing with and their industry. Understand how they use data and what data science problems they are trying to solve.
By following these tips, you can be well-prepared for your next data science interview. Good luck!
๐2
Forwarded from Artificial Intelligence
๐ณ ๐๐ฅ๐๐ ๐ ๐ถ๐ฐ๐ฟ๐ผ๐๐ผ๐ณ๐ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ผ๐๐ฟ๐๐ฒ๐๐
Master Data Analytics in 2025!
These 7 FREE courses will help you master Power BI, Excel, SQL, and Data Fundamentals!
๐๐ข๐ง๐ค ๐:-
https://pdlink.in/4iMlJXZ
Enroll For FREE & Get Certified ๐
Master Data Analytics in 2025!
These 7 FREE courses will help you master Power BI, Excel, SQL, and Data Fundamentals!
๐๐ข๐ง๐ค ๐:-
https://pdlink.in/4iMlJXZ
Enroll For FREE & Get Certified ๐
โ
๐-๐๐ญ๐๐ฉ ๐๐จ๐๐๐ฆ๐๐ฉ ๐ญ๐จ ๐๐ฐ๐ข๐ญ๐๐ก ๐ข๐ง๐ญ๐จ ๐ญ๐ก๐ ๐๐๐ญ๐ ๐๐ง๐๐ฅ๐ฒ๐ญ๐ข๐๐ฌ ๐
๐ข๐๐ฅ๐โ
๐โโ๏ธ๐๐ฎ๐ข๐ฅ๐ ๐๐๐ฒ ๐๐ค๐ข๐ฅ๐ฅ๐ฌ: Focus on core skillsโExcel, SQL, Power BI, and Python.
๐โโ๏ธ๐๐๐ง๐๐ฌ-๐๐ง ๐๐ซ๐จ๐ฃ๐๐๐ญ๐ฌ: Apply your skills to real-world data sets. Projects like sales analysis or customer segmentation show your practical experience. You can find projects on Youtube.
๐โโ๏ธ๐ ๐ข๐ง๐ ๐ ๐๐๐ง๐ญ๐จ๐ซ: Connect with someone experienced in data analytics for guidance(like me ๐ ). They can provide valuable insights, feedback, and keep you on track.
๐โโ๏ธ๐๐ซ๐๐๐ญ๐ ๐๐จ๐ซ๐ญ๐๐จ๐ฅ๐ข๐จ: Compile your projects in a portfolio or on GitHub. A solid portfolio catches a recruiterโs eye.
๐โโ๏ธ๐๐ซ๐๐๐ญ๐ข๐๐ ๐๐จ๐ซ ๐๐ง๐ญ๐๐ซ๐ฏ๐ข๐๐ฐ๐ฌ: Practice SQL queries and Python coding challenges on Hackerrank & LeetCode. Strengthening your problem-solving skills will prepare you for interviews.
๐โโ๏ธ๐๐ฎ๐ข๐ฅ๐ ๐๐๐ฒ ๐๐ค๐ข๐ฅ๐ฅ๐ฌ: Focus on core skillsโExcel, SQL, Power BI, and Python.
๐โโ๏ธ๐๐๐ง๐๐ฌ-๐๐ง ๐๐ซ๐จ๐ฃ๐๐๐ญ๐ฌ: Apply your skills to real-world data sets. Projects like sales analysis or customer segmentation show your practical experience. You can find projects on Youtube.
๐โโ๏ธ๐ ๐ข๐ง๐ ๐ ๐๐๐ง๐ญ๐จ๐ซ: Connect with someone experienced in data analytics for guidance(like me ๐ ). They can provide valuable insights, feedback, and keep you on track.
๐โโ๏ธ๐๐ซ๐๐๐ญ๐ ๐๐จ๐ซ๐ญ๐๐จ๐ฅ๐ข๐จ: Compile your projects in a portfolio or on GitHub. A solid portfolio catches a recruiterโs eye.
๐โโ๏ธ๐๐ซ๐๐๐ญ๐ข๐๐ ๐๐จ๐ซ ๐๐ง๐ญ๐๐ซ๐ฏ๐ข๐๐ฐ๐ฌ: Practice SQL queries and Python coding challenges on Hackerrank & LeetCode. Strengthening your problem-solving skills will prepare you for interviews.
๐3
๐๐บ๐ฝ๐ฟ๐ฒ๐๐ ๐ฅ๐ฒ๐ฐ๐ฟ๐๐ถ๐๐ฒ๐ฟ๐ ๐๐ถ๐๐ต ๐ง๐ต๐ฒ๐๐ฒ ๐ฑ ๐ฆ๐ค๐ ๐ฃ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐๐ ๐ณ๐ผ๐ฟ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐!๐
Want to land a data analytics job?
Showcase your SQL skills with real-world projects! ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3FJzJDu
Build your portfolio & stand out in job applications! Start todayโ ๏ธ
Want to land a data analytics job?
Showcase your SQL skills with real-world projects! ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3FJzJDu
Build your portfolio & stand out in job applications! Start todayโ ๏ธ
Prepare for GATE: The Right Time is NOW!
GeeksforGeeks brings you everything you need to crack GATE 2026 โ 900+ live hours, 300+ recorded sessions, and expert mentorship to keep you on track.
Whatโs inside?
โ Live & recorded classes with Indiaโs top educators
โ 200+ mock tests to track your progress
โ Study materials - PYQs, workbooks, formula book & more
โ 1:1 mentorship & AI doubt resolution for instant support
โ Interview prep for IITs & PSUs to help you land opportunities
Learn from Experts Like:
Satish Kumar Yadav โ Trained 20K+ students
Dr. Khaleel โ Ph.D. in CS, 29+ years of experience
Chandan Jha โ Ex-ISRO, AIR 23 in GATE
Vijay Kumar Agarwal โ M.Tech (NIT), 13+ years of experience
Sakshi Singhal โ IIT Roorkee, AIR 56 CSIR-NET
Shailendra Singh โ GATE 99.24 percentile
Devasane Mallesham โ IIT Bombay, 13+ years of experience
Use code UPSKILL30 to get an extra 30% OFF (Limited time only)
๐ Enroll for a free counseling session now: https://gfgcdn.com/tu/UI2/
GeeksforGeeks brings you everything you need to crack GATE 2026 โ 900+ live hours, 300+ recorded sessions, and expert mentorship to keep you on track.
Whatโs inside?
โ Live & recorded classes with Indiaโs top educators
โ 200+ mock tests to track your progress
โ Study materials - PYQs, workbooks, formula book & more
โ 1:1 mentorship & AI doubt resolution for instant support
โ Interview prep for IITs & PSUs to help you land opportunities
Learn from Experts Like:
Satish Kumar Yadav โ Trained 20K+ students
Dr. Khaleel โ Ph.D. in CS, 29+ years of experience
Chandan Jha โ Ex-ISRO, AIR 23 in GATE
Vijay Kumar Agarwal โ M.Tech (NIT), 13+ years of experience
Sakshi Singhal โ IIT Roorkee, AIR 56 CSIR-NET
Shailendra Singh โ GATE 99.24 percentile
Devasane Mallesham โ IIT Bombay, 13+ years of experience
Use code UPSKILL30 to get an extra 30% OFF (Limited time only)
๐ Enroll for a free counseling session now: https://gfgcdn.com/tu/UI2/
๐2
Free Datasets to practice data science projects
1. Enron Email Dataset
Data Link: https://www.cs.cmu.edu/~enron/
2. Chatbot Intents Dataset
Data Link: https://github.com/katanaml/katana-assistant/blob/master/mlbackend/intents.json
3. Flickr 30k Dataset
Data Link: https://www.kaggle.com/hsankesara/flickr-image-dataset
4. Parkinson Dataset
Data Link: https://archive.ics.uci.edu/ml/datasets/parkinsons
5. Iris Dataset
Data Link: https://archive.ics.uci.edu/ml/datasets/Iris
6. ImageNet dataset
Data Link: https://www.image-net.org/
7. Mall Customers Dataset
Data Link: https://www.kaggle.com/shwetabh123/mall-customers
8. Google Trends Data Portal
Data Link: https://trends.google.com/trends/
9. The Boston Housing Dataset
Data Link: https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html
10. Uber Pickups Dataset
Data Link: https://www.kaggle.com/fivethirtyeight/uber-pickups-in-new-york-city
11. Recommender Systems Dataset
Data Link: https://cseweb.ucsd.edu/~jmcauley/datasets.html
Source Code: https://bit.ly/37iBDEp
12. UCI Spambase Dataset
Data Link: https://archive.ics.uci.edu/ml/datasets/Spambase
13. GTSRB (German traffic sign recognition benchmark) Dataset
Data Link: https://benchmark.ini.rub.de/?section=gtsrb&subsection=dataset
Source Code: https://bit.ly/39taSyH
14. Cityscapes Dataset
Data Link: https://www.cityscapes-dataset.com/
15. Kinetics Dataset
Data Link: https://deepmind.com/research/open-source/kinetics
16. IMDB-Wiki dataset
Data Link: https://data.vision.ee.ethz.ch/cvl/rrothe/imdb-wiki/
17. Color Detection Dataset
Data Link: https://github.com/codebrainz/color-names/blob/master/output/colors.csv
18. Urban Sound 8K dataset
Data Link: https://urbansounddataset.weebly.com/urbansound8k.html
19. Librispeech Dataset
Data Link: https://www.openslr.org/12
20. Breast Histopathology Images Dataset
Data Link: https://www.kaggle.com/paultimothymooney/breast-histopathology-images
21. Youtube 8M Dataset
Data Link: https://research.google.com/youtube8m/
Join for more -> https://t.iss.one/dataportfolio
ENJOY LEARNING ๐๐
1. Enron Email Dataset
Data Link: https://www.cs.cmu.edu/~enron/
2. Chatbot Intents Dataset
Data Link: https://github.com/katanaml/katana-assistant/blob/master/mlbackend/intents.json
3. Flickr 30k Dataset
Data Link: https://www.kaggle.com/hsankesara/flickr-image-dataset
4. Parkinson Dataset
Data Link: https://archive.ics.uci.edu/ml/datasets/parkinsons
5. Iris Dataset
Data Link: https://archive.ics.uci.edu/ml/datasets/Iris
6. ImageNet dataset
Data Link: https://www.image-net.org/
7. Mall Customers Dataset
Data Link: https://www.kaggle.com/shwetabh123/mall-customers
8. Google Trends Data Portal
Data Link: https://trends.google.com/trends/
9. The Boston Housing Dataset
Data Link: https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html
10. Uber Pickups Dataset
Data Link: https://www.kaggle.com/fivethirtyeight/uber-pickups-in-new-york-city
11. Recommender Systems Dataset
Data Link: https://cseweb.ucsd.edu/~jmcauley/datasets.html
Source Code: https://bit.ly/37iBDEp
12. UCI Spambase Dataset
Data Link: https://archive.ics.uci.edu/ml/datasets/Spambase
13. GTSRB (German traffic sign recognition benchmark) Dataset
Data Link: https://benchmark.ini.rub.de/?section=gtsrb&subsection=dataset
Source Code: https://bit.ly/39taSyH
14. Cityscapes Dataset
Data Link: https://www.cityscapes-dataset.com/
15. Kinetics Dataset
Data Link: https://deepmind.com/research/open-source/kinetics
16. IMDB-Wiki dataset
Data Link: https://data.vision.ee.ethz.ch/cvl/rrothe/imdb-wiki/
17. Color Detection Dataset
Data Link: https://github.com/codebrainz/color-names/blob/master/output/colors.csv
18. Urban Sound 8K dataset
Data Link: https://urbansounddataset.weebly.com/urbansound8k.html
19. Librispeech Dataset
Data Link: https://www.openslr.org/12
20. Breast Histopathology Images Dataset
Data Link: https://www.kaggle.com/paultimothymooney/breast-histopathology-images
21. Youtube 8M Dataset
Data Link: https://research.google.com/youtube8m/
Join for more -> https://t.iss.one/dataportfolio
ENJOY LEARNING ๐๐
โค4๐1
๐๐๐ ๐๐ฅ๐๐ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐
Top Free Courses You Can Take Today
1๏ธโฃ Data Science Fundamentals
2๏ธโฃ AI & Machine Learning
3๏ธโฃ Python for Data Science
4๏ธโฃ Cloud Computing & Big Data
๐๐ข๐ง๐ค ๐:-
https://pdlink.in/41Hy2hp
Enroll For FREE & Get Certified ๐
Top Free Courses You Can Take Today
1๏ธโฃ Data Science Fundamentals
2๏ธโฃ AI & Machine Learning
3๏ธโฃ Python for Data Science
4๏ธโฃ Cloud Computing & Big Data
๐๐ข๐ง๐ค ๐:-
https://pdlink.in/41Hy2hp
Enroll For FREE & Get Certified ๐
๐2