I was trying my hands on the Digit Recognizer Competition in Kaggle and I was paralyzed. Actually, I was not […]
Category: R-Programming
The First Decision Tree in R
Decision Tree is a type of Supervised Learning where the sample is split into two or more homogeneous sets based on […]
How to display NAs while using table() in R?
Problem: How to display NA records while using table() in R? Solution: In R, we can use the Table() function […]
The First Basic Random Forest Algorithm in R
Random Forest is a popular algorithm for Machine Learning which can be used both for Regression and Classification tasks. The […]
R – “NAs introduced by coercion” Error
Problem: “NAs introduced by coercion” Error Solution: I started to build a Random Forest Model with the very old Titanic […]
Learning Logistic Regression in R
Logistic Regression is a technique to predict a Categorical Variable Outcome based on one or more input variable(s). Logistic Regression […]