Data Science Bootcamp: Your First Step as a Data Scientist
Data Science Bootcamp: Your First Step as a Data Scientist, available at $74.99, has an average rating of 4.4, with 102 lectures, 12 quizzes, based on 17 reviews, and has 279 subscribers.
You will learn about Developing Linear Regression in R Developing Logistic Regression in R Learning how to Evaluate Data Science Models Learning how to manipulate data with Dplyr Building a Data Science Project end-to-end Submit your own predictions into Kaggle This course is ideal for individuals who are Entry-Level Data Scientists or R Coders or Statisticians or Business Analysts or Financial Modelers It is particularly useful for Entry-Level Data Scientists or R Coders or Statisticians or Business Analysts or Financial Modelers.
Enroll now: Data Science Bootcamp: Your First Step as a Data Scientist
Summary
Title: Data Science Bootcamp: Your First Step as a Data Scientist
Price: $74.99
Average Rating: 4.4
Number of Lectures: 102
Number of Quizzes: 12
Number of Published Lectures: 102
Number of Published Quizzes: 12
Number of Curriculum Items: 114
Number of Published Curriculum Objects: 114
Original Price: €44.99
Quality Status: approved
Status: Live
What You Will Learn
- Developing Linear Regression in R
- Developing Logistic Regression in R
- Learning how to Evaluate Data Science Models
- Learning how to manipulate data with Dplyr
- Building a Data Science Project end-to-end
- Submit your own predictions into Kaggle
Who Should Attend
- Entry-Level Data Scientists
- R Coders
- Statisticians
- Business Analysts
- Financial Modelers
Target Audiences
- Entry-Level Data Scientists
- R Coders
- Statisticians
- Business Analysts
- Financial Modelers
So are you looking to jump into one of the most exciting fields to work on today? And are you looking for a course that explains all the theory behind algorithms with coding?
This course was designed to be your first complete step into Data Science! We will delve deeper into the concepts of Linear and Logistic Regression, understand how Tree Based models work and learn how to evaluate predictive models. Additionally, you will develop your first end-to-end kaggle project!
This course contains lectures around the following groups:
-
Code along lectures where you will see how we can implement the stuff we will learn;
-
Test your knowledge with questions and practical exerciseswith different levels of difficulty;
This course was designed to be focused on the practical side of coding in R – other than studying the functions that let us build algorithms automatically we will investigate deeply how models are trained and how they get to the optimum solution to solve our data science challenges. And why will we use R?
R is one of the de facto languages for a lot of Data Science projects today – either for enterprise-level projects or research, R is a modern and flexible language with a smooth learning curve that enables most professionals to build predictive models in quick fashion.
At the end of the course you should be able to contribute to data science projects – understanding the choices you have to make when it comes to algorithms and learn how to evaluate those choices. Along the way you will also learn how to manipulate data with Dplyr because a huge percentage of the time spent in a Data Science project is focused on data preparation!
Here are some examples of things you will be able to do after finishing the course:
-
Solving Regression problemsusing Linear Regression or Regression Trees.
-
Solving Classification problemsusing Logistic Regression or Classification Trees.
-
Learn how to evaluate algorithmsusing different metrics.
-
Understanding the concept of bias and variance.
-
Using Random Forests and understanding the reasoning behind them.
-
Manipulating data using Dplyr.
-
Build your own Kaggle Data Science project!
Join thousands of professionals and students in this Data Science journey and discover the amazing power of R as a statistical open-source language.
This course will be constantly updated based on students feedback.
Course Curriculum
Chapter 1: Introduction
Lecture 1: Welcome to the Course!
Lecture 2: Course Materials
Chapter 2: Setting up Environment – R and R Studio
Lecture 1: Installing R
Lecture 2: Installing R Studio
Chapter 3: Installing Libraries
Lecture 1: Installing Libraries
Lecture 2: Loading Libraries
Lecture 3: Let's start!
Chapter 4: Manipulating Data with Dplyr
Lecture 1: [Slides] – R Dplyr Library
Lecture 2: Intro to Dplyr and Tibble Data Structure
Lecture 3: Filter and Pipe Format
Lecture 4: Glimpse and Lists as Columns
Lecture 5: Function Encapsulation and Multiple Arguments
Lecture 6: Arrange and Mutate
Lecture 7: Select and Distinct
Lecture 8: Sample_N and Sample_Frac
Lecture 9: Summarize and Group By
Lecture 10: Joining Dataframes
Lecture 11: Small Typo
Lecture 12: [TUTORIAL] – Completing and Debugging Coding Exercises on Udemy Platform
Lecture 13: Practical Exercises – Time to test your skills on Dplyr in your Environment!
Chapter 5: Linear Regression
Lecture 1: [Slides] – Linear Regression – Intuition
Lecture 2: [Slides] – Linear Regression – Error Calculation and R Implementation
Lecture 3: Linear Regression – Introduction
Lecture 4: Loading the Data into R
Lecture 5: Plotting Feature (Age) and Target (Income) Variables
Lecture 6: Fitting a Random Line
Lecture 7: Adjusting the Weight of our Linear Model
Lecture 8: Training our First Linear Model
Lecture 9: Linear Regression Evaluation
Lecture 10: Linear Regression Closed Form Solution
Lecture 11: Gradient Descent Intuition – Part 1
Lecture 12: Gradient Descent Intuition – Part 2
Lecture 13: Visualizing Gradient Descent
Lecture 14: Multivariate Linear Regression
Lecture 15: Practical Exercises – Time to test your skills on Linear Regression!
Chapter 6: Classification Problems and Logistic Regression
Lecture 1: [Slides] – Classification Problems and Logistic Regression – Part 1
Lecture 2: [Slides] – Classification Problems and Logistic Regression – Part 2
Lecture 3: Classification Problems – Introduction
Lecture 4: Classification Problems Intuition – Why Linear Regression is unfit
Lecture 5: Calculating Sigmoid Function and Fitting a Logistic Regression
Lecture 6: Summary of Logistic Regression and Accuracy
Lecture 7: Log-Loss Function Intuition
Lecture 8: Gradient Descent Intuition – Classification
Lecture 9: Visualizing Log-Loss in 3 Dimensions
Lecture 10: Practical Exercises – Time to test your skills on Classification Problems!
Chapter 7: Model Evaluation and Selection
Lecture 1: [Slides] – Model Evaluation and Selection
Lecture 2: Model Evaluation and Selection – Introduction
Lecture 3: Example of a High Bias Model
Lecture 4: Example of a High Variance Model
Lecture 5: Evaluating the Model on Unseen Data
Lecture 6: Randomized Train and Test Split
Lecture 7: Performance across Training and Test Data
Lecture 8: Regression Metrics – Plotting the Residuals
Lecture 9: Regression Metrics – MSE, MAE and RMSE
Lecture 10: Regression Metrics – R-Square Breakdown and MAPE
Lecture 11: Classification Metrics – Fitting Logistic Regression and Confusion Matrix Intro
Lecture 12: Classification Metrics – TP, FP, TN, FN
Lecture 13: Classification Metrics – Precision, Recall and F-Score
Lecture 14: Classification Metrics – Building ROC Curve
Lecture 15: Classification Metrics – ROCR Package and Area Under the Curve
Lecture 16: Practical Exercises – Time to test your skills on Model Evaluation and Selection
Chapter 8: Tree Based Models – Decision Trees
Lecture 1: [Slides] – Decision Trees Intuition – Part 1
Lecture 2: [Slides] – Decision Trees Intuition – Part 2
Lecture 3: Classification Trees – Problem Evaluation and Fitting a Logistic Regression
Lecture 4: Classification Trees – First Split and Gini Impurity Concept
Lecture 5: Classification Trees – Finding the Best Split with Minimum Gini Impurity
Lecture 6: Classification Trees – Fitting a Decision Tree using RPart
Lecture 7: Classification Trees – Adding more Thresholds and Visualizing Classification
Lecture 8: Classification Trees – Tweaking Hyperparameters and Checking Accuracy
Lecture 9: Regression Trees – Intuition
Lecture 10: Regression Trees – Calculating Residual Sum of Squares
Lecture 11: Regression Trees – Finding the Best Split with Residual Sum of Squares
Lecture 12: Regression Trees – Fitting the Algorithm
Lecture 13: Regression Trees – Comparing between Tree and Linear Model
Lecture 14: Practical Exercises – Time to test your Skills on Decision Trees
Chapter 9: Tree Based Models – Random Forests
Lecture 1: [Slides] – Random Forests Intuition
Lecture 2: Random Forest Intuition and Subsetting Data
Lecture 3: Fitting Different Decision Trees
Lecture 4: Building a Random Forest from Scratch with Three Estimators
Lecture 5: Measuring the Accuracy of Each Trees and of the Ensemble Average
Instructors
-
Ivo Bernardo
Partner and Senior Data Scientist @ Daredata Engineering
Rating Distribution
- 1 stars: 1 votes
- 2 stars: 0 votes
- 3 stars: 1 votes
- 4 stars: 3 votes
- 5 stars: 12 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 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
- Top 10 Gardening Courses to Learn in November 2024