Kelly's Bytes - 6/7/24 (#100) - New Python Course


KELLY'S BYTES

By Kelly J. Adams

Hey!

It's Friday, June 7, 2024 which means another issue of Kelly's Bytes, actually the 100th edition 🎉. This week there’s no new blog post. Sorry! It’s because I was working to launch and publish my latest course with Luke Barousse.

View past editions of my newsletter here.


Python Course

This is a completely free Python course on Youtube. Watch the video here: Python for Data Analytics - Full Course Tutorial.

  • Basic Python
  • Essential libraries like NumPy
  • Data manipulation with Pandas
  • Data visualization with Matplotlib

Why learn Python even if you’re a data analyst? Below are two blog posts with examples of how I’m using Python in my work:

  1. How I Saved 10 Minutes with a Python Script
  2. How to Run SQL in Python: Connecting to PostgreSQL and BigQuery

*The Course link above are affiliate links. If you decide to purchase the course through this link, I may receive a small commission at no extra cost to you. This support helps me continue to provide content. Thank you for your support!


Bite-Sized Resources

📰 Article: [Data Analytics] How to get insights from a visualization by Abdallah Ashraf goes into showing example insights you’d get from common graphs.

💻 Resource: [Data Science] Data Science Weekly Newsletter that sends out resources on where you can learn more about data science with articles, news and jobs.

📝 Post: [Data Analytics] LinkedIn post from Andy Werdin with a list of Python interview questions for data analyst roles.


Content

📊 How to Become a Data Analyst: Check out my ultimate guide on how you can become a data analyst.

📊 Data Analytics Resources: View all the resources (like podcasts, courses, etc.) I used to learn data analytics.

📊 Start Here: Interested in data analytics but not sure where to start? Check out my blog post.


Until the next Friday,

- Kelly

Kelly's Bytes

Every other Friday, I share one practical lesson, highlight a blog post, and share 3 bite-sized resources to help you upskill and stay updated.

Read more from Kelly's Bytes

KELLY'S BYTES By Kelly J. Adams Hey! Thanks for subscribing and here’s this weeks edition lesson: Main Lesson: SQL User-Defined Functions One of the big improvement I’ve made in my SQL workflow recently is using User-Defined Functions (UDFs) in BigQuery. Here’s why: What it is: A UDF is a custom function you define to simplify repetitive logic in SQL queries. It can be written in SQL (my preference) or JavaScript. How it helps: Reduces redundancy, improves maintainability, and ensures...

KELLY'S BYTES By Kelly J. Adams Hey! Thanks for subscribing and here’s this weeks edition lesson: Main Lesson: T-Shaped Approach to Learning One of the biggest improvements I’ve made in my career planning is by adopting the T-shaped approach to skill-building. Here’s why it’s worth considering: What it is: A framework that balances deep expertise in one area (like data analytics) with broad knowledge across related areas (like business departments and industries). How it helps: It keeps your...

KELLY'S BYTES By Kelly J. Adams Hey! Thanks for subscribing and here’s this weeks edition lesson: Main Lesson: Using SQL for Better Data Analysis Recently, I’ve made improvements to my SQL Skills from SQL for Data Analysis by Cathy Tanimura. One lesson for me was the importance of using less common SQL functions, like CROSS JOINs, for more flexible analyses. Here’s why this matters: What it is: CROSS JOINs allow you to combine all rows from two datasets, which is especially useful for filling...