PySimpleGUI - Bar Graphs (with MatPlotLib)

preview_player
Показать описание

Link to Code:

00:00 - Intro
02:01 - Create the MatPlotLib Graph
05:09 - Layout
7:00 - Combine MatPlotLib with PySimpleGUI
12:14 - Event Loop/Running the Application
14:19 - Color/Width
14:55 - Y and X "Ticks" - Displaying Values on Y and X
16:53 - Wrap Up
Рекомендации по теме
Комментарии
Автор

Humu.. Thank you for the good tutorial! 👍
I really appreciate it!

A.. I think.. if we are too lazy to make the list for the y-label, can we just use list comprehension maybe?

like..

ymax = 12
ylabel = [x/2 for x in range(0, ymax*2)]
plt.yticks(ylabel)

well.. I just wonder..

akaruiyamicode
Автор

Could you please put the source code link in the description??

benzo_uncle