Freitag, 11. März 2016

Methods and Classes

How can we find the defined functions for a special class?

# for which classes does my function provide an own interface?
methods("summary")

# which functions do support my class?
methods(class="matrix")

# get the source code, if not readily available
getAnywhere("Desc.character")