Python for Data Analytics - Full Course for Beginners

Поділитися
Вставка

КОМЕНТАРІ • 423

  • @LukeBarousse
    @LukeBarousse  4 місяці тому +36

    Pro Tips for this 11 Hour Video:
    ⏪Use the "J" key to rewind 10 secs
    ⏩Use the "L" key to fast-forward 10 secs
    🪡Precise Seeking:
    - Tap the screen to see the progress bar
    - Slide up from the scrubber (red dot) to see a row of thumbnails
    - Swipe on the thumbnails to find a specific moment in the video
    -------------------------------------------------------------------------
    👇Below are some troubleshooting steps for a common issue students have encountered:
    Windows Users - Conda Virtual Environment Issues (Required Steps for Windows Users):
    Background: By default, the terminal in VS Code on Windows, PowerShell, has a restricted execution policy. This is fancy talk for saying that certain scripts and programs are blocked from running for security concerns, with "conda" commands being one of them. There are two workarounds for this:
    1. Switch from using PowerShell to Command Prompt (Easy)
    2. Update PowerShell settings to allow 'conda' commands (Hard)
    Option 1: Switch from Powershell to Command Prompt
    1. Open the Command Palette: Press Ctrl + Shift + P to open it.
    2. In the Command Palette, type `Terminal: Select Default Profile` and press Enter.
    3. A list of available terminal profiles will appear. Select `Command Prompt` from the list.
    Option 2: Update PowerShell Settings:
    1. Open PowerShell as Administrator (Go to Search Bar, Type "PowerShell," Select option "Run as Administrator")
    2. Check your current execution policy by running the following in the PowerShell terminal:
    Get-ExecutionPolicy
    3. If set to "Restricted," run the following to change to a good balance of security and functionality:
    Set-ExecutionPolicy RemoteSigned
    4. Run the following to fully setup conda to be run within PowerShell:
    conda init powershell
    -------------------------------------------------------------------------

    • @aryanverma9736
      @aryanverma9736 4 місяці тому

      while importing matplot lib pyplot using command promt it is showing us import error.

    • @LukeBarousse
      @LukeBarousse  4 місяці тому +2

      @@aryanverma9736 just tried importing these libraries in command prompt and had no issues on my ened.
      You may have configured something wrong or are not typing in the correct command.
      The best (and quite honestly fastest) approach is to go to something like ChatGPT and paste in your error; it'll be able to guide you on what's going wrong here

    • @aryanverma9736
      @aryanverma9736 4 місяці тому +2

      @@LukeBarousse Thank you sir for guiding and building such an amazing course. Waiting for your next course on Excel for data analytics.😄🙏

  • @ballinspalding11
    @ballinspalding11 5 місяців тому +193

    God bless you Luke, making this available for free really says a lot about the man you are.

  • @jasiljazz4575
    @jasiljazz4575 3 місяці тому +60

    1. **Introduction** - 00:01
    2. **Python Basics** - 02:01
    3. **Variables and Data Types** - 18:49
    4. **Functions** - 30:05
    5. **Data Types** - 39:39
    6. **String Operations** - 57:28
    7. **Conditional Statements** - 1:26:25
    8. **Lists** - 1:34:17
    9. **Dictionaries** - 1:50:04
    10. **Sets and Tuples** - 2:01:58
    11. **Loops** - 2:21:28
    12. **List Comprehension** - 2:36:26
    13. **Lambda Functions** - 3:01:33
    14. **Modules** - 3:13:12
    15. **Data Cleaning** - 3:28:30
    16. **NumPy Basics** - 4:14:27
    17. **Pandas Introduction** - 4:22:15
    18. **Data Visualization with Matplotlib** - 5:17:07
    19. **Setting Up Local Environment** - 6:00:26
    20. **DataFrame Manipulation** - 7:01:44
    21. **Advanced Pandas Operations** - 7:59:09
    22. **Data Distribution Visualization** - 9:04:15
    23. **Seaborn for Visualization** - 9:32:17
    24. **GitHub Integration** - 9:58:43
    25. **Finalizing the Project** - 11:03:37

  • @humansizedaperture
    @humansizedaperture 5 місяців тому +220

    Oh eleven minutes only! …wait that’s not the minutes section of the time stamp….bookmarking, getting back to work, will return. Thank you so much for this!

  • @pratikthorat3480
    @pratikthorat3480 5 місяців тому +148

    You woke up and chose to upload my entire education in a 12 hour video!
    Thank You so much! Weekend will be fun 🎉

    • @Seftehandle
      @Seftehandle 5 місяців тому +1

      Will you do it? Please report back

    • @pratikthorat3480
      @pratikthorat3480 5 місяців тому +1

      @@Seftehandle I hope I can finish this in 3 days!

    • @Seftehandle
      @Seftehandle 5 місяців тому +3

      @@pratikthorat3480 the important thing is to start, right? I am also thinking of doing it.

    • @pratikthorat3480
      @pratikthorat3480 5 місяців тому +2

      @@Seftehandle yes it is! Just start. Does not matter how long it takes to finish the course. Just start!

    • @Seftehandle
      @Seftehandle 5 місяців тому +1

      ​@@pratikthorat3480the thing is i already have basic phthon knowledge, i dont know whether to start to projects part directly

  • @yashbharambe-n6y
    @yashbharambe-n6y 3 місяці тому +20

    **Day 1: Course Introduction and Basics
    0⃣ Course Intro
    00:00 - Welcome
    03:12 - What is Python?
    04:51 - Intro to Course
    1⃣ Basics Chapter
    08:42 - Getting Started
    18:51 - Variables
    24:24 - Python Terms
    38:04 - Data Types
    48:39 - Strings
    1:02:01 - ChatBot Help
    1:05:03 - String Formatting
    1:15:06 - Operators Part 1
    1:26:15 - Conditional Statements
    **Day 2: Lists, Dictionaries, and Basic Data Structures
    1⃣ Basics Chapter (Continued)
    1:34:19 - Lists
    1:49:36 - Dictionaries
    1:59:47 - Sets
    2:05:08 - Tuples
    2:12:19 - Operators Part 2
    2:20:58 - Loops
    2:36:22 - List Comprehensions
    2:44:07 - Exercise: Basics
    Day 3: Functions, Lambda, and Modules
    1⃣ Basics Chapter (Continued)
    2:52:02 - Functions
    3:01:53 - Lambda
    3:12:35 - Modules
    3:28:04 - Exercise: Python Library
    3:39:52 - Library
    3:52:20 - Classes
    Day 4: Intro to Data Libraries
    1⃣ Basics Chapter (Continued)
    4:10:29 - NumPy: Intro
    4:22:41 - Pandas: Intro
    4:32:53 - Pandas: Inspection
    4:47:03 - Pandas: Cleaning
    4:58:29 - Pandas: Analysis
    5:08:08 - Exercise: Pandas Basics
    5:17:00 - Matplotlib: Intro
    5:21:04 - Matplotlib: Plotting
    Day 5: Matplotlib Continued and Basic Exercises
    1⃣ Basics Chapter (Continued)
    5:34:21 - Matplotlib: Labeling
    5:40:14 - Matplotlib: Pandas Plotting
    5:45:40 - Exercise: Matplotlib Basics
    2⃣ Advanced Chapter
    5:50:35 - Python Install (Anaconda)
    6:00:13 - VS Code Install
    6:10:27 - Virtual Environments
    Day 6: Advanced Pandas
    2⃣ Advanced Chapter (Continued)
    6:26:52 - Pandas: Accessing Data
    6:35:15 - Pandas: Data Cleaning
    6:42:30 - Pandas: Data Management
    6:49:11 - Pandas: Pivot Tables
    6:56:35 - Pandas: Index Management
    7:04:25 - Exercise: Job Demand
    7:15:11 - Pandas: Merge DataFrames
    Day 7: More Pandas and Advanced Matplotlib
    2⃣ Advanced Chapter (Continued)
    7:25:27 - Pandas: Concat DataFrames
    7:34:04 - Pandas: Exporting Data
    7:40:29 - Pandas: Applying Functions
    7:56:11 - Pandas: Explode
    8:07:58 - Exercise: Trending Skills
    8:16:52 - Matplotlib: Format Charts
    8:29:36 - Matplotlib: Pie Plots
    8:39:33 - Matplotlib: Scatter Plots
    Day 8: Advanced Matplotlib and Seaborn
    2⃣ Advanced Chapter (Continued)
    8:50:04 - Matplotlib: Advanced Customization
    9:05:28 - Matplotlib: Histograms
    9:10:03 - Matplotlib: Box Plots
    9:21:28 - Exercise: Skill Pay Analysis
    9:31:05 - Seaborn: Intro
    Day 9: Project Work Part 1
    3⃣ Project Chapter
    9:45:05 - Project: Intro
    9:55:48 - Git & GitHub Setup
    10:09:14 - Skill Demand
    10:28:56 - Skills Trend
    10:41:52 - Salary Analysis
    Day 10: Project Work Part 2 and Conclusion
    3⃣ Project Chapter (Continued)
    10:50:18 - Optimal Skills
    11:02:43 - Share on GitHub
    11:05:24 - Share on LinkedIn

  • @humichael7228
    @humichael7228 5 місяців тому +46

    I almost finished the course! And I almost finished my first python project along with the course. This is hands down the best tutorial on python out there!

    • @saadmayo8822
      @saadmayo8822 5 місяців тому +2

      How to access the dataset ?

    • @devadharshinis525
      @devadharshinis525 4 місяці тому

      @@saadmayo8822 You'll find it on the Hugging Face Website.

    • @ayatirfan5269
      @ayatirfan5269 2 місяці тому

      @@saadmayo8822 same question did you find it?

  • @MOAhmed-l5t
    @MOAhmed-l5t 4 місяці тому +18

    very wonderful, enjoyable and useful , I finished SQL course with you and now about finishing PYTHON , thank so much from my heart my best teacher online,
    it is Mohammed from Sudan

  • @chibuezembah39
    @chibuezembah39 5 місяців тому +11

    God bless you, Luke. You announced this video during your SQL course and you fulfilled it. Thanks

  • @NafishaNower
    @NafishaNower 5 днів тому

    I am halfway through this course and couldn't resist taking a moment to appreciate how clearly you have delivered all the Python concepts. You have just taught my whole four-year degree within 11 hours, and that's free of cost. You are such an amazing teacher.

  • @maminoivan8955
    @maminoivan8955 5 місяців тому +27

    Luke Barousse, Alex the Analyst, DataWithBaraa, Mosh, Amit_Thinks and Bro Code are the BEST!!!

  • @nhimallansupramaniam2626
    @nhimallansupramaniam2626 3 місяці тому +1

    My god, the pivot table function is a game changer. Thank you Luke, im 81% done with the course

  • @Naeem-b4z
    @Naeem-b4z Місяць тому +1

    this function can be written without `return` such as: 31:11
    def display_job_info(job_title, location, salary):
    print(f"JOB: {job_title}
    LOCATION: {location}
    SALARY: {salary}")

  • @Hasan-vu9ex
    @Hasan-vu9ex 5 місяців тому +8

    Luke, thank you so much for this tutorial. I was just about to start learning Python and my favorite Data Analyst UA-camr just uploaded this gem. Can't afford to buy the certificate right now, but I definitely will pay for it in the near future just to appreciate your efforts

  • @ricklove8358
    @ricklove8358 5 місяців тому +1

    i dont normally comment on videos but to be honest you are a genius. you know exactly what you are doing. This video is so helpful. God bless you

  • @armandogutierrez2880
    @armandogutierrez2880 5 місяців тому +5

    Well I just finished my Data Analytics on coursera and Google, but I dont want to loose this chance. So I will start right now my corse. Thanks a lot.

  • @Karaya715
    @Karaya715 5 місяців тому +1

    Oh my word Luke. It’s been a while…. I took Python last semester and even though I got an A, I felt like I didn’t absorb much because I was so slammed with so much hw.
    This is amazing!! I am SO STOKED!!! And I really love Google Collab.
    So I’m retaking Python with you and this is going to be fun and I’ll actually absorb it! - because it’s you! Thank you so much!!!

  • @cleverhype
    @cleverhype 5 місяців тому +9

    Woah! Can't believe you put this up fully for free! Thank you!

  • @keancabigao1461
    @keancabigao1461 5 місяців тому +9

    Just right in time! I will be transitioning my workflow from R to Python and have been looking for solid course on beginner python. Thank you!

  • @aty1532
    @aty1532 5 місяців тому +1

    at 28:06 - The identity (or id) of the variables job_1, job_2, and job_3 will be the same because they all reference the same string object "Data Analyst". In the video the id for job_1 and job_2 is different which is incorrect, and it will be same as both have the same object reference "Data Analyst".

    • @S1nthe0
      @S1nthe0 4 місяці тому

      I also think that you are correct. ChatGPT:
      In Python, whether two variables have the same "ID" depends on whether they reference the same object in memory. The `id()` function in Python returns a unique identifier for an object, which is essentially its memory address.
      Let's explore this with your example:
      ```python
      job_1 = "data 1"
      job_2 = "data 1"
      ```
      In this case, since strings in Python are immutable and the same string literals are often interned (stored in a single location to save memory), `job_1` and `job_2` might indeed reference the same object. You can check this by comparing their IDs using the `id()` function:
      ```python
      job_1 = "data 1"
      job_2 = "data 1"
      print(id(job_1)) # ID of job_1
      print(id(job_2)) # ID of job_2
      print(job_1 is job_2) # Check if they reference the same object
      ```
      If you run this code, you are likely to see that both `job_1` and `job_2` have the same ID and the `job_1 is job_2` expression evaluates to `True`. This indicates that both variables reference the same string object in memory.
      However, if the strings were created dynamically or modified in such a way that they are no longer identical, they would have different IDs. Here's an example where two strings have the same value but are not necessarily the same object:
      ```python
      job_1 = "data " + "1"
      job_2 = "data 1"
      print(id(job_1)) # ID of job_1
      print(id(job_2)) # ID of job_2
      print(job_1 is job_2) # Check if they reference the same object
      ```
      In this case, the string concatenation might result in a different object, and `job_1` and `job_2` could have different IDs, even though they contain the same string value.
      To summarize, in Python, two variables have the same ID if they reference the same object in memory. For string literals, this is often the case due to string interning, but it can vary depending on how the strings are created or modified.

  • @mikelrueda6573
    @mikelrueda6573 5 місяців тому +2

    Wow incredible content Luke and Kelly!! So grateful for offering the course for free, I'm sure it has been really hard work. I will definitely buy the certificate.
    This is hands down the best and most complete Phyton course available in UA-cam.
    Wish you the best!!

  • @AbdulsanedHamid
    @AbdulsanedHamid 4 місяці тому +95

    Data analytics should be charged for animal trafficking,couse they import pandas and feed them to python

  • @lazlexpedguz4331
    @lazlexpedguz4331 4 місяці тому +1

    Of all the courses on UA-cam, there is an inner voice that tells me: choose this course, you won't regret it, this is what you are looking for. Let's get started and then I will give my opinion on the course.

  • @Gulhayo-v7k
    @Gulhayo-v7k Місяць тому +1

    Having been watching the video for 2 hours and just saw that forgot to like it. I felt so bad for that and felt like a thankless person. Luke, your all videos are just perfect! Thank you for your hard work and dedication🥺

  • @albedoguardian875
    @albedoguardian875 5 місяців тому +5

    Unbelievable you put down the entire course. Bookmarked and gonna sit with Pop Corn. Thanks 😊

  • @mosesnyper
    @mosesnyper 5 місяців тому +45

    Man casually dropped a whole Intro to CS course for free 😂

  • @faacam
    @faacam 4 місяці тому

    just for my ref,
    conda removes env 6:18:03
    month extraction jan-1 feb-2 7:08:38
    readme project 10:24:07
    AND THANKSS A LOT FOR A GREAT COURSE! halfway through it ngl my brain is on fire but im so gonna finish this course

  • @ahmedgalaa
    @ahmedgalaa 2 дні тому

    Luke, you're my hero, that's all I can tell. I just wanted to say that I trust this 11 hours video just because I finished the 4 hours PostgreSQL video and it was just fantastic. Today was a technical training day at the data analysis track provided by the Ministry of Telecommunication in Egypt and I recommended your channel to my peers and instructor especially these 2 videos of SQL and Python. Thanks a lot you're doing a fantastic job.

    • @LukeBarousse
      @LukeBarousse  2 дні тому +1

      I appreciate you recommending the channel!!

  • @BlackSouL24
    @BlackSouL24 5 місяців тому +1

    4:09:20 inthe function calculate bonus_rate the return statement has formatted to 0.f that's why you getting 0 instead of 0.1 bonus rate.

  • @justinasal8886
    @justinasal8886 3 місяці тому

    I completed the course and I am very impressed with its content! Luke is an engaging teacher and the course keeps your attention. It get's more complicated towards the end, but it is expected. What a great work you have done!

  • @howarddantes
    @howarddantes Місяць тому +6

    a bit too fast, and some difficulty spikes --- but it's free, well organized, and it's up to me to look up stuff i don't know. 10/10. thanks man

  • @Dojo.FinancialData
    @Dojo.FinancialData 7 днів тому +1

    Thanks for the tutorial Luke. It's always great seeing how other people use Python, learnt a couple of new tricks!

  • @XPMORPHINE
    @XPMORPHINE 10 днів тому

    Hands down the best step by step course out there.Thnx Luke,greatly appreciated!And i hope we get more Python courses in the future.🙏

  • @johorakulsum7340
    @johorakulsum7340 4 місяці тому

    I just finished 37 mins but I will definately complete this vdo. Your presentation , way of describing of the topis are mindblowing!! My best wishes to you!!

  • @trashboat5649
    @trashboat5649 3 місяці тому

    Thanks for this tutorial!! currently watching it right now after feeling stuck in what I want to do in life, until I took interest in this course. Bless you for real for being a G by just casually uploading an 11 hour video on this!! You are a true teacher

  • @RakshitDwivedi-pq8qc
    @RakshitDwivedi-pq8qc 9 днів тому

    Amazing course!
    I have a little bit knowledge on Python. It's just Day 1 of me browsing through the course and i have already finished conditional statements. It's so so good. Can't wait to reach to more advanced Python Libraries such as Pandas and Numpy.

  • @blushandrush9584
    @blushandrush9584 5 місяців тому +1

    Great timing. I was thinking of refreshing my python skills lately. Thanks to this video there is no excuse to wait any longer😅

  • @thenicosystem8606
    @thenicosystem8606 5 місяців тому +2

    Amazing. I'm half way through the Google Data Analytics Professional cert. I'm gonna learn this with SQL next

  • @atNguyen-iw9gl
    @atNguyen-iw9gl 3 місяці тому +1

    Hi Luke,
    I think the Exercise Basic start at 2:44:07 have some problem, because in your example, it just return the role that have exactly skill match with my_skills list
    If the my_skills list have more skill than role_skill require, it will not work. I think the correct should be compare role skills to our skill, then it will more precise.

  • @amitkr_209
    @amitkr_209 4 місяці тому +3

    Hello luke,
    Love your courses and videos since January 2022.
    Thanks for delivering such content.

  • @Ritz360
    @Ritz360 5 місяців тому +5

    This is perfect! Been looking for something like this for weeks.

  • @salahmanai2110
    @salahmanai2110 2 місяці тому

    Thanks Luke from a young man striving to be a good data analyst your video is helping a lot and getting me to know tricks i never seen before thanks a lot for what your doing keep it up and god bless you from tunisia🙏🙏🇹🇳

  • @nutthaponrathie7145
    @nutthaponrathie7145 5 місяців тому +10

    You haven't uploaded a new video for a while, which surprised me, and this is the answer. Thank you!

  • @thew5611
    @thew5611 5 місяців тому

    im not skipping any of the ads in exchange for this amazing effort.

  • @johndomingo4165
    @johndomingo4165 3 місяці тому

    Amazing that you are willing to do this for free! I love the different hair styles throughout the course!

  • @sinaukode
    @sinaukode 20 днів тому

    you have share this for free, what a savior you are

  • @michelcusson2673
    @michelcusson2673 5 місяців тому +1

    This is the best tutorial on Python. Thank you Luke

  • @abhimanyusingh3512
    @abhimanyusingh3512 Місяць тому +1

    9:20:29
    Just in case:
    The 'labels' parameter of boxplot() has been renamed 'tick_labels' since Matplotlib 3.9; support for the old name will be dropped in 3.11

    • @LukeBarousse
      @LukeBarousse  Місяць тому +1

      Thansk for sharing this; this is good to know

    • @abhimanyusingh3512
      @abhimanyusingh3512 Місяць тому

      @@LukeBarousse You're welcome, and thank you for creating such an amazing course

  • @mierky9699
    @mierky9699 4 місяці тому

    I usually don't comment on videos, but I really felt the need to thank you for this course. It helped me out more than I had ever hoped for. It has truly been a journey and I want to thank you again for the hard work you've put into making this video, especially for free. God bless you!

    • @AavishSidana
      @AavishSidana 3 місяці тому

      is it good for a begineer?

    • @mierky9699
      @mierky9699 3 місяці тому

      @@AavishSidana yes, I highly recommend it. It's very well explained and even if let's say you don't understant the first time, you can always look back on the video or look up further information on Chat GPT

  • @erikcarantino8466
    @erikcarantino8466 5 місяців тому

    Bro - I can’t say how impressive it is to put this for free. Insane! Least I can do is subscribe.

  • @ferozali6391
    @ferozali6391 5 місяців тому +4

    will watch it all and update myself thanks a lot LUKE

  • @eldruzz
    @eldruzz 2 місяці тому

    This is just a gold masterclass. A immense thank you Luke !!

  • @rajimajeed6563
    @rajimajeed6563 5 місяців тому +1

    Just finished the course. This course revealed a lot and it really added to my prior knowledge. Now I know the secrets behind good visualization using Python. Such a good course, ran a lot of "bad boys" in this one. Thank you Luke.

    • @LukeBarousse
      @LukeBarousse  5 місяців тому +2

      Congrats on finishing the course!! 🎉

    • @shadafsanadi3247
      @shadafsanadi3247 4 місяці тому +2

      how did u acess dataset bruhhh

    • @rajimajeed6563
      @rajimajeed6563 4 місяці тому

      ​@@shadafsanadi3247 Follow his instructions by either downloading the dataset from the Hugging Face website or loading it directly from the site.

  • @franciscogalan8017
    @franciscogalan8017 5 місяців тому +1

    I'm soooo excited for this course! I'm going to go through every single minute of it. I loved the SQL course, so I'm coming in with high expectations!

  • @HI-bw8fe
    @HI-bw8fe 5 місяців тому +2

    I was like what the hell 11min?! 😂 and then realised almost 12h! Thanks SO much! 🥳

  • @randallevans150
    @randallevans150 5 місяців тому

    Saved this and shared with colleagues. We are analysts but looking to grow our python skills. I am working on this over the weekend.
    Thank you, Luke

  • @zainsiddiqi7633
    @zainsiddiqi7633 5 місяців тому

    Bro, i'm so happy that you dropped this. I just finished your SQl course and was hoping you'd have something on Python

  • @OnkarKasture
    @OnkarKasture 5 місяців тому

    Done with your SQL tutorial, now halfway there in this one. Absolutely high-quality work Luke, you got yourself a sub!

  • @donnelly5757
    @donnelly5757 5 місяців тому +7

    Thank you Luke and Kelly for putting this course together! I look forward to applying what I learn in this course to my current portfolio project!
    I remember writing my first Python code back in 2019 and have been on the fence as to whether it is a necessary skill to help land my first role as many will say to strictly focus on Excel, SQL, and Tableau/Power BI. Fast forward to the present and I may be finally getting a seven month contract as a Tax Analyst, which would technically be my first role as an Analyst. Looks like my knowledge in coding thanks to practicing Python is what will finally get my foot in the door on what has now been a 5+ year journey to acquire my first role!

  • @RickTol
    @RickTol 6 днів тому

    A long ass video, but incredibly concise and detailed with clear communication. Very well done indeed.

  • @michaaelmayne3931
    @michaaelmayne3931 5 місяців тому +1

    Thank you for this very informative video! I have a interview this week and needed an insight. I will pay and to follow along with the practice questions

  • @letrunghieu3690
    @letrunghieu3690 5 місяців тому +2

    Respect your effort Luke

  • @qaiserali993
    @qaiserali993 Місяць тому

    Hats off to you Man they way to teach is very easy

  • @vprasanna3534
    @vprasanna3534 13 днів тому

    Thank you so much @LukeBarousse for the amazing content on Python, SQL, and Excel! Your tutorials have been incredibly helpful in my journey to becoming a data analyst. The step-by-step explanations and clear examples make complex topics much easier to understand. I truly appreciate all the effort you put into creating these resources. Keep up the great work - you're making a huge difference for so many of us learning these skills! 🙏

  • @Qongrat
    @Qongrat Місяць тому

    Thank you for this I have been following you for a few years now, you are awesome!

  • @jopadjr
    @jopadjr 4 місяці тому

    7.4k+...Thanks. This is going to be a great adventure. Will start this weekend.

  • @harunrhimu
    @harunrhimu 4 місяці тому +1

    Hi Luke, I just complete this course with practice for every piece of code.❤❤🔰🔰

  • @francisfuwaku-lf9tn
    @francisfuwaku-lf9tn 5 місяців тому

    i must say your sql course is fire,, i learnt a lot , and i know im going to lean a lot today.

  • @saumyaari3442
    @saumyaari3442 5 місяців тому +2

    after your SQL video, I was really waiting for this. so thrilled. Thanks Luke 😊

  • @nimrahenna
    @nimrahenna 5 місяців тому +1

    You nailed it Luke ❤❤
    You deserve much more subscribers

  • @glenwilson
    @glenwilson 5 місяців тому

    GOD DAM...THIS IS THE BEST!!!! This will be all my spare time for the next week. Great Stuff @luke

  • @MW-cs8zd
    @MW-cs8zd 5 місяців тому

    Dang. Luke just keeps one upping himself with great content. Thank you for your efforts

  • @vaibhavpundir2998
    @vaibhavpundir2998 5 місяців тому +1

    Thank you much Luke!! your videos are just perfect, your hardwork in creating such long video are a boon for us.

  • @NotThatEnigma
    @NotThatEnigma 4 місяці тому

    A beast of a video, so indepth...thanks so much, Luke.

  • @kashifusman5953
    @kashifusman5953 Місяць тому

    Just finished the course, thank you so much Luke!

  • @Oussamabe144
    @Oussamabe144 3 місяці тому

    Man, the virtual environment part felt like going through a liminal space
    Thank you so much

  • @mylab7064
    @mylab7064 12 днів тому

    Amazing. You deserve a huge respect & thanks.

  • @VernHowChan
    @VernHowChan 5 місяців тому

    huge kudos to you Luke. what a generous big gift this is.

  • @ish2222
    @ish2222 5 місяців тому

    Bro is on a full course tutorial sprint. Just completed your SQL Data Analytics tutorial. Amazing course. Now am jumping on this. Excited!!!

    • @LukeBarousse
      @LukeBarousse  5 місяців тому

      Hopefully Excel next!

    • @ish2222
      @ish2222 5 місяців тому

      @@LukeBarousse Let's go....

  • @shamsularifeen7245
    @shamsularifeen7245 5 місяців тому +1

    thank you for your hard work. you surely is giving back to the community

  • @longhuynhvan5269
    @longhuynhvan5269 5 місяців тому

    Can't never thanks you enough Luke, wish you all the best❤

  • @kahinaabbas9792
    @kahinaabbas9792 5 місяців тому

    What an opportunity for us
    Thank you luck for your generosity

  • @solo.somewhere
    @solo.somewhere 5 місяців тому

    Waiting for this soooo long time. God bless you. Greetings from Algeria

  • @shreyaslahoti7542
    @shreyaslahoti7542 2 місяці тому

    This stuff is amazing! Thank you for explaining all the concepts in detail. Truly appreciate the efforts.

  • @Elyineify
    @Elyineify 5 місяців тому

    I just saw the repository of this on github, im so hyped that its actually out! Gj Kelly and Luke, really looking forward to dive into it

  • @powerplaybg007
    @powerplaybg007 5 місяців тому

    Love learning from you, Luke 🙂 More courses about Data Analytics, please!

  • @EstherEmmanuel-ih3cw
    @EstherEmmanuel-ih3cw 5 місяців тому

    You are the best Luke. Thank you so much for making these life changing videos. God bless you

  • @NilayMukhopadhyay
    @NilayMukhopadhyay 5 місяців тому

    We had a chat on Instagram on September 19th, 2021, about when you would launch your Python course. Now, in mid-2024, it's finally here. 🎉❤

    • @LukeBarousse
      @LukeBarousse  5 місяців тому +1

      It was a long time coming 🙌 I’ve been putting it off for too ling

  • @yagndabhi2178
    @yagndabhi2178 4 місяці тому

    1:13:30 1:47:18 2:03:08 2:08:01 2:27:04 2:33:02 2:36:34full 3:33:10 4:05:19 4:11:57 4:43:06

  • @billsychua-pw5ko
    @billsychua-pw5ko 5 місяців тому

    GodBless this man for creating an 11 hour course for python for free

  • @stbeast_f4689
    @stbeast_f4689 4 місяці тому

    M looking forward to it
    I am a data science student and want to learn data analytics in python to do more projects

  • @alexandershnaidman8188
    @alexandershnaidman8188 2 місяці тому

    Excellent course, clear and simple explanations! Thanks a lot! This course is Super advised

  • @Cake-wh4pm
    @Cake-wh4pm 5 місяців тому

    I'm endlessly grateful for this!!! I love your teaching style and I feel VERY confident about the quality of your content, so basically a python course for data analytics from you is a gift to anyone in this field!! again, thank you so much for doing this!!🌟🎆

  • @mozo199
    @mozo199 3 місяці тому

    Hey @luke Thanks for the course, i'm still on my way through it, I miss the sample problems you used to display after each section in SQL, appreciate the work, God bless.

  • @fizzcrafts9004
    @fizzcrafts9004 5 місяців тому +2

    man I was waiting for this, I really like your hard work I really appreciate Luke!!! And Thank You

  • @freedommentor1
    @freedommentor1 5 місяців тому +1

    Really loved it, Massive & fully packed one video course. Thanks Luke. 🥰

  • @MBurnsy
    @MBurnsy 5 місяців тому +1

    You're amazing Luke. Thanks a ton for this.

  • @devgupta8657
    @devgupta8657 5 місяців тому +1

    Love your content luke..❤
    Plz create a video onhow to apply or approach for remote job in USA.

  • @aronscheller1616
    @aronscheller1616 3 місяці тому

    This man is a treasure.

  • @MusaddikSafi-t5i
    @MusaddikSafi-t5i 5 місяців тому

    Thanks dude for this amazing content. You even include the virtual environments part, which most of the creator ignore. This is an absolute masterpiece❤