All Questions
Tagged with matplotlib tkinter
10 questions
7
votes
1
answer
166
views
GUI that reads data and generates/ saves charts
I have a program that uses pandas to read csv files and then generates and saves graphical charts. I have been trying to follow the SOLID principles so I have tried to seperate responsibilities.
So ...
5
votes
1
answer
5k
views
Tkinter GUI for running HPLC pumps, real-time data visualization
What I made
I used Tkinter to write a GUI to run some HPLC pumps for my work. The application sends some messages to the pumps via serial connections, reads a response, then logs data to a csv file.
...
6
votes
1
answer
682
views
Animation of sorting algorithms
I have created a visualisation of sorting algorithms using tkinter and matplotlib. Please let me know what you think and if you have any suggestions or find errors.
The aim of this code is to create ...
14
votes
2
answers
3k
views
Python Sound visualizer
The past week I have tinkered making a sound visualizer using Tkinter, Matplotlib, NumPy, PyAudio and using a thread to be able to play the sound and to display the plot at the same time.
I have been ...
7
votes
1
answer
682
views
Double pendulum real time plot
Double Pendulum
I made a little application that embeds a matplotlib dynamic plot into tkinter that enables control through the ...
2
votes
0
answers
452
views
Matplotlib embedded in tkinter
Investigating how to use tkinter controls with buttons and sliders and to combine these with matplotlib, I have come to the following code. Suggestions for improvements and tips are most welcome. ...
2
votes
0
answers
2k
views
Applying Model-View-Controller to Tkinter/matplotlib Application
I'm a novice programmer. I am preparing to refactor a large project of mine to follow a model/view/controller design pattern, with separate modules for each (and eventually separate modules for the ...
2
votes
1
answer
3k
views
Function Plotter GUI in Tkinter and Matplotlib
I have been working on plotting time varying functions in Python as my most recent project, and would love input on optimization, proper Tkinter form, and anything that stands out like a sore thumb.
...
5
votes
1
answer
2k
views
Multigeneration evolution simulator, graphing phenotypic change
I created an evolution simulator. It takes random chance and applies it to phenotypes of species. This was very much for fun, and I would love any input on:
Readability of code
Efficiency of ...
5
votes
1
answer
146
views
Charting daily balance
I have been trying my hand at Python lately. I have been able to look at code examples and create a custom application that queries a Microsoft SQL Server, pulls out two columns (date, balance) and ...