All Projects → chmduquesne → Quickviz

chmduquesne / Quickviz

Visualize a pandas dataframe in a few clicks

Projects that are alternatives of or similar to Quickviz

Just Pandas Things
An ongoing list of pandas quirks
Stars: ✭ 660 (+3566.67%)
Mutual labels:  jupyter-notebook, pandas, pandas-dataframe
Pytablewriter
pytablewriter is a Python library to write a table in various formats: CSV / Elasticsearch / HTML / JavaScript / JSON / LaTeX / LDJSON / LTSV / Markdown / MediaWiki / NumPy / Excel / Pandas / Python / reStructuredText / SQLite / TOML / TSV.
Stars: ✭ 422 (+2244.44%)
Mutual labels:  jupyter-notebook, pandas, pandas-dataframe
Data Science Projects With Python
A Case Study Approach to Successful Data Science Projects Using Python, Pandas, and Scikit-Learn
Stars: ✭ 198 (+1000%)
Mutual labels:  jupyter-notebook, pandas, pandas-dataframe
Pandas Profiling
Create HTML profiling reports from pandas DataFrame objects
Stars: ✭ 8,329 (+46172.22%)
Mutual labels:  jupyter-notebook, pandas, pandas-dataframe
Py
Repository to store sample python programs for python learning
Stars: ✭ 4,154 (+22977.78%)
Mutual labels:  jupyter-notebook, pandas, pandas-dataframe
California Coronavirus Data
The Los Angeles Times' independent tally of coronavirus cases in California.
Stars: ✭ 188 (+944.44%)
Mutual labels:  jupyter-notebook, pandas, binder
Data Science Hacks
Data Science Hacks consists of tips, tricks to help you become a better data scientist. Data science hacks are for all - beginner to advanced. Data science hacks consist of python, jupyter notebook, pandas hacks and so on.
Stars: ✭ 273 (+1416.67%)
Mutual labels:  jupyter-notebook, pandas, pandas-dataframe
Pycon 2019 Tutorial
Data Science Best Practices with pandas
Stars: ✭ 410 (+2177.78%)
Mutual labels:  jupyter-notebook, pandas
Hands On Nltk Tutorial
The hands-on NLTK tutorial for NLP in Python
Stars: ✭ 419 (+2227.78%)
Mutual labels:  jupyter-notebook, binder
Pydata Notebook
利用Python进行数据分析 第二版 (2017) 中文翻译笔记
Stars: ✭ 4,300 (+23788.89%)
Mutual labels:  jupyter-notebook, pandas
Pandera
A light-weight, flexible, and expressive pandas data validation library
Stars: ✭ 506 (+2711.11%)
Mutual labels:  pandas, pandas-dataframe
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (+2016.67%)
Mutual labels:  jupyter-notebook, pandas
Prettypandas
A Pandas Styler class for making beautiful tables
Stars: ✭ 376 (+1988.89%)
Mutual labels:  pandas, pandas-dataframe
Geopandas Tutorial
Tutorial on geospatial data manipulation with Python
Stars: ✭ 306 (+1600%)
Mutual labels:  jupyter-notebook, binder
Dataframe Go
DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Stars: ✭ 487 (+2605.56%)
Mutual labels:  pandas, pandas-dataframe
Data Science Portfolio
Portfolio of data science projects completed by me for academic, self learning, and hobby purposes.
Stars: ✭ 559 (+3005.56%)
Mutual labels:  jupyter-notebook, pandas
Evidently
Interactive reports to analyze machine learning models during validation or production monitoring.
Stars: ✭ 304 (+1588.89%)
Mutual labels:  jupyter-notebook, pandas-dataframe
Or Pandas
【运筹OR帷幄|数据科学】pandas教程系列电子书
Stars: ✭ 492 (+2633.33%)
Mutual labels:  jupyter-notebook, pandas
Bamboolib
bamboolib - a GUI for pandas DataFrames
Stars: ✭ 622 (+3355.56%)
Mutual labels:  jupyter-notebook, pandas
Jdata
京东JData算法大赛-高潜用户购买意向预测入门程序(starter code)
Stars: ✭ 662 (+3577.78%)
Mutual labels:  jupyter-notebook, pandas

Build Status Binder

Quickviz

Quickviz provides widgets for quickly visualizing pandas dataframes. It interfaces with seaborn and pandas.plot.

Example

View of the interface

See the gallery (which is also a test suite) for more.

Usage

There only one function, visualize. Apply it to your dataframe, and start playing.

from quickviz import visualize as v
from vega_datasets import data

df = data.cars()
v(df)

Try it live!

Rationale

It is often necessary to plot data in order to understand it. Plotting allows to quiclky spot glitches in the data: that person who is 180 meters tall or this car which can speed thousands of kilometers per hour will immediately stand out. In this situation, one wants a way to quickly (rather than beautifully) plot their data. Quickviz provides a set of widgets to do this in a few clicks.

Installation

pip install ipywidgets
jupyter nbextension enable --py widgetsnbextension
pip install quickviz

Disclaimer

Quickviz does not read the documentation for you! It only makes it easier to use seaborn/pandas with a mouse. In order to understand what you are doing, you still need to dig in their respective APIs.

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].