Release 3.9.1 & 1.1.2

This commit is contained in:
MikeTheWatchGuy 2018-10-08 13:30:33 -04:00
parent 8f7356f425
commit 91da5ed7b2
23 changed files with 487 additions and 150 deletions

View file

@ -31,10 +31,9 @@ If you want to change the GUI, make changes to the GUI portion marked below.
import numpy as np
import matplotlib.pyplot as plt
N = 5
values_to_plot = (20, 35, 30, 35, 27)
ind = np.arange(N) # the x locations for the groups
width = 0.4 # the width of the bars: can also be len(x) sequence
ind = np.arange(len(values_to_plot))
width = 0.4
p1 = plt.bar(ind, values_to_plot, width)