Images by : Google Images
Linear regression uses the relationship between the data points to draw a straight line. This line can be used to predict future values.
Images by : Google Images
Logistic Regression is also called logit regression. It is used to estimate discrete values {usually binary values like 0/1} from a set of independent variables.
Images by : Google Images
Images by : Google Images
Polynomial Regression is a form of Linear regression known as a special case of Multiple linear regression which estimates the relationship as an nth degree polynomial.
Images by : Google Images
It is a supervised learning algorithm that is used for classifying problems. It can work well in classifying both categorical and continuous dependent variables.
Images by : Google Images
SVM algorithm is a method of classification algorithm. It is a type of supervised machine learning algorithm that provides analysis of data for classification and regression analysis.
Images by : Google Images
Grid searching is a method to find the best possible combination of hyper-parameters at which the model achieves the highest accuracy.
Images by : Google Images
A collective of decision trees is called a Random Forest. It is an improvement of the decision tree algorithm. The majority votes from the trees and predicts the final output.
Images by : Google Images
A Naive Bayes classifier assumes that the presence of a particular feature in a class is unrelated to the presence of any other feature.
Images by : Google Images
KNN is a simple, supervised ML algorithm that can be used for classification or regression tasks - and is also frequently used in missing value imputation.
Images by : Google Images
IKNN stores all available cases and classifies any new cases by taking a majority vote of its k neighbors.
Images by : Google Images
Images by : Google Images