- 129
- 9 380
Data Science with Pablo
Nigeria
Приєднався 12 лис 2013
My name is Pablo, and I teach Data Science and Python programming for data science. I founded data science initiatives (Data Science Sunday, Tableau Saturdays, Data Science Mentor) to help learners learn from scratch to become job-ready.
Data Science with Pablo is your go-to channel for all things data science! Whether a beginner or an experienced professional, our channel is designed to help you master data science through engaging, practical, and easy-to-understand content.
On this channel, we focus on:
Hands-on Learning: Learn data science by working across real-world examples.
Python Programming: Learn Python, the most popular data science language, with tutorials covering everything basic
Data Analysis and Visualization: Master tools like Pandas, NumPy, Matplotlib, and Seaborn to analyze and visualize data effectively.
Connect on Socials:
iPablo26
www.linkedin.com/in/ipablo26/
Data Science with Pablo is your go-to channel for all things data science! Whether a beginner or an experienced professional, our channel is designed to help you master data science through engaging, practical, and easy-to-understand content.
On this channel, we focus on:
Hands-on Learning: Learn data science by working across real-world examples.
Python Programming: Learn Python, the most popular data science language, with tutorials covering everything basic
Data Analysis and Visualization: Master tools like Pandas, NumPy, Matplotlib, and Seaborn to analyze and visualize data effectively.
Connect on Socials:
iPablo26
www.linkedin.com/in/ipablo26/
Tools that aid learning - Python for Data Science
Grepper: www.grepper.com/app/index.php
ChatGPT: chatgpt.com
Gemini: gemini.google.com
Claude AI: claude.ai
Stack Overflow: stackoverflow.com
ChatGPT: chatgpt.com
Gemini: gemini.google.com
Claude AI: claude.ai
Stack Overflow: stackoverflow.com
Переглядів: 181
Відео
Introduction to NumPy
Переглядів 11221 годину тому
NumPy (Numerical Python) is an open-source library widely used in data science. Numpy Documentation for Beginners: numpy.org/doc/stable/user/absolute_beginners.html
Question & Answer - Python List
Переглядів 2021 годину тому
Is there an easy way to get unique items from a Python list without converting it to a set?
Creating a Subplot
Переглядів 5914 днів тому
Subplotting is a technique for data visualization that creates multiple plots within a single figure. This approach is particularly useful when comparing several datasets side by side or visualizing different aspects of data simultaneously. It allows for a coherent presentation that facilitates easy comparison and interpretation.
While Loop and The Break Statement
Переглядів 5921 день тому
A while loop allows you to process an operation until a specific condition is met. The break statement directs the flow of your program; you can use it to control which lines of code are executed and which aren’t.
Use case for the Python for Loop
Переглядів 4621 день тому
A for loop in Python is like instructing a machine to repeat a task for each item in a collection (like a list or a range of numbers). Dataset: drive.google.com/file/d/1MT1RjX9yi_6CdDCSrnwHs3mPFF0rzION/view?usp=sharing
Introduction to Google Colab
Переглядів 94Місяць тому
Colab is a hosted Jupyter Notebook service that requires no setup and provides free access to computing resources, including GPUs and TPUs. Colab is exceptionally suited to machine learning, data science, and education. Link to Google Colab: colab.google/
Introduction to Using a Jupyter Notebook
Переглядів 148Місяць тому
Jupyter notebooks are documents for technical and data science content. Download Anaconda: www.anaconda.com/download Jupyter Notebook Documentation: jupyter-notebook.readthedocs.io/en/stable/
Suppressing Scientific Notation
Переглядів 332 місяці тому
This value 1.000429e 06 is displayed in scientific notation. This is common in Pandas when the number is very large or small. In this case, the value is 1.000429 × 10^6, which equals 1,000,429.
Missing Data - Data Imputation using the Mean Value
Переглядів 312 місяці тому
If a numerical column has missing values, a common practice is to fill it with the column's mean so as not to disrupt the overall distribution.
Missing Data - Data Imputation with a Constant Value
Переглядів 372 місяці тому
Data imputation refers to filling in missing data in a dataset. Missing data can occur for various reasons (e.g., human error, system issues, incomplete data collection), and leaving it unresolved can skew analysis, reduce statistical power, or even cause models to fail.
Passing a list to a Python Function
Переглядів 872 місяці тому
Passing a list to a Python function is common in data analysis, where lists can represent multiple data points or a series of parameters
Generate Random but Realistic Data - Part 2
Переглядів 1212 місяці тому
You can apply the following approach to ensure that generated random data is realistic and incorporates missing values.
Generate Random but Realistic Data - Part 1
Переглядів 612 місяці тому
To ensure that generated random data is realistic and incorporates missing values, you can apply the following approach.
Generate Random Data with Pandas & NumPy - Part 2
Переглядів 723 місяці тому
Generate Random Data with Pandas & NumPy - Part 2
Generate Random Data with Pandas & NumPy - Part 1
Переглядів 733 місяці тому
Generate Random Data with Pandas & NumPy - Part 1
Modify & Add Values to a Python Dictionary
Переглядів 455 місяців тому
Modify & Add Values to a Python Dictionary
Using the upper method on a pandas series
Переглядів 456 місяців тому
Using the upper method on a pandas series
Thank you Pablo
Amazing! Thank you
👏👏
🔥🔥
Your sound is so low even in full volume my guy
Thank you very much for this introductory video i learnt a whole lot God bless you
I also tried to practise on prime numbers and odd numbers it says odd_numbers = find_odd_numbers_in_range not define And also start, end not defined . Please sir how do i go about it
Sir please how do I import the np.array on this topic I tried practicing it on my jupyter notebook it showed error, that np.array not defined
Please check out the second cell: # import the package import numpy as np
thanks man
Good morning sir! How do I connect to your link without going through slack ?
Here is a link www.youtube.com/@ipablo26
thanks pablo!
new to your channel
Welcome
thanks for the info Pablo!
Just coming from LinkedIn. Great insights..
Thank you so much for all of these videos. They have helped me so much and are helping me through a more structure path. I think the issue with the grouping of the ages (37 years falling under class 1) has to do with: affairs_data_1.loc[(affairs_data_1['age'] > 27) & (affairs_data_1['age'] < 32), 'ageClass'] = 'age_class2' using >= for each grouping of the classifications like below fixes the issue affairs_data_1.loc[(affairs_data_1['age'] >= 27) & (affairs_data_1['age'] < 32), 'ageClass'] = 'age_class2' Once again, thank you so much for all you do.
"All these features in the mean, what does this mean" 🙂 well done Pablo. Nice video by the way.
Thanks for this
# Compare 2 lists lst = [2, 23, 47, 56] lst2 = [23, 56, 78] For i in lst: if i not in lst2: print(i) # Do you know what is the result?
Not a python question. What do you use for your screen recording please?
I use QuickTime Player.
Thanks man!
Great work!!! Keep it up! Want the full playlist soon
firstone😄
Glad to have join this amazing community...
Thanks Pablo
Hi Pablo, I think your screen stopped recording at 5:14
Thank for this
This was fun
This was really helpful at least now I know what I'm looking at
🔥🔥🔥🔥
Thank you pablo❤
❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥