PyQt5 GUI for data visualisation based on matplotlib and seaborn. Have you ever felt that you are wasting a lot of time writing the code for a simple figure? If so, this GUI will help you out to save your time. You can plot and save your figure by just pushing a couple of buttons on Sviewgui. All figures you made are recorded in the log window as their source code. You can reproduce and further modify your figures, copying and pasting the code from the log into your own editor.
Main features are
This package has only one method: buildGUI().
import sviewgui.sview as sv sv.buildGUI()
Then, GUI window will pop up, then you can choose your csv file via GUI. Alternatively, you can also pass the path of your csv file,
import sviewgui.sview as sv csvpath = 'usr/mydata.csv' sv.buildGUI(csvpath)
or pandas DataFrame object
import sviewgui.sview as sv from sklearn.datasets import load_iris import pandas as pd data = load_iris() # load iris data df = pd.DataFrame(data=data.data, columns=data.feature_names) # convert sklearn data into DataFrame object sv.buildGUI(df)
Now, you are good to go. Have fun with Sview.
© 2019 Sojiro Fukuda All Rights Reserved. Free to modify and redistribute by your responsibility.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4