Skip to content

This package allows you to kick start your data analysis and make faster insights into the data.

License

Notifications You must be signed in to change notification settings

Santhoshkumard11/quickdataanalysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quick data analysis

PyPi Release Issues

This packages allows you to kick start your data analysis and make faster insights of the data.

Requirements

  • Pandas >=1.0.1

Documentation

1) Creating Dummies for columns

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

2) Counting the column values

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

ToDo

  • Add more method

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome :)

Happy Coding!!

About

This package allows you to kick start your data analysis and make faster insights into the data.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages