What is R

Last Updated on August 22, 2019 R is perhaps one of the most powerful and most popular platforms for statistical programming and applied machine learning. When you get serious about machine learning, you will find your way into R. In this post, you will discover what R is, where it came from and some of its most important features. Kick-start your project with my new book Machine Learning Mastery With R, including step-by-step tutorials and the R source code files […]

Read more

Non-Linear Classification in R with Decision Trees

Last Updated on August 22, 2019 In this post you will discover 7 recipes for non-linear classification with decision trees in R. All recipes in this post use the iris flowers dataset provided with R in the datasets package. The dataset describes the measurements if iris flowers and requires classification of each observation to one of three flower species. Kick-start your project with my new book Machine Learning Mastery With R, including step-by-step tutorials and the R source code files […]

Read more

Convex Optimization in R

Last Updated on August 22, 2019 Optimization is a big part of machine learning. It is the core of most popular methods, from least squares regression to artificial neural networks. In this post you will discover recipes for 5 optimization algorithms in R. These methods might be useful in the core of your own implementation of a machine learning algorithm. You may want to implement your own algorithm tuning scheme to optimize the parameters of a model for some cost […]

Read more

Machine Learning Newsletters

Last Updated on June 7, 2016 There are a lot of blogs and videos on machine learning and more being created every day, week and month. If you are working or at school, it can feel overwhelming to keep up with some much material. Worse, you feel like you will be at some great disadvantage if you do miss something. In this post you will learn how subscribing to machine learning and data science newsletters can save you time and […]

Read more

How To Estimate Model Accuracy in R Using The Caret Package

Last Updated on August 15, 2020 When you are building a predictive model, you need a way to evaluate the capability of the model on unseen data. This is typically done by estimating accuracy using data that was not used to train the model such as a test set, or using cross validation. The caret package in R provides a number of methods to estimate the accuracy of a machines learning algorithm. In this post you discover 5 approaches for […]

Read more

How To Get Started With Machine Learning Algorithms in R

Last Updated on August 22, 2019 R is the most popular platform for applied machine learning. When you want to get serious with applied machine learning you will find your way into R. It is very powerful because so many machine learning algorithms are provided. A problem is that the algorithms are all provided by third parties, which makes their usage very inconsistent. This slows you down, a lot, because you have to learn how to model data and how […]

Read more

Review of Applied Predictive Modeling

Last Updated on August 15, 2020 The book Applied Predictive Modeling teaches practical machine learning theory with code examples in R. It is an excellent book and highly recommended to machine learning practitioners and users of R for machine learning. In this post you will discover the benefits of this book and how it can help you become a better machine predictive modeler. About the Book Applied Predictive Modeling is written by Max Kuhn and Kjell Johnson. Max Kuhn is […]

Read more

Benefits of Implementing Machine Learning Algorithms From Scratch

Last Updated on August 15, 2020 Machine Learning can be difficult to understand when getting started. There are a lot of algorithms and processes that are prescribed and used, many with difficult to penetrate explanations for how and why the work. It can feel overwhelming. An approach that you can use to get handle on machine learning algorithms and practices is to implement them from scratch. This will give you a deep understanding of how the algorithm works and all […]

Read more

Caret R Package for Applied Predictive Modeling

Last Updated on August 22, 2019 The R platform for statistical computing is perhaps the most popular and powerful platform for applied machine learning. The caret package in R has been called “R’s competitive advantage“. It makes the process of training, tuning and evaluating machine learning models in R consistent, easy and even fun. In this post you will discover the caret package in R, it’s key features and where to go to learn more about it. Kick-start your project […]

Read more

Data Visualization with the Caret R package

Last Updated on August 22, 2019 The caret package in R is designed to streamline the process of applied machine learning. A key part of solving data problems in understanding the data that you have available. You can do this very quickly by summarizing the attributes with data visualizations. There are a lot of packages and functions for summarizing data in R and it can feel overwhelming. For the purposes of applied machine learning, the caret package provides a few […]

Read more
1 768 769 770 771 772 906