Regressor as Classifier
... it works better than you think.
A classifier predicts a categorical target variable while a regressor predicts a continuous response variable. Can we fit a regressor as a classifier? Let’s find out.
... it works better than you think.
A classifier predicts a categorical target variable while a regressor predicts a continuous response variable. Can we fit a regressor as a classifier? Let’s find out.
no...sometimes we need to treat them with respect
you might wonder how you were doing without it all along
...with precision-recall curve thrown in
Don't just tow the line, move it!
Imagine you are buying a car and you want to know about its mileage. You don’t want to go for the user reviews or the company’s claim of mileage. The option you are left with is to predict the mileage all by yourself. So, if you are an interested data scientist, why not give it a try?
Imagine you have four classifiers with similar accuracies. Are they really similar? Plotting a learning curve might reveal a hidden side to these classifiers.
Blow away the confusion
You’ve created a classification model and come across a new concept called confusion matrix. However tough it may seem, a classification model evaluation is not complete unless you add in your confusion matrix.
Is a respectable accuracy score enough?
Imagine training a classifier on a dataset only to find your friend is almost as good guessing at the target label, that too without looking at the data. Is your classifier any good then?
Discretization saves the day!
Dataframes on-the-fly
At times it is necessary to create dataframes within a program. Learn three ways to create them.