standardMethods {distr} | R Documentation |
Creates definitions for accessor and replacement functions of an given class.
standardMethods(class, writetofile = FALSE, directory)
class |
the class for which accessor and replacement functions are to be produced, given as a string |
writetofile |
logical value, indicating wheter output is to be written to a file |
directory |
if writetofile = TRUE, the output is written to a file in the given directory, the name of the file starting with "classname " and ending with "StandardMethods.txt" |
no value is returned
Thomas Stabla Thomas.Stabla@uni-bayreuth.de
setClass("testclass", representation(a = "numeric", b = "character")) standardMethods("testclass") #directory = "C:/Dokumente und Einstellungen/X/Eigene Dateien/Studium/R/SWP/" #standardMethods("testclass", writetofile = TRUE, directory = directory)