Beginner's Journey into SQL and Machine Learning
The article chronicles a beginner's experience learning SQL as part of their machine learning journey. It highlights the importance of SQL in accessing and preparing data for ML models.
Why it matters
SQL is a crucial skill for data professionals, including those working in machine learning, as it enables efficient data extraction and preparation.
Key Points
- 1The author had no prior SQL experience but quickly grasped the basics of SELECT, FROM, and WHERE
- 2SQL is an essential tool for accessing data from databases, which is often the first step before doing ML work
- 3The author realized SQL could help them efficiently extract specific data, like first-class passengers from the Titanic dataset
- 4The author plans to learn more advanced SQL concepts like GROUP BY and joins to further their data preparation abilities
Details
The article describes the author's experience learning SQL as part of their 100-day machine learning journey. Initially, the author had no prior SQL knowledge, but within 20 minutes of learning the SELECT, FROM, and WHERE keywords, they felt they could start reading data. The author realized the importance of SQL in accessing data, especially for machine learning, where the data often lives in databases rather than CSV files. By writing simple SQL queries, the author could efficiently extract specific data, like first-class passengers from the Titanic dataset, before even loading it into Pandas. The author plans to continue learning more advanced SQL concepts like GROUP BY and joins to further enhance their data preparation abilities for machine learning.
No comments yet
Be the first to comment