Skip to main content

Tools to jazz up your data.

Project description

DataJazz

Tools to jazz up your data.

DataJazz is toolkit for manipulating and optimizing your data for analysis, machine learning, extraction, transformation, and loading (ETL).

Contributing

DataJazz is an open-source project founded and maintained to better serve the data science and machine learning community. Please feel free to submit pull requests to contribute to the project. By participating, you are expected to adhere to DataJazz's code of conduct.

Installation

pip install datajazz

Example usage

Create a dataframe with different datatypes

import pandas as pd
import numpy as np

rng = pd.date_range('2015-02-24', periods=5, freq='20H')
df = pd.DataFrame({ 'Start_Time': rng, 'Values': np.random.randn(len(rng)), 'Categories': ['A']*len(rng) }) 
df.head()

Create time-of-time features

import datajazz as dj
df = dj.timeoftime(df)

One-hot encode your categorical columns

import datajazz as dj
df = dj.onehot_categories(df)

Remove redundant rows and columns

import datajazz as dj
df = dj.remove_redundancies(df)

Many more use cases to come! Submit a pull request to add a new use case.

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

datajazz-0.0.8.tar.gz (180.1 kB view hashes)

Uploaded Source

Built Distribution

datajazz-0.0.8-py3-none-any.whl (6.6 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