Displaying 1 result from an estimated 1 matches for "winthin".
Did you mean:
intrin
2011 Sep 06
1
list of all methods winthin an S4 class
Hello,
How can I generate an overview/vector of all the methods winthin an S4 class? Similar to dir() in this Python code:
>>> class SomeClass():
def some_method_1(self):
pass
def some_method_2(self):
pass
>>> dir(SomeClass)
['__doc__', '__module__', 'some_method_1', 'some_method_2']
>>>
Thanks in ad...