Displaying 1 result from an estimated 1 matches for "pm10meteo".
2010 Feb 26
2
New methods for generic functions show and print : some visible with ls(), some not
Dear all,
I'm trying to understand the S4 way of object-oriented programming, but I
still can't grasp completely what R is doing. I have a class definition for
a class called PM10Meteo, and I set a initializer function. next, I include
a show method and a print method as shown below.
setClass( Class="PM10Meteo",...) # end setClass
setMethod ("initialize",signature="PM10Meteo",...) # end setMethod
########
# Show Method
#
setMethod("show"...