It would be a useful feature if we allow users to extend MetaFrame with their custom methods. Currently, we are creating a MetaFrame instance instead of a DataFrame. I think changing this to cls(...) should work, but I haven't tested it. Example usage:
class MyDataFrame(MetaFrame):
def my_method(self):
...
It would be a useful feature if we allow users to extend
MetaFramewith their custom methods. Currently, we are creating aMetaFrameinstance instead of aDataFrame. I think changing this tocls(...)should work, but I haven't tested it. Example usage: