Exploratory Data Analysis (EDA) April 21, 2021 Add Comment Edit the main aspects that must have a consideration are: - summary of the main characteristics of the data. - uncover the relationship between... Read More
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
Methods of normalizing data April 21, 2021 Add Comment Edit The main three methods of normalizing data are: Simple Feature Scaling[0,1] \[X_{new} = \frac{X_{old}}{X_{ma... Read More
Data Normalization in Python April 20, 2021 Add Comment Edit Normalization refers to transforming the data to the range of [0, 1] (or any range), or sometimes just transforming the data on the unit s... Read More