mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-03 16:52:39 +02:00
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:
parent
4f3047e035
commit
a86723c8ab
4 changed files with 6 additions and 5 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue