Day: August 2, 2019

Applied Data Science Coding in Python: How to rescale Data

Applied Data Science Coding in Python: How to rescale Data Rescaling data is a technique used to transform the values of a dataset to be in a specific range. This is often done to make sure that data is on the same scale before applying machine learning algorithms. There are different ways to rescale data, …

Applied Data Science Coding in Python: How to do Binarization

Applied Data Science Coding in Python: How to do Binarization Binarization is the process of converting a continuous or numeric variable into a binary variable. The binary variable can take on only two values, for example, 0 and 1, true and false, or yes and no. This process is often used in machine learning and …