Tag Archives: R for Excel Users

Time Series Forecasting in R – Seasonal Random Walk model using lynx dataset

Time Series Forecasting in R – Seasonal Random Walk model using lynx dataset     Seasonal Random Walk (SRW) is a method for time series forecasting that is particularly well-suited for data that exhibit a strong seasonality pattern, such as regular fluctuations that occur at specific time intervals. The SRW model assumes that the future …

Time Series Forecasting in R – Auto ARIMA model using lynx dataset

Time Series Forecasting in R – Auto ARIMA model using lynx dataset   Auto ARIMA is a method for time series forecasting that automatically selects the best parameters for an ARIMA model, which stands for Auto-Regressive Integrated Moving Average. ARIMA models are a commonly used method for time series forecasting and are particularly well-suited for …

How to do Damped Trend Linear Exponential Smoothing model using lynx dataset – Time Series Forecasting

How to do Damped Trend Linear Exponential Smoothing model using lynx dataset – Time Series Forecasting   Damped Trend Linear Exponential Smoothing (DT-LES) is a variation of the Linear Exponential Smoothing (LES) technique that is used to forecast future values of a time series. It is a more advanced method that is particularly well-suited for …

End-to-End Machine Learning: crash course in R

  End-to-End Machine Learning: crash course in R In this Applied Machine Learning & Data Science Recipe (Jupyter Notebook), the reader will find the practical use of applied machine learning and data science in R programming: End-to-End Machine Learning: crash course in R.   End-to-End Machine Learning: crash course in R   Fund SETScholars to …

End-to-End Machine Learning: statistical significance of difference between model predictions

  End-to-End Machine Learning: statistical significance of difference between model predictions In this Applied Machine Learning & Data Science Recipe (Jupyter Notebook), the reader will find the practical use of applied machine learning and data science in R programming: End-to-End Machine Learning: statistical significance of difference between model predictions.    End-to-End Machine Learning: statistical …

End-to-End Machine Learning: model selection in R using summary results

End-to-End Machine Learning: model selection in R using summary results When training multiple machine learning models, it’s important to select the best one to use on new, unseen data. One way to do this is by using a tabular method called “summary results”. Summary results are a collection of statistics that summarize the performance of …

End-to-End Machine Learning: roc metric in R

End-to-End Machine Learning: roc metric in R When training a machine learning model, it’s important to evaluate its performance to understand how well it will work on new, unseen data. One common way to evaluate the performance of a model for binary classification problems is by using a metric called “Receiver Operating Characteristic” (ROC) curve. …

End-to-End Machine Learning: kappa metric in R

End-to-End Machine Learning: kappa metric in R When training a machine learning model, it’s important to evaluate its performance to understand how well it will work on new, unseen data. One common way to evaluate the performance of a model is by using a metric called “kappa.” Kappa is a measure of the agreement between …

Evaluate Machine Learning Algorithm – leave one out cross validation in R

Evaluate Machine Learning Algorithm – leave one out cross validation in R Evaluating the performance of a machine learning algorithm is an important step in understanding how well it will work on new, unseen data. One popular method for evaluating the performance of an algorithm is called “leave-one-out cross validation” (LOOCV). In leave-one-out cross validation, …

Classification in R – SVM in R

Classification in R – SVM in R Support Vector Machine (SVM) is a popular method for classification in machine learning and data analysis. It’s a type of algorithm that can sort items into different categories based on their characteristics. An SVM works by finding the best boundary, or “decision boundary,” that separates the different classes …