Source code for rook.dashboard.base

[docs] class BaseView: def __init__(self, df): self.df = df
[docs] def data(self): raise NotImplementedError