Convert categorical variable to quantitative variable April 21, 2021 Add Comment Edit -One-hot encoding: Add dummy variable (A, B, C,..) for each unique category or assign 0,1 for each category, for example, let's have ... Read More
Binning in Python April 21, 2021 Add Comment Edit The main meaning of binning is to group values into "Bins", or convert numerical values into categorical. For ex... Read More
Data Formating in Python April 20, 2021 Add Comment Edit All value in specific column must be in the same format, another thing we may want to convert entire column to specific format, and we can... Read More