-
Introduction to classification
Image not foundWeb path: https://eds.ninja/images/path/thumbnail.png
Disk path: /static//images/path/thumbnail.png
Using Page Bundles: false
Not all response variables are quantitative. Predicting qualitative variables is called classification. This article will walk you through the introductory concepts of classification.
Read More -
In this article we will try out linear regression on Boston data set. As we go forward in the course, we shall include more complexities. As a first step, let us check for outliers and high leverage points. dt %>% pivot_longer(cols = c(1:14)) %>% ggplot(aes(x=value))+ geom_boxplot()+ facet_wrap(~name) It looks …
Read More -
Linear regression is a very simple method of supervised learning. despite widespread use of advanced models it remains one of the most widely used method. In fact many advanced methods are extensions of linear methods. It is extremely important that a data scientist understands linear regression in all aspects. Linear …
Read More -
This article creates a stepping stone for deeper understanding of elements of data science. Supervised and unsupervised learning, measuring accuracy of models and bias variance trade off are discussed briefly in this article. Introduction Suppose you are a sales manager in a company and you want to increase your sales. …
Read More