Category programming

Classification in R

Disclaimer: This example is taken from a reference titled ‘R In A Nutshell’ by Joseph A. Adler Classification is another type of supervised learning in Machine Learning (ML). Classification is a process of categorizing a given set of data into…

Regression in R

Disclaimer: This example is taken from a reference titled ‘R In A Nutshell’ by Joseph A. Adler In Machine Learning (ML), Regression is a supervised learning technique used to observe a correlation between variables (features/predictor) and to predict the continuous…

Function in TypeScript

Function is a block of codes (typically named) which perform a certain process. The motivation of defining a function is to improve reusability and also to encourage better code management. The most basic form of a function looks like the…