R Programming language - R S3 Class

In R programming language, the S3 class system is a simple and flexible object-oriented programming system. S3 stands for "simple scalar style". It is called "scalar style" because S3 objects typically contain a single value (such as a vector, matrix, or data frame). S3 is a "simple" class system because it does not enforce strict rules on how classes are defined and used.

To define an S3 class, you simply create a named list that contains the data and any associated attributes. You can define methods (functions that operate on the object) using the generic.function.class() syntax. Here's an example of an S3 class definition:

# Define a new class
myclass <- list()
class(myclass) <- "myclass"

# Add some data to the object
myclass$data <- 1:10

# Define a print method for the class
print.myclass <- function(x) {
  cat("My class data:", x$data, "\n")
}
Source:‮gi.www‬iftidea.com

In this example, we define a new class called myclass by creating a named list and assigning the class attribute to "myclass". We then add some data to the object and define a print method for the class. The print method is defined using the print.myclass syntax, where myclass is the name of the class and print is the generic function.

Once the class is defined, you can create objects of that class using the new() function. Here's an example:

# Create an object of the new class
obj <- new("myclass")

# Print the object
print(obj)

This will output:

My class data: 1 2 3 4 5 6 7 8 9 10

In summary, S3 classes are a simple and flexible way to define classes in R programming language. While they lack some of the more advanced features of other class systems (such as S4 or R6), they are often sufficient for many tasks and can be easier to work with for smaller projects.