7 Best GitHub Repositories to Break into Data Analytics and Data Science
If you're diving into data science or data analytics, these repositories will give you the edge you need. Check them out:
1οΈβ£ 100-Days-Of-ML-Code
π https://github.com/Avik-Jain/100-Days-Of-ML-Code
βοΈ Stars: ~42k
2οΈβ£ awesome-datascience
π https://github.com/academic/awesome-datascience
βοΈ Stars: ~22.7k
3οΈβ£ Data-Science-For-Beginners
π https://github.com/microsoft/Data-Science-For-Beginners
βοΈ Stars: ~14.5k
4οΈβ£ data-science-interviews
π https://github.com/alexeygrigorev/data-science-interviews
βοΈ Stars: ~5.8k
5οΈβ£ Coding and ML System Design
π https://github.com/weeeBox/coding-and-ml-system-design
βοΈ Stars: ~3.5k
6οΈβ£ Machine Learning Interviews from MAANG
π https://github.com/arunkumarpillai/Machine-Learning-Interviews
βοΈ Stars: ~8.1k
7οΈβ£ data-science-ipython-notebooks
π https://github.com/donnemartin/data-science-ipython-notebooks
βοΈ Stars: ~27.2k
Explore these amazing resources and take your data science journey to the next level! π
#DataScience #DataAnalytics #GitHub #MachineLearning #CodingSkills
If you're diving into data science or data analytics, these repositories will give you the edge you need. Check them out:
1οΈβ£ 100-Days-Of-ML-Code
π https://github.com/Avik-Jain/100-Days-Of-ML-Code
βοΈ Stars: ~42k
2οΈβ£ awesome-datascience
π https://github.com/academic/awesome-datascience
βοΈ Stars: ~22.7k
3οΈβ£ Data-Science-For-Beginners
π https://github.com/microsoft/Data-Science-For-Beginners
βοΈ Stars: ~14.5k
4οΈβ£ data-science-interviews
π https://github.com/alexeygrigorev/data-science-interviews
βοΈ Stars: ~5.8k
5οΈβ£ Coding and ML System Design
π https://github.com/weeeBox/coding-and-ml-system-design
βοΈ Stars: ~3.5k
6οΈβ£ Machine Learning Interviews from MAANG
π https://github.com/arunkumarpillai/Machine-Learning-Interviews
βοΈ Stars: ~8.1k
7οΈβ£ data-science-ipython-notebooks
π https://github.com/donnemartin/data-science-ipython-notebooks
βοΈ Stars: ~27.2k
Explore these amazing resources and take your data science journey to the next level! π
#DataScience #DataAnalytics #GitHub #MachineLearning #CodingSkills
GitHub
GitHub - Avik-Jain/100-Days-Of-ML-Code: 100 Days of ML Coding
100 Days of ML Coding. Contribute to Avik-Jain/100-Days-Of-ML-Code development by creating an account on GitHub.
π3β€2
Provides a default value for a column when no value is specified.
βοΈ Helps in avoiding NULL values in columns where default values make sense.
β Example of DEFAULT Constraint
βοΈ If
β Inserting Data (Valid Cases)
---
πΉ Summary of SQL Constraints
| Constraint | Ensures | Can Be NULL? | Allows Multiple in a Table? |
|--------------|---------------------------------|--------------|--------------------------|
| PRIMARY KEY | Uniqueness & Non-null values | β No | β No (Only One) |
| FOREIGN KEY | Referential Integrity | β Yes (If NULL allowed) | β Yes |
| UNIQUE | Uniqueness (without Primary Key) | β Yes | β Yes |
| CHECK | Enforces condition on values | β Yes | β Yes |
| DEFAULT | Provides a default value | β Yes | β Yes |
---
πΉ Your Task for Today
β Create a Students & Courses database using all the constraints.
β Try inserting valid & invalid values to see how constraints work.
β Comment below if you have any questions! π¬
---
πΉ Whatβs Next?
Tomorrow, we will learn Creating and Managing Indexes! Stay tuned! π
π‘ Like β€οΈ & Share if you're enjoying this SQL series! π
#DataScience #DataScience #DataAnalytics
βοΈ Helps in avoiding NULL values in columns where default values make sense.
β Example of DEFAULT Constraint
CREATE TABLE Orders (
OrderID INT PRIMARY KEY,
CustomerName VARCHAR(50),
OrderDate DATE DEFAULT CURRENT_DATE
);
βοΈ If
OrderDate
is not provided, it automatically gets the current date. β Inserting Data (Valid Cases)
INSERT INTO Orders (OrderID, CustomerName) VALUES (1, 'Alice'); -- β OrderDate is set to today's date
INSERT INTO Orders (OrderID, CustomerName, OrderDate) VALUES (2, 'Bob', '2025-01-01'); -- β Valid, custom date given
---
πΉ Summary of SQL Constraints
| Constraint | Ensures | Can Be NULL? | Allows Multiple in a Table? |
|--------------|---------------------------------|--------------|--------------------------|
| PRIMARY KEY | Uniqueness & Non-null values | β No | β No (Only One) |
| FOREIGN KEY | Referential Integrity | β Yes (If NULL allowed) | β Yes |
| UNIQUE | Uniqueness (without Primary Key) | β Yes | β Yes |
| CHECK | Enforces condition on values | β Yes | β Yes |
| DEFAULT | Provides a default value | β Yes | β Yes |
---
πΉ Your Task for Today
β Create a Students & Courses database using all the constraints.
β Try inserting valid & invalid values to see how constraints work.
β Comment below if you have any questions! π¬
---
πΉ Whatβs Next?
Tomorrow, we will learn Creating and Managing Indexes! Stay tuned! π
π‘ Like β€οΈ & Share if you're enjoying this SQL series! π
#DataScience #DataScience #DataAnalytics
π1