I would like to modify the plot code of a plot attribute in a derived class
class Foo(Bar):
def plot(self, **options):
super(Foo, self).plot(options)
This does not seem to work. What is the right way to pass the options?
| 1 | initial version |
I would like to modify the plot code of a plot attribute in a derived class
class Foo(Bar):
def plot(self, **options):
super(Foo, self).plot(options)
This does not seem to work. What is the right way to pass the options?
| 2 | retagged |
I would like to modify the plot code of a plot attribute in a derived class
class Foo(Bar):
def plot(self, **options):
super(Foo, self).plot(options)
This does not seem to work. What is the right way to pass the options?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.