Skip to main content

Posts

Showing posts with the label ArbitraryDiscretiser

Discretisation -- Decision Tree

  One of the most favourite processes in Data Science is using Tree-based algorithms to find & predict the values. Trees are so popular in this field because they work over binary answers {Yes: No, 1: 0, True: False}, and when we can provide a clear difference between Yes or No, it becomes easy to better analyse things.  Thus, in the field of Data, when we have way too much inflow of data, it is always preferred to get cut to point answers to the questions.  So, why not use the same technique with Discretisation...!!! 

Discretisation

  The process of converting analogue or continuous variables/data into discrete variables/data is known as Discretisation.  The discretisation is the process of transforming continuous variables into discrete variables by creating a set of contiguous intervals that span the range of the variable's values. The discretisation is also called binning , where the bin is an alternative name for an interval. Not Sure why we are introducing and referring to this term here..?? Let's find it out in the next section.