Month: April 2019

How to utilise XGBoost : xgbTree model in R

How to utilise XGBoost : xgbTree model in R XGBoost (eXtreme Gradient Boosting) is a powerful and widely-used machine learning algorithm, particularly in the field of gradient boosting. The xgbTree model is a variation of XGBoost that is particularly well suited for non-linear problems. In R, the “xgboost” package can be used to build and …

How to utilise XGBoost : xgbLinear model in R

How to utilise XGBoost : xgbLinear model in R XGBoost (eXtreme Gradient Boosting) is a powerful and widely-used machine learning algorithm, particularly in the field of gradient boosting. The xgbLinear model is a variation of XGBoost that is particularly well suited for linear problems. In R, the “xgboost” package can be used to build and …

How to utilise classification and regression tree model in R

How to utilise classification and regression tree model in R Classification and Regression Tree (CART) models are a popular method in the field of machine learning for both classification and regression tasks. In R, the “rpart” package is commonly used to build CART models. The first step in using a CART model is to prepare …

How to utilise CARET SVM Model in R

How to utilise CARET SVM Model in R Support Vector Machines (SVM) is a type of supervised machine learning algorithm that is used for classification and regression. The caret package in R is a popular package for building machine learning models, and it also includes an SVM model. Here’s how to use the caret package …

How to utilise CARET KNN Model in R

How to utilise CARET KNN Model in R K-Nearest Neighbors (KNN) is a type of supervised machine learning algorithm that is used for classification and regression. The caret package in R is a popular package for building machine learning models, and it also includes a KNN model. Here’s how to use the caret package to …

How to utilise CARET Regularised Regression Model in R

How to utilise CARET Regularised Regression Model in R Regularized regression is a type of regression that helps to prevent overfitting by adding a penalty term to the loss function. The caret package in R is a popular package for building machine learning models, and it also includes regularized regression models such as Ridge and …

How to utilise CARET Linear Discriminant Analysis model in R

How to utilise CARET Linear Discriminant Analysis model in R Linear Discriminant Analysis (LDA) is a statistical method that is used to classify a set of observations into one of two or more classes based on one or more predictor variables. The caret package in R is a popular package for building machine learning models, …

How to utilise CARET Logistic Regression model in R

How to utilise CARET Logistic Regression model in R Logistic regression is a statistical method that is used to predict a binary target variable based on one or more predictor variables. The caret package in R is a popular package for building machine learning models, and it also includes a logistic regression model. Here’s how …