Berpikir Metodis

Pemrograman Berorientasi Objek dengan S3 dan R6 di R

Richie Cotton

Data Evangelist at DataCamp

ch2_2-methodical-thinking.003.png

Pemrograman Berorientasi Objek dengan S3 dan R6 di R
methods
Pemrograman Berorientasi Objek dengan S3 dan R6 di R
methods("mean") # or methods(mean)
mean.Date     mean.default  mean.difftime mean.POSIXct 
mean.POSIXlt 
see '?methods' for accessing help and source code
Pemrograman Berorientasi Objek dengan S3 dan R6 di R

ch2_2-methodical-thinking.009.png

Pemrograman Berorientasi Objek dengan S3 dan R6 di R
methods(class = "glm") # or methods(class = glm)
add1           anova          coerce        
confint        cooks.distance deviance      
drop1          effects        extractAIC    
family         formula        influence     
initialize     logLik         model.frame   
nobs           predict        print         
residuals      rstandard      rstudent      
show           slotsFromS3    summary       
vcov           weights       
see '?methods' for accessing help and source code
Pemrograman Berorientasi Objek dengan S3 dan R6 di R

 

 

 

methods() menampilkan metode S3 dan S4

Pemrograman Berorientasi Objek dengan S3 dan R6 di R
.S3methods(class = "glm")
add1           anova          confint       
cooks.distance deviance       drop1         
effects        extractAIC     family        
formula        influence      logLik        
model.frame    nobs           predict       
print          residuals      rstandard     
rstudent       summary        vcov          
weights       
see '?methods' for accessing help and source code
Pemrograman Berorientasi Objek dengan S3 dan R6 di R
.S4methods(class = "glm")
coerce      initialize  show        slotsFromS3
see '?methods' for accessing help and source code
Pemrograman Berorientasi Objek dengan S3 dan R6 di R

Ringkasan

  • methods() mencari metode untuk suatu generic
  • ... atau untuk sebuah class
  • .S3methods() mencari hanya metode S3
Pemrograman Berorientasi Objek dengan S3 dan R6 di R

Ayo berlatih!

Pemrograman Berorientasi Objek dengan S3 dan R6 di R

Preparing Video For Download...