This packages allows you to kick start your data analysis and make faster insights of the data.
- Pandas >=1.0.1
The create_dummies method will return dummies for the columns. For example you want to dummies for Gender column put the column name in a list and you will get the dataframe with the dummies.
>>> df = create_dummies(df_train,["sex"])
>>> df
male female
0 1
1 0
1 0
1 0
The count_values method will return the number of values in the columns. For example you want to count the number of females.
>>> column_value_count(df_train["female"],1,False)
312
- Add more method
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome :)
Happy Coding!!