Skip to main content

Tiny Data Analysis Library

Project description

📈 Ickle - Data Analysis Library

A tiny data analysis library for common day-to-day analytical tasks. Written in Python, for Python.

Installation

Ickle can be installed via pip through PyPi

pip install ickle

Getting Started

DataFrame

A DataFrame holds two dimensional heterogenous data. It accepts dictionary as input, with Numpy arrays as values and strings as column names.

import numpy as np
import ickle as ick

name = np.array(['John', 'Sam', 'Tina', 'Josh', 'Jack', 'Jill'])
place = np.array(['Kolkata', 'Mumbai', 'Delhi', 'Mumbai', 'Mumbai', 'Mumbai'])
weight = np.array([57, 70, 54, 59, 62, 70])
married = np.array([True, False, True, False, False, False])

data = {'name': name, 'place': place, 'weight': weight, 'married': married}
df = ick.DataFrame(data)

You can use ickle easily in Jupyter Notebooks

Documentation

Read the documentation here


Copyright 2022 Karishma Shukla

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

ickle-1.0.1.tar.gz (15.1 kB view hashes)

Uploaded Source

Built Distribution

ickle-1.0.1-py3-none-any.whl (14.7 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