Tagged Questions

The s4 object class system is one of the methods of object oriented programming in the r language. Compared to S3, S4 is much stricter and gives behaviour that is closer to other object oriented systems. The main differences compared to S3 are that S4 offers: Formal type definitions, defining ...

learn more… | top users | synonyms

35
votes
6answers
886 views

When does it pay off to use S4 methods in R programming

I program regularly in R in a professional context, and I write packages for clients or co-workers as well. Some of the programmers here have a Java background and insist on doing everything the ...
20
votes
0answers
374 views

How to properly document S4 class slots using Roxygen2

Specifying a title and description/details appears to be the same as for functions, methods, etc. with roxygen(2). However, slots and inheritance are their own sort of animal. What is the best ...
18
votes
2answers
705 views

Sources on S4 objects, methods and programming in R

As I'm often confronted with situations where S4 programming is needed to keep an overview, I've collected quite some sources on S4 objects, methods and programming. I've listed them here as a ...
14
votes
2answers
481 views

How to properly document S4 methods using roxygen2

I've seen some discussions in SO and other places regarding how this should be or will be done in future versions of Roxygen2. However, I am stuck. How should I go about documenting a S4 generic, as ...
12
votes
1answer
279 views

How to develop a package in R?

I have written some functions in R using S4 classes. Now I want to build an R package out of these functions. How should I proceed? Is there anything that I should do differently because I have ...
11
votes
5answers
399 views

Which packages make good use of S4 objects?

Which R packages make good use of S4 classes? I'm looking for packages that use S4 appropriately (i.e. when the complexity of the underlying problem demands), are well written and well documented (so ...
11
votes
3answers
1k views

R: what are Slots?

Does anyone know what a slot is in R? I did not find the explanation of its meaning. I get a recursive definition: "Slot function returns or set information about the individual slots of an objects" ...
9
votes
1answer
112 views

Programmatically distinguishing S3 and S4 objects in R

If given an object x, is there a way to classify whether or not it is S3 or S4 (or "other")? I have looked at is.object() and isS4(), and can identify that something is an object (or not) and that it ...
8
votes
2answers
144 views

dispatching S4 methods with an expression as argument

I'm trying to convince an S4 method to use an expression as an argument, but I always get an error returned. A trivial example that illustrates a bit what I'm trying to do here : ...
8
votes
3answers
332 views

What does the @ symbol mean in R?

In packages like marray and limma, when complex objects are loaded, they contain "members variables" that are accessed using the @ symbol. What does this mean and how does it differ from the $ symbol? ...
5
votes
2answers
62 views

sum of S4 objects in R

I have a S4 class and I would like to define the linear combination of these objects. Is it possible to dispatch * and + functions on this specific class?
5
votes
1answer
99 views

Problems passing arguments with callNextMethod() in R

My question: Why is callNextMethod() not passing arguments as expected to the next method? Situation: Say I have two hierarchical classes foo and bar (bar is subclass of foo) for which I have a ...
5
votes
2answers
451 views

class in R: S3 vs S4

I want to create a class in R, should I use S3 or S4 class? I read a lot of different things about them, is there one superior to the other one?
5
votes
1answer
508 views

R: show source code of an S4 function in a package

I used the packages topGO in R to analyze gene enrichment with the following code: sampleGOdata <- new("topGOdata", description = "Simple session", ontology = "BP",allGenes = geneList, geneSel = ...
5
votes
2answers
432 views

How to properly document S4 “[” and “[<-“ methods using roxygen?

below it posted a mini example in which I want do write documentation for an “[“ method for a S4 class. Does someone know how to properly document a method for the generic "[" using roxygen and S4? I ...
4
votes
1answer
49 views

How to get the list of class that have a common S4 superclass in R

In R, how do I get the list of subclass of a S4 superclass? I found showClass("mySuperClass",complete=FALSE) but it only prints the result. I would like to store it in a vector to use it.
4
votes
1answer
73 views

Define a show method for an S3 class

I'm quite stunned to find out that show is an S4 generic, and that I can't find a way to use the S3 dispatching to get a show function to work. A simple demonstration: > x <- 1:5 > xx <- ...
3
votes
1answer
87 views

R using s3 and s4 methods of simulate in the same package

I'm puzzled by the error found an S4 version of 'simulate' so it has not been imported correctly I have written an R package that includes a definition for a simulate() method as an S3 method. ...
3
votes
1answer
93 views

Why is it not recommended to use multiple inheritance?

I am creating S4 classes in R. I read in https://github.com/hadley/devtools/wiki/S4 Note that S4 supports multiple inheritance, but this should be used with extreme caution as it makes method ...
3
votes
1answer
92 views

How to find out if hibernation is available for a Windows user (with C++)

I know that one can call the following API to hibernate the system: SetSuspendState(TRUE, FALSE, FALSE); But is there any way to find out if "real" hibernation is available for the current Windows ...
3
votes
2answers
99 views

Accessing slots of an S4 function superclass

Can I create an S4 superclass of "function" and access the slots of that object from the function call? At the moment I have: > ...
2
votes
1answer
54 views

Set Methods in R without Assignment

I would like to have some post initialize replacement methods in R that can me called without an assignment operator. So for example: I would like to be able to call setNode(o) and replace slots in ...
2
votes
1answer
50 views

Efficient way to define a class with multiple, optionally-empty slots in S4 of R?

I am building a package to handle data that arrives with up to 4 different types. Each of these types is a legitimate class in the form of a matrix, data.frame or tree. Depending on the way the data ...
2
votes
1answer
63 views

Is there a way to initalize a S4 object so that another object will be returned?

I have a class hierarchy with the superclass fb of which no objects should exist (I tried virtual classes but ran in the problem that you can not initalize objects from virtual classes). Furhter, I ...
2
votes
1answer
120 views

Use data() as a generic S4 function

I'm trying to define a new data method for a foo class. My foo objects follow the following structure: setClass(Class = "foo", representation = representation( data = "data.frame", ...
2
votes
2answers
171 views

S4 missing or NULL arguments to methods?

Is there a way to define what happens when the argument of a method is missing or NULL? In the example below, I'd like to call the same function no matter whether I type foo() or foo(NULL). Of ...
2
votes
2answers
114 views

Recognizing a S3 (?) class from a package in an S4 class definition

I have some troubles getting a class from an older packages been recognized by the S4 class definition. I keep on getting the error Error in makePrototypeFromClassDef(properties, ClassDef, immediate, ...
1
vote
0answers
70 views

How to add class-specific alias without generic alias using Roxygen2?

A simple example is that I have created an extension to show, which is a S4 base method. I don't want to cause a disambiguation fork by re-documenting show in my package, and I also want to ...
1
vote
2answers
104 views

S4 constructors and prototypes

Looking through Hadley Wickham's S4 wiki: https://github.com/hadley/devtools/wiki/S4 setClass("Person", representation(name = "character", age = "numeric"), prototype(name = NA_character_, age = ...
1
vote
2answers
164 views

How to set default value of a slot as NULL in R?

I'm new to R. I'm trying to define a class similar to a tree node, that is , it has a left node and right node, which should be of the same class as the parent node. So I define the class as follows: ...
1
vote
1answer
219 views

S4 class in R for matrix

This is a follow-up question to a previous post. I need to write an initialize() method for a S4 class (named Band) that expects a matrix and a value for k. It should be defined as a function with ...
0
votes
2answers
59 views

Array Index Out Of Bounds when S4 initiating PE

I am now trying to add a simple PE into my app. This PE extends AbstractPE and overrides output method.(doing nothing) I also revised the xml file, adding a bean, like following: <bean ...
0
votes
1answer
62 views

define a S4 method if there is already a function with the same name

I have a function myFunction and I need to create a S4 method with the same name (do not ask me why). I would like to keep the old functionality of myFunction. Is there a way to keep my old function? ...
0
votes
1answer
102 views

How to write coercion methods

I'm having a bunch of custom-made Reference Classes and would like to write coercion methods for some of them. It'd be nice if a function call would look like this: objectCoerce(src=obj, to="list", ...
0
votes
3answers
131 views

Loop through columns in S4 objects in R

I am trying to perform an association using the snpStats package. I have a snp matrix called 'plink' which contains my genotype data (as a list of $genotypes, $map, $fam), and plink$genotype has: ...
0
votes
1answer
154 views

Rotating S3 Logging using log4j with Elastic Beanstalk

I'm trying to transfer each log file to s3. there is an automatic script that picks up tail_catina.log and overrights anything there. I want each log file tail_catalina.log1, tail_catalina.log2, ...
0
votes
1answer
27 views

I need a C++ interface to S4s server

Does anyone have a C++ Object interface for the S4 server?
-1
votes
0answers
47 views

How Real-Time Processing System(like s4 and storm) used?

I currently study s4 and storm, but I found it not so much useful. For example, I have a 10-steps processing system. I can easily implement it using MQ: 10 programs which listen to specific messages, ...