def plot_regs(self, x='val_acc', y='val_loss'): '''A regression plot with data on two axis x = data for the x axis y = data for the y axis ''' return regs(self.data, x, y)
def plot_regs(self, x, y): '''A regression plot with data on two axis x = data for the x axis y = data for the y axis ''' try: import astetik as ast return ast.regs(self.data, x, y) except RuntimeError: print('Matplotlib Runtime Error. Plots will not work.')
def plot_regs(self, x=None, y=None, title='', x_label='', y_label=''): '''A regression plot with data on two axis x = data for the x axis y = data for the y axis ''' try: import astetik as ast return ast.regs(self.data, x=x, y=y, title=title, x_label=x_label, y_label=y_label) except RuntimeError: print('Matplotlib Runtime Error. Plots will not work.')