All Projects → adamerose → Pandasgui

adamerose / Pandasgui

Licence: mit
PandasGUI is a GUI for viewing, plotting and analyzing Pandas DataFrames.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pandasgui

Ditching Excel For Python
Functionalities in Excel translated to Python
Stars: ✭ 172 (-93.11%)
Mutual labels:  dataframe, pandas
Foxcross
AsyncIO serving for data science models
Stars: ✭ 18 (-99.28%)
Mutual labels:  dataframe, pandas
Pyjanitor
Clean APIs for data cleaning. Python implementation of R package Janitor
Stars: ✭ 647 (-74.07%)
Mutual labels:  dataframe, pandas
Sequoia
A股自动选股程序,实现了海龟交易法则、缠中说禅牛市买点,以及其他若干种技术形态
Stars: ✭ 564 (-77.39%)
Mutual labels:  dataframe, pandas
Danfojs
danfo.js is an open source, JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.
Stars: ✭ 1,304 (-47.74%)
Mutual labels:  dataframe, pandas
Pdpipe
Easy pipelines for pandas DataFrames.
Stars: ✭ 590 (-76.35%)
Mutual labels:  dataframe, 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 (-66.81%)
Mutual labels:  dataframe, pandas
Pystore
Fast data store for Pandas time-series data
Stars: ✭ 325 (-86.97%)
Mutual labels:  dataframe, pandas
Jardin
A pandas.DataFrame-based ORM.
Stars: ✭ 81 (-96.75%)
Mutual labels:  dataframe, pandas
Pandas Ta
Technical Analysis Indicators - Pandas TA is an easy to use Python 3 Pandas Extension with 130+ Indicators
Stars: ✭ 962 (-61.44%)
Mutual labels:  dataframe, pandas
Dataframe Go
DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Stars: ✭ 487 (-80.48%)
Mutual labels:  dataframe, pandas
Panthera
Data-frames & arrays on Clojure
Stars: ✭ 168 (-93.27%)
Mutual labels:  dataframe, pandas
Pandastable
Table analysis in Tkinter using pandas DataFrames.
Stars: ✭ 376 (-84.93%)
Mutual labels:  dataframe, pandas
Datasheets
Read data from, write data to, and modify the formatting of Google Sheets
Stars: ✭ 593 (-76.23%)
Mutual labels:  dataframe, pandas
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+726.93%)
Mutual labels:  pandas, gui
Modin
Modin: Speed up your Pandas workflows by changing a single line of code
Stars: ✭ 6,639 (+166.09%)
Mutual labels:  dataframe, pandas
Dominando-Pandas
Este repositório está destinado ao processo de aprendizagem da biblioteca Pandas.
Stars: ✭ 22 (-99.12%)
Mutual labels:  pandas, dataframe
Pandasvault
Advanced Pandas Vault — Utilities, Functions and Snippets (by @firmai).
Stars: ✭ 316 (-87.33%)
Mutual labels:  dataframe, pandas
Boltzmannclean
Fill missing values in Pandas DataFrames using Restricted Boltzmann Machines
Stars: ✭ 23 (-99.08%)
Mutual labels:  dataframe, pandas
Pandahouse
Pandas interface for Clickhouse database
Stars: ✭ 126 (-94.95%)
Mutual labels:  dataframe, pandas

About

PandasGUI is a GUI for viewing, plotting and analyzing Pandas DataFrames.

Demo

PandasGUI Demo

Installation

Install latest release from PyPi:

pip install pandasgui

Install directly from Github for the latest unreleased changes:

pip install git+https://github.com/adamerose/pandasgui.git

Usage

Create and view a simple DataFrame

import pandas as pd
from pandasgui import show
df = pd.DataFrame({'a':[1,2,3], 'b':[4,5,6], 'c':[7,8,9]})
show(df)

PandasGUI comes with sample datasets that will download on first use. You can also import all_datasets which is a dictionary of all sample datasets like Dict[str, DataFrame]

from pandasgui import show
from pandasgui.datasets import pokemon, titanic, all_datasets
show(pokemon, titanic)
show(**all_datasets)

Features

  • View DataFrames and Series (with MultiIndex support)
  • Interactive plotting
  • Filtering
  • Statistics summary
  • Data editing and copy / paste
  • Import CSV files with drag & drop
  • Search toolbar

More Info

Issues, feedback and pull requests are welcome.

This project is still in version 0.x.y and subject to breaking changes. The latest changes will be on the develop branch, and will be occasionally merged to master as a release with a tag indicating the version number and published to PyPi.

If you like this project remember to leave a ! And if you want to give more support you can Buy Me A Coffee.

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