All Projects → klarEDA → klar-EDA

klarEDA / klar-EDA

Licence: MIT License
A python library for automated exploratory data analysis

Programming Languages

python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to klar-EDA

tv
📺(tv) Tidy Viewer is a cross-platform CLI csv pretty printer that uses column styling to maximize viewer enjoyment.
Stars: ✭ 1,763 (+11653.33%)
Mutual labels:  csv, csv-visualization
fb-page-chat-download
Python script to download messages from a Facebook page to a CSV file
Stars: ✭ 51 (+240%)
Mutual labels:  csv
midi degradation toolkit
A toolkit for generating datasets of midi files which have been degraded to be 'un-musical'.
Stars: ✭ 29 (+93.33%)
Mutual labels:  csv
carsBase
База автомобилей с марками и моделями JSON, CSV, XLSX и MySQL
Stars: ✭ 49 (+226.67%)
Mutual labels:  csv
transferdb
TransferDB 支持异构数据库 schema 转换、全量数据导出导入以及增量数据同步功能( Oracle 数据库 -> MySQL/TiDB 数据库)
Stars: ✭ 30 (+100%)
Mutual labels:  csv
vat-rates
💸 {Digital,Cloud,Electronic,Online} Services VAT Rate Database
Stars: ✭ 81 (+440%)
Mutual labels:  csv
CSV
CSV - AutoHotkey library for working with CSV Files
Stars: ✭ 34 (+126.67%)
Mutual labels:  csv
exoffice
Library to parse common excel formats (xls, xlsx, csv)
Stars: ✭ 31 (+106.67%)
Mutual labels:  csv
x86-csv
A machine-readable representation of the Intel x86 Instruction Set Reference.
Stars: ✭ 20 (+33.33%)
Mutual labels:  csv
kick-off-web-scraping-python-selenium-beautifulsoup
A tutorial-based introduction to web scraping with Python.
Stars: ✭ 18 (+20%)
Mutual labels:  csv
swift-csv
Fast and memory-efficient CSV library in Swift.
Stars: ✭ 73 (+386.67%)
Mutual labels:  csv
odin
Data-structure definition/validation/traversal, mapping and serialisation toolkit for Python
Stars: ✭ 24 (+60%)
Mutual labels:  csv
qcache
In memory cache server with query capabilities
Stars: ✭ 36 (+140%)
Mutual labels:  csv
awesome-csv
Awesome Comma-Separated Values (CSV) - What's Next? - Frequently Asked Questions (F.A.Q.s) - Libraries & Tools
Stars: ✭ 46 (+206.67%)
Mutual labels:  csv
cfv
Command-line File Verify
Stars: ✭ 36 (+140%)
Mutual labels:  csv
idataapi-transform
Full async support toolkit for IDataAPI for efficiency work, read data from API/ES/csv/xlsx/json/redis/mysql/mongo/kafka, write to ES/csv/xlsx/json/redis/mysql/mongo/kafka, provide CLI and python API
Stars: ✭ 36 (+140%)
Mutual labels:  csv
datapackage-go
A Go library for working with Data Package.
Stars: ✭ 22 (+46.67%)
Mutual labels:  csv
safe-airdrop
A Gnosis Safe app for distributing tokens from CSV transfer files.
Stars: ✭ 32 (+113.33%)
Mutual labels:  csv
simplifai
Free automated deep learning for spreadsheets
Stars: ✭ 17 (+13.33%)
Mutual labels:  csv
magento2-module-catalog-import-command
Ⓜ️2️⃣ A Magento2 console command to import catalog files.
Stars: ✭ 31 (+106.67%)
Mutual labels:  csv

Build Status

klar-eda

A python library for automated exploratory data analysis

Overview

Documentation - https://klareda.github.io/klar-EDA/

Presentation - https://youtu.be/FsDV6a-L-wo

The library aims to ease the data exploration and preprocessing steps and provide a smart and automated technique for exploratory analysis of the data

The library consists of the following modules

  • CSV Data Visualization
  • CSV Data Preprocessing
  • Image Data Visualization
  • Image Data Preprocessing

Usage

You can install the test version of the library by the below command::

$ pip3 install -i https://test.pypi.org/simple/ klar-eda    

The above-mentioned modules can be used as below::

>>> import klar_eda

CSV Data Visualization

>>> from klar_eda.visualization import visualize_csv

>>> visualize_csv(<csv-file-path>) 

OR

>>> visualize_csv(<data-frame>)

CSV Data Preprocessing

>>> from klar_eda.preprocessing import preprocess_csv

>>> preprocess_csv(<csv-file-path>) 

OR

>>> preprocess_csv(<data-frame>)

Image Data Visualization

>>> from klar_eda.visualization import visualize_images

>>> ds = tfds.load('cifar10', split='train', as_supervised=True)
>>> images = []
>>> labels = []
>>> for image, label in tfds.as_numpy(ds):
        h = randint(24, 56)
        w = randint(24, 56)
        image = cv2.resize(image, (w, h))
        images.append(image)
        labels.append(label)

>>> visualize_images(images, labels)

Image Data Preprocessing

>>> from klar_eda.preprocessing import preprocess_images

>>> preprocess_images(<images-folder-path>)

If you liked our project, it would be really helpful if you could share this project with others.

Contributing

For contributing to this project, feel free to clone the repository::

git clone https://github.com/klarEDA/klar-EDA.git

For installing the necessary packages, run the below command::

$ pip3 install -r requirement.txt

Documentation

To test the documentation in local::

$ cd docsource/
$ make html

To push the latest documentation in github::

$ cd docsource/
$ make github

License

klar-eda is released under the MIT license.

Please feel free to contact us for any issues OR for discussion of future scope of the library at [email protected]

Owners

Ashish Kshirsagar Rishabh Agarwal Sayali Deshpande Ishaan Ballal

References

https://test.pypi.org/project/klar-eda/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].