R에서 S3와 R6로 배우는 Object-Oriented Programming
Richie Cotton
Data Evangelist at DataCamp





<- function( ) {
}

calculate_something <- function( ) {
# do something
}

calculate_something <- function(x, y, z) {
# do something
}

calculate_something <- function(x, y, z) {
# do something
return(the_result)
}












R에서 S3와 R6로 배우는 Object-Oriented Programming