Hurst Oxponent, Time Series, etc.

What I did

What I learned

class NoRowException(Exception):
    # return "no row specified"
    def __init__(self, message="Error: No row specified to plot"):
        self.message = message
        super().__init__(self.message)


def plot_spectrum(dataset, row=None, label=None, title=''):
    if row is None:
        raise NoRowException
    else:
        # do the plotting

What I will do next