Module mls_lib.objects.data_frame
DataFrame: Component that holds data.
Classes
class DataFrame
-
DataFrame: Component that holds data.
Expand source code
class DataFrame(Object): """ DataFrame: Component that holds data. """ def __init__(self): self.data = None def get_data(self): """ Returns the data. """ return self.data def set_data(self, data): """ Sets the data. """ self.data = data
Ancestors
Methods
def get_data(self)
-
Returns the data.
def set_data(self, data)
-
Sets the data.
Inherited members