Skip to main content

Kick start your data analysis with these functions

Project description

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!!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quickdataanalysis-0.0.4.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

quickdataanalysis-0.0.4-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page