Fix the bug in the prediction of full covariance matrix (#702)

* fix the bug in the prediction of full covariance matrix

* Fix the test cases.

* update the version requirement for matplotlib
This commit is contained in:
Zhenwen Dai 2018-10-30 07:43:44 +00:00 committed by GitHub
parent 4f3047e035
commit a86723c8ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View file

@ -122,7 +122,7 @@ class MatplotlibPlots(AbstractPlottingLibrary):
def barplot(self, ax, x, height, width=0.8, bottom=0, color=Tango.colorsHex['mediumBlue'], label=None, **kwargs):
if 'align' not in kwargs:
kwargs['align'] = 'center'
return ax.bar(left=x, height=height, width=width,
return ax.bar(x=x, height=height, width=width,
bottom=bottom, label=label, color=color,
**kwargs)