2018-09-27 20:24:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import sys
|
2018-09-28 18:57:37 +00:00
|
|
|
if sys.version_info[0] >= 3:
|
2018-09-27 20:24:09 +00:00
|
|
|
import PySimpleGUI as sg
|
2018-09-28 18:57:37 +00:00
|
|
|
else:
|
|
|
|
import PySimpleGUI27 as sg
|
2018-09-27 20:24:09 +00:00
|
|
|
|
2018-08-27 02:16:54 +00:00
|
|
|
import matplotlib
|
|
|
|
matplotlib.use('TkAgg')
|
2018-08-27 16:10:20 +00:00
|
|
|
from matplotlib.backends.backend_tkagg import FigureCanvasAgg
|
2018-08-27 02:16:54 +00:00
|
|
|
import matplotlib.backends.tkagg as tkagg
|
|
|
|
import tkinter as Tk
|
|
|
|
|
|
|
|
"""
|
|
|
|
Demonstrates one way of embedding Matplotlib figures into a PySimpleGUI window.
|
|
|
|
|
|
|
|
Basic steps are:
|
|
|
|
* Create a Canvas Element
|
|
|
|
* Layout form
|
|
|
|
* Display form (NON BLOCKING)
|
|
|
|
* Draw plots onto convas
|
|
|
|
* Display form (BLOCKING)
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2018-08-27 16:10:20 +00:00
|
|
|
#------------------------------- PASTE YOUR MATPLOTLIB CODE HERE -------------------------------
|
2018-08-27 20:10:32 +00:00
|
|
|
|
2018-08-27 16:10:20 +00:00
|
|
|
import numpy as np
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
2018-08-27 20:10:32 +00:00
|
|
|
from matplotlib.ticker import NullFormatter # useful for `logit` scale
|
|
|
|
|
2018-08-27 16:10:20 +00:00
|
|
|
# Fixing random state for reproducibility
|
|
|
|
np.random.seed(19680801)
|
|
|
|
|
2018-08-27 20:10:32 +00:00
|
|
|
# make up some data in the interval ]0, 1[
|
|
|
|
y = np.random.normal(loc=0.5, scale=0.4, size=1000)
|
|
|
|
y = y[(y > 0) & (y < 1)]
|
|
|
|
y.sort()
|
|
|
|
x = np.arange(len(y))
|
|
|
|
|
|
|
|
# plot with various axes scales
|
|
|
|
plt.figure(1)
|
|
|
|
|
|
|
|
# linear
|
|
|
|
plt.subplot(221)
|
|
|
|
plt.plot(x, y)
|
|
|
|
plt.yscale('linear')
|
|
|
|
plt.title('linear')
|
|
|
|
plt.grid(True)
|
|
|
|
|
|
|
|
|
|
|
|
# log
|
|
|
|
plt.subplot(222)
|
|
|
|
plt.plot(x, y)
|
|
|
|
plt.yscale('log')
|
|
|
|
plt.title('log')
|
|
|
|
plt.grid(True)
|
|
|
|
|
|
|
|
|
|
|
|
# symmetric log
|
|
|
|
plt.subplot(223)
|
|
|
|
plt.plot(x, y - y.mean())
|
|
|
|
plt.yscale('symlog', linthreshy=0.01)
|
|
|
|
plt.title('symlog')
|
|
|
|
plt.grid(True)
|
|
|
|
|
|
|
|
# logit
|
|
|
|
plt.subplot(224)
|
|
|
|
plt.plot(x, y)
|
|
|
|
plt.yscale('logit')
|
|
|
|
plt.title('logit')
|
|
|
|
plt.grid(True)
|
|
|
|
plt.gca().yaxis.set_minor_formatter(NullFormatter())
|
|
|
|
plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,
|
|
|
|
wspace=0.35)
|
2018-09-28 23:21:44 +00:00
|
|
|
fig = plt.gcf() # if using Pyplot then get the figure from the plot
|
|
|
|
figure_x, figure_y, figure_w, figure_h = fig.bbox.bounds
|
2018-08-27 20:10:32 +00:00
|
|
|
|
|
|
|
#------------------------------- END OF YOUR MATPLOTLIB CODE -------------------------------
|
|
|
|
|
2018-10-08 17:30:33 +00:00
|
|
|
#------------------------------- Beginning of Matplotlib helper code -----------------------
|
|
|
|
|
|
|
|
|
|
|
|
def draw_figure(canvas, figure, loc=(0, 0)):
|
|
|
|
""" Draw a matplotlib figure onto a Tk canvas
|
|
|
|
|
|
|
|
loc: location of top-left corner of figure on canvas in pixels.
|
|
|
|
|
|
|
|
Inspired by matplotlib source: lib/matplotlib/backends/backend_tkagg.py
|
|
|
|
"""
|
|
|
|
figure_canvas_agg = FigureCanvasAgg(figure)
|
|
|
|
figure_canvas_agg.draw()
|
|
|
|
figure_x, figure_y, figure_w, figure_h = figure.bbox.bounds
|
|
|
|
figure_w, figure_h = int(figure_w), int(figure_h)
|
|
|
|
photo = Tk.PhotoImage(master=canvas, width=figure_w, height=figure_h)
|
|
|
|
canvas.create_image(loc[0] + figure_w/2, loc[1] + figure_h/2, image=photo)
|
|
|
|
tkagg.blit(photo, figure_canvas_agg.get_renderer()._renderer, colormode=2)
|
|
|
|
return photo
|
|
|
|
|
|
|
|
#------------------------------- Beginning of GUI CODE -------------------------------
|
|
|
|
|
|
|
|
# define the window layout
|
2018-09-28 18:57:37 +00:00
|
|
|
layout = [[sg.Text('Plot test', font='Any 18')],
|
2018-09-23 16:16:50 +00:00
|
|
|
[sg.Canvas(size=(figure_w, figure_h), key='canvas')],
|
2018-09-06 20:20:37 +00:00
|
|
|
[sg.OK(pad=((figure_w / 2, 0), 3), size=(4, 2))]]
|
2018-08-27 02:16:54 +00:00
|
|
|
|
|
|
|
# create the form and show it without the plot
|
2018-09-28 18:57:37 +00:00
|
|
|
window = sg.Window('Demo Application - Embedding Matplotlib In PySimpleGUI', force_toplevel=True).Layout(layout).Finalize()
|
2018-08-27 02:16:54 +00:00
|
|
|
|
|
|
|
# add the plot to the window
|
2018-09-24 22:01:00 +00:00
|
|
|
fig_photo = draw_figure(window.FindElement('canvas').TKCanvas, fig)
|
2018-08-27 02:16:54 +00:00
|
|
|
|
|
|
|
# show it all again and get buttons
|
2018-10-15 20:07:23 +00:00
|
|
|
event, values = window.Read()
|