mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-30 23:36:23 +02:00
errobars_trainset -> plot_errorbars_trainset
This commit is contained in:
parent
f3975e98c3
commit
7e18d340be
2 changed files with 3 additions and 3 deletions
|
|
@ -640,7 +640,7 @@ class GP(Model):
|
|||
fignum, ax, data_symbol, **kw)
|
||||
|
||||
|
||||
def errorbars_trainset(self, which_data_rows='all',
|
||||
def plot_errorbars_trainset(self, which_data_rows='all',
|
||||
which_data_ycols='all', fixed_inputs=[], fignum=None, ax=None,
|
||||
linecol=None, data_symbol='kx', predict_kw=None, plot_training_data=True,lw=None):
|
||||
|
||||
|
|
@ -669,7 +669,7 @@ class GP(Model):
|
|||
kw = {}
|
||||
if lw is not None:
|
||||
kw['lw'] = lw
|
||||
return models_plots.errorbars_trainset(self, which_data_rows, which_data_ycols, fixed_inputs,
|
||||
return models_plots.plot_errorbars_trainset(self, which_data_rows, which_data_ycols, fixed_inputs,
|
||||
fignum, ax, linecol, data_symbol,
|
||||
predict_kw, plot_training_data, **kw)
|
||||
|
||||
|
|
|
|||
|
|
@ -341,7 +341,7 @@ def fixed_inputs(model, non_fixed_inputs, fix_routine='median', as_list=True, X_
|
|||
return X
|
||||
|
||||
|
||||
def errorbars_trainset(model, which_data_rows='all',
|
||||
def plot_errorbars_trainset(model, which_data_rows='all',
|
||||
which_data_ycols='all', fixed_inputs=[],
|
||||
fignum=None, ax=None,
|
||||
linecol='red', data_symbol='kx',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue