List all methods for an object
The built-in methods() function will give all available methods for a specified class, or for a specified generic function, but not for an object. Objects can have multiple classes, so this can be complicated to calculate.
classMethods(cl)
cl |
a vector of class names, or an object |
g <- glm(y~x,data=data.frame(x=1:10,y=1:10)) classMethods(g)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.