All Projects → HHammond → Prettypandas

HHammond / Prettypandas

Licence: mit
A Pandas Styler class for making beautiful tables

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Prettypandas

Sweetviz
Visualize and compare datasets, target values and associations, with one line of code.
Stars: ✭ 1,851 (+392.29%)
Mutual labels:  data-science, data-analysis, pandas, pandas-dataframe
Rightmove webscraper.py
Python class to scrape data from rightmove.co.uk and return listings in a pandas DataFrame object
Stars: ✭ 125 (-66.76%)
Mutual labels:  data-science, data-analysis, pandas, pandas-dataframe
Pandas Profiling
Create HTML profiling reports from pandas DataFrame objects
Stars: ✭ 8,329 (+2115.16%)
Mutual labels:  data-science, data-analysis, pandas, pandas-dataframe
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 (-27.39%)
Mutual labels:  data-science, data-analysis, pandas, pandas-dataframe
Seaborn Tutorial
This repository is my attempt to help Data Science aspirants gain necessary Data Visualization skills required to progress in their career. It includes all the types of plot offered by Seaborn, applied on random datasets.
Stars: ✭ 114 (-69.68%)
Mutual labels:  data-science, data-analysis, pandas
10 Simple Hacks To Speed Up Your Data Analysis In Python
Some useful Tips and Tricks to speed up the data analysis process in Python.
Stars: ✭ 45 (-88.03%)
Mutual labels:  data-science, pandas, pandas-dataframe
Pandas Videos
Jupyter notebook and datasets from the pandas Q&A video series
Stars: ✭ 1,716 (+356.38%)
Mutual labels:  data-science, data-analysis, pandas
Dtale Desktop
Build a data visualization dashboard with simple snippets of python code
Stars: ✭ 128 (-65.96%)
Mutual labels:  data-science, data-analysis, pandas
Ai Learn
人工智能学习路线图,整理近200个实战案例与项目,免费提供配套教材,零基础入门,就业实战!包括:Python,数学,机器学习,数据分析,深度学习,计算机视觉,自然语言处理,PyTorch tensorflow machine-learning,deep-learning data-analysis data-mining mathematics data-science artificial-intelligence python tensorflow tensorflow2 caffe keras pytorch algorithm numpy pandas matplotlib seaborn nlp cv等热门领域
Stars: ✭ 4,387 (+1066.76%)
Mutual labels:  data-science, data-analysis, pandas
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (+661.7%)
Mutual labels:  data-science, data-analysis, pandas
Data Science Projects With Python
A Case Study Approach to Successful Data Science Projects Using Python, Pandas, and Scikit-Learn
Stars: ✭ 198 (-47.34%)
Mutual labels:  data-science, pandas, pandas-dataframe
Mlcourse.ai
Open Machine Learning Course
Stars: ✭ 7,963 (+2017.82%)
Mutual labels:  data-science, data-analysis, pandas
Data Science Notebook
📖 每一个伟大的思想和行动都有一个微不足道的开始
Stars: ✭ 196 (-47.87%)
Mutual labels:  data-science, data-analysis, pandas
Pandas Summary
An extension to pandas dataframes describe function.
Stars: ✭ 361 (-3.99%)
Mutual labels:  data-science, data-analysis, pandas
Dat8
General Assembly's 2015 Data Science course in Washington, DC
Stars: ✭ 1,516 (+303.19%)
Mutual labels:  data-science, data-analysis, pandas
Dataframe
C++ DataFrame for statistical, Financial, and ML analysis -- in modern C++ using native types, continuous memory storage, and no pointers are involved
Stars: ✭ 828 (+120.21%)
Mutual labels:  data-science, data-analysis, pandas
Pdpipe
Easy pipelines for pandas DataFrames.
Stars: ✭ 590 (+56.91%)
Mutual labels:  data-science, pandas, pandas-dataframe
Just Pandas Things
An ongoing list of pandas quirks
Stars: ✭ 660 (+75.53%)
Mutual labels:  data-science, pandas, pandas-dataframe
Zebras
Data analysis library for JavaScript built with Ramda
Stars: ✭ 192 (-48.94%)
Mutual labels:  data-science, data-analysis, pandas
Deepgraph
Analyze Data with Pandas-based Networks. Documentation:
Stars: ✭ 232 (-38.3%)
Mutual labels:  data-science, data-analysis, pandas

Pretty Pandas

Testing Status Documentation Status Supported Versions PyPI

PrettyPandas is a Pandas DataFrame Styler class that helps you create report quality tables with a simple API.

(
   df
   .pipe(PrettyPandas)
   .as_currency('GBP', subset='A')
   .as_percent(subset='B')
   .total()
   .average()
)

Features

  • Add summary rows and columns.
  • A nice and customizable theme.
  • Number formatting for currency, scientific units, and percentages.
  • Chaining commands.
  • Works seamlessly with Pandas Style API.

Installation

You can install PrettyPandas using pip with support for Python 2.7, 3.3, 3.4, and 3.5:

pip install prettypandas

You can also install from source:

git clone [email protected]:HHammond/PrettyPandas.git
cd PrettyPandas
python setup.py install

Documentation

Documentation is hosted on Read the Docs.

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