Pandas Dataframe Editor
Project description
statsu
About
Simple GUI Tool for Pandas DataFrame
This project is a GUI tool based on PySide6 that can display and edit Pandas DataFrames. It can be used when you want to visually check the data through a GUI instead of a console window during code execution or when you want users to edit the data directly.
Installation
pip install statsu
Usage
You can perform a simple test by entering the following in the console window:
python debug_run.py
After running, you can also load data from Excel files or CSV files.
You can view the DataFrame you want to view or edit by entering it as input. After editing, you can get the edited result by saving and closing.
import pandas as pd
from statsu import show
df = pd.DataFrame({
'a':[3.2, 'AAA', 9],
'b':[441, 3, 1.2],
'c':[0.6, 'DTD', 32]})
result = show(df)
More Info.
Issues, feedback and pull requests are welcome
Feel free to provide additional ideas, opinions, and pull requests.
Project Goal
This project started as a personal project and currently implements only the most basic functions for manipulating DataFrames. The most important goal is to be a DataFrame Viewer, but I plan to add features such as graphs and statistical analysis based on my needs.
This project aims to be easily utilized in multiple projects through small and easily separable code.
Comparison with Other Similar Projects
In fact, there are many more alternatives as DataFrame Visualization Tools than this.
Pandas DataFrame Visualization Tools
The advantage of this project at the moment is that the code is small, making it easy to understand quickly and customize. If you want more features, refer to the projects in the link above, and use this project as a base to create your own tools.
Etc.
Code motivated by PandasGUI. Past commits of this project includes PandasGUI code.
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
File details
Details for the file statsu-0.0.14.tar.gz
.
File metadata
- Download URL: statsu-0.0.14.tar.gz
- Upload date:
- Size: 42.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0707dc126c889cfb05880a58f212356a9464a2b7a08c65cd3989db407492c78 |
|
MD5 | 6320d0269e9d3a434de5b31801babe4b |
|
BLAKE2b-256 | c5d3606e06791e8b06d029d948a17ea33b7b971cc8278e17a9804e64ed8a3da2 |