Python Data Science basics with Numpy, Pandas and Matplotlib
Python Data Science basics with Numpy, Pandas and Matplotlib, available at $39.99, has an average rating of 4.25, with 63 lectures, based on 89 reviews, and has 1822 subscribers.
You will learn about Essential Python data types and data structure basics with Libraries like NumPy and Pandas for Data Science or Machine Learning Beginner. This course is ideal for individuals who are Data science enthusiasts who want to begin their career It is particularly useful for Data science enthusiasts who want to begin their career.
Enroll now: Python Data Science basics with Numpy, Pandas and Matplotlib
Summary
Title: Python Data Science basics with Numpy, Pandas and Matplotlib
Price: $39.99
Average Rating: 4.25
Number of Lectures: 63
Number of Published Lectures: 63
Number of Curriculum Items: 63
Number of Published Curriculum Objects: 63
Original Price: $139.99
Quality Status: approved
Status: Live
What You Will Learn
- Essential Python data types and data structure basics with Libraries like NumPy and Pandas for Data Science or Machine Learning Beginner.
Who Should Attend
- Data science enthusiasts who want to begin their career
Target Audiences
- Data science enthusiasts who want to begin their career
Welcome to my new course Python Essentials with Pandas and Numpy for Data Science
In this course, we will learn the basics of Python Data Structures and the most important Data Science libraries like NumPy and Pandas with step by step examples!
The first session will be a theory session in which, we will have an introduction to python, its applications and the libraries.
In the next session, we will proceed with installing python in your computer. We will install and configure anaconda which is a platform you can use for quick and easy installation of python and its libraries. We will get ourselves familiar with Jupiter notebook, which is the IDE that we are using throughout this course for python coding.
Then we will go ahead with the basic python data types like strings, numbers and its operations. We will deal with different types of ways to assign and access strings, string slicing, replacement, concatenation, formatting and f strings.
Dealing with numbers, we will discuss the assignment, accessing and different operations with integers and floats. The operations include basic ones and also advanced ones like exponents. Also we will check the order of operations, increments and decrements, rounding values and type casting.
Then we will proceed with basic data structures in python like Lists tuples and set. For lists, we will try different assignment, access and slicing options. Along with popular list methods, we will also see list extension, removal, reversing, sorting, min and max, existence check , list looping, slicing, and also inter-conversion of list and strings.
For Tuples also we will do the assignment and access options and the proceed with different options with set in python.
After that, we will deal with python dictionaries. Different assignment and access methods. Value update and delete methods and also looping through the values in the dictionary.
And after learning all of these basic data types and data structures, its time for us to proceed with the popular libraries for data-science in python. We will start with the NumPy library. We will check different ways to create a new NumPy array, reshaping , transforming list to arrays, zero arrays and one arrays, different array operations, array indexing, slicing, copying. we will also deal with creating and reshaping multi dimensional NumPy arrays, array transpose, and statistical operations like mean variance etc using NumPy
Later we will go ahead with the next popular python library called Pandas. At first we will deal with the one dimensional labelled array in pandas called as the series. We will create assign and access the series using different methods.
Then will go ahead with the Pandas Data frames, which is a 2-dimensional labelled data structure with columns of potentially different types. We will convert NumPy arrays and also pandas series to data frames. We will try column wise and row wise access options, dropping rows and columns, getting the summary of data frames with methods like min, max etc. Also we will convert a python dictionary into a pandas data frame. In large datasets, its common to have empty or missing data. We will see how we can manage missing data within dataframes. We will see sorting and indexing operations for data frames.
Most times, external data will be coming in either a CSV file or a JSON file. We will check how we can import CSV and JSON file data as a dataframe so that we can do the operations and later convert this data frame to either CSV and json objects and write it into the respective files.
Also we will see how we can concatenate, join and merge two pandas data frames. Then we will deal with data stacking and pivoting using the data frame and also to deal with duplicate values within the data-frame and to remove them selectively.
We can group data within a data-frame using group by methods for pandas data frame. We will check the steps we need to follow for grouping. Similarly we can do aggregation of data in the data-frame using different methods available and also using custom functions. We will also see other grouping techniques like Binning and bucketing based on data in the data-frame
At times we may need to use custom indexing for our dataframe. We will see methods to re-index rows and columns of a dataframe and also rename column indexes and rows. We will also check methods to do collective replacement of values in a dataframe and also to find the count of all or unique values in a dataframe.
Then we will proceed with implementing random permutation using both the NumPy and Pandas library and the steps to follow. Since an excelsheet and a dataframe are similar 2d arrays, we will see how we can load values in a dataframe from an excelsheet by parsing it. Then we will do condition based selection of values in a dataframe, also by using lambda functions and also finding rank based on columns.
Then we will go ahead with cross Tabulation of our dataframe using contingency tables. The steps we need to proceed with to create the cross tabulation contingency table.
After all these operations in the data we have, now its time to visualize the data. We will do exercises in which we can generate graphs and plots. We will be using another popular python library called Matplotlib to generate graphs and plots. We will do tweaking of the grpahs and plots by adjusting the plot types, its parameters, labels, titles etc.
Then we will use another visualization option called histogram which can be used to groups numbers into ranges. We will also be trying different options provided by matplotlib library for histogram
Overall this course is a perfect starter pack for your long journey ahead with big data and machine learning. You will also be getting an experience certificate after the completion of the course(only if your learning platform supports)
So lets start with the lessons. See you soon in the class room.
Course Curriculum
Chapter 1: Course Introduction and Table of Contents
Lecture 1: Course Introduction and Table of Contents
Chapter 2: Introduction to Python, Pandas and Numpy
Lecture 1: Introduction to Python, Pandas and Numpy
Chapter 3: System and Environment Setup
Lecture 1: System and Environment Setup
Chapter 4: Python Strings
Lecture 1: Python Strings – Part 1
Lecture 2: Python Strings – Part 2
Chapter 5: Python Numbers and Operators
Lecture 1: Python Numbers and Operators – Part 1
Lecture 2: Python Numbers and Operators – Part 2
Chapter 6: Python Lists
Lecture 1: Python Lists – Part 1
Lecture 2: Python Lists – Part 2
Lecture 3: Python Lists – Part 3
Lecture 4: Python Lists – Part 4
Lecture 5: Python Lists – Part 5
Chapter 7: Tuples in Python
Lecture 1: Tuples in Python
Chapter 8: Sets in Python
Lecture 1: Sets in Python – Part 1
Lecture 2: Sets in Python – Part 2
Chapter 9: Python Dictionary
Lecture 1: Python Dictionary – Part 1
Lecture 2: Python Dictionary – Part 2
Chapter 10: NumPy Library – Introduction
Lecture 1: NumPy Library Intro – Part 1
Lecture 2: NumPy Library Intro – Part 2
Lecture 3: NumPy Library Intro – Part 3
Chapter 11: NumPy Array Operations and Indexing
Lecture 1: NumPy Array Operations and Indexing – Part 1
Lecture 2: NumPy Array Operations and Indexing – Part 2
Chapter 12: NumPy Multi-Dimensional Arrays
Lecture 1: NumPy Multi-Dimensional Arrays – Part 1
Lecture 2: NumPy Multi-Dimensional Arrays – Part 2
Lecture 3: NumPy Multi-Dimensional Arrays – Part 3
Chapter 13: Introduction to Pandas Series
Lecture 1: Introduction to Pandas Series
Chapter 14: Introduction to Pandas Dataframes
Lecture 1: Introduction to Pandas Dataframes
Chapter 15: Pandas Dataframe conversion and drop
Lecture 1: Pandas Dataframe conversion and drop – Part 1
Lecture 2: Pandas Dataframe conversion and drop – Part 2
Lecture 3: Pandas Dataframe conversion and drop – Part 3
Chapter 16: Pandas Dataframe summary and selection
Lecture 1: Pandas Dataframe summary and selection – Part 1
Lecture 2: Pandas Dataframe summary and selection – Part 2
Lecture 3: Pandas Dataframe summary and selection – Part 3
Chapter 17: Pandas Missing Data Management and Sorting
Lecture 1: Pandas Missing Data Management and Sorting – Part 1
Lecture 2: Pandas Missing Data Management and Sorting – Part 2
Chapter 18: Pandas Hierarchical-Multi Indexing
Lecture 1: Pandas Hierarchical-Multi Indexing
Chapter 19: Pandas CSV File Read Write
Lecture 1: Pandas CSV File Read Write – Part 1
Lecture 2: Pandas CSV File Read Write – Part 2
Chapter 20: Pandas JSON File Read Write
Lecture 1: Pandas JSON File Read Write Operations
Chapter 21: Pandas Concatenation Merging and Joining
Lecture 1: Pandas Concatenation Merging and Joining – Part 1
Lecture 2: Pandas Concatenation Merging and Joining – Part 2
Lecture 3: Pandas Concatenation Merging and Joining – Part 3
Chapter 22: Pandas Stacking and Pivoting
Lecture 1: Pandas Stacking and Pivoting – Part 1
Lecture 2: Pandas Stacking and Pivoting – Part 2
Chapter 23: Pandas Duplicate Data Management
Lecture 1: Pandas Duplicate Data Management
Chapter 24: Pandas Mapping
Lecture 1: Pandas Mapping
Chapter 25: Pandas Grouping
Lecture 1: Pandas Groupby
Chapter 26: Pandas Aggregation
Lecture 1: Pandas Aggregation
Chapter 27: Pandas Binning or Bucketing
Lecture 1: Pandas Binning or Bucketing
Chapter 28: Pandas Re-index and Rename
Lecture 1: Pandas Re-index and Rename – Part 1
Lecture 2: Pandas Re-index and Rename – Part 2
Chapter 29: Pandas Replace Values
Lecture 1: Pandas Replace Values
Chapter 30: Pandas Dataframe Metrics
Lecture 1: Pandas Dataframe Metrics
Chapter 31: Pandas Random Permutation
Lecture 1: Pandas Random Permutation
Chapter 32: Pandas Excel sheet Import
Lecture 1: Pandas Excel sheet Import
Chapter 33: Pandas Condition Selection and Lambda Function
Lecture 1: Pandas Condition Selection and Lambda Function – Part 1
Lecture 2: Pandas Condition Selection and Lambda Function – Part 2
Chapter 34: Pandas Ranks Min Max
Lecture 1: Pandas Ranks Min Max
Chapter 35: Pandas Cross Tabulation
Lecture 1: Pandas Cross Tabulation
Chapter 36: Matplotlib Graphs and plots
Lecture 1: Graphs and plots using Matplotlib – Part 1
Lecture 2: Graphs and plots using Matplotlib – Part 2
Chapter 37: Matplotlib Histograms
Lecture 1: Matplotlib Histograms
Chapter 38: SOURCE CODE ATTACHED
Instructors
-
Abhilash Nelson
Computer Engineering Master & Senior Programmer at Dubai
Rating Distribution
- 1 stars: 2 votes
- 2 stars: 3 votes
- 3 stars: 15 votes
- 4 stars: 35 votes
- 5 stars: 34 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024