Reference classes are a new (as of R 2.12) way of object-oriented programming in R, such that objects are not copied but are instead mutable. More information is available at http://www.inside-r.org/r-doc/methods/getRefClass. Like most pass-by-reference methodologies, they are particularly ...

learn more… | top users | synonyms

1
vote
1answer
26 views

Returning copy of data.table from ReferenceClass method

I try to return copies of data.tables from methods of a ReferenceClass: dummy <- setRefClass( "dummy", fields = list( dt = "data.table" ), methods = list( initialize = function( df ...
2
votes
1answer
62 views

Use a Reference Class as Levels of a Factor

Does anyone have any experience using Reference Classes as the levels of a factor? This is one step in my goal of adding "foreign-key-like" support to a data.frame in one of my packages. I'm ...
8
votes
1answer
66 views

Dynamically Generate Reference Classes

I'm attempting to generate reference classes within an R package on the fly, and it's proving to be fairly difficult. Here are the approaches I've taken and problems I've run into: I'm creating a ...
5
votes
0answers
89 views

Can a Reference Class be made to Log Calls

I have a question about Reference Classes. My question is in the context of an R package I am developing rCharts. It uses reference classes to create interactive plots from R. Creating a plot ...
0
votes
1answer
36 views

Error message in R: “Arguments to methods() must be named, or one named list”

I'm new to creating classes and methods in R and am running into a problem that I haven't found much documentation on. I have created a class, 'DataImport', and am trying to add the method below: ...
1
vote
1answer
41 views

setRefClass pass by value, pass by reference

I suspect i am not understanding all the aspects of setRefClass in R. Lets say I have an instance of a setRefClass initialized. I want to create the variable X so that this variable is equal to a copy ...
6
votes
0answers
75 views

Avoiding consideration of enclosing frames when retrieving field value of a S4 Reference Class

I'm a huge fan of S4 Reference Classes as they allow for a hybrid programming style (functional/pass-by-value vs. oop/pass-by-reference; example) and thus increase flexibility dramatically. However, ...
7
votes
2answers
70 views

Operator overloading for functions in R - strange behavior

Unfortunately things like (f+g)(3) where f and g are both unary functions do not work in R. Hence I tried to overload the "+" operator for unary functions in the following way: "+.function" = ...
2
votes
1answer
60 views

How to check the field assignment in Reference Classes

I have a question about the Reference Classes. How can I check the field assignments. Here my sample code: rm(list=ls(all=TRUE)) setRefClass( Class = "A", fields = list(firstValue = ...
1
vote
1answer
83 views

R setRefClass accessors

I have created a setRefClass, I would like to know how you can implement the accessors so that when you create a new instance of this class you can access the fields by using setXXX, getXXX. I was ...
3
votes
1answer
92 views

Passing reference to Reference Class object between two other Reference Class objects (soccer example)

I am trying to "pass" a reference to an Reference Class object (say, a ball) between two other Reference Class objects (say, two soccer [football] players) with the following example: # create ...
0
votes
1answer
64 views

Setting Global variables inside reference class in R

I'm a bit confused on global variable assignments after reading quite a lot of stack overflow questions. I have gone through Global variables in R and other similar questions I have the following ...
1
vote
1answer
76 views

Defining default field values for instances of S4 Reference Classes

How can I define the fields' default values of S4 Reference Classes instances? For regular S4 Classes, there's the prototype argument: setClass("Test_1", representation( x.1="numeric", ...
1
vote
1answer
116 views

r reference classes - do they have static field members/variables?

I have been playing a little with R's R5 class system to see what it can and can't do. In that process I have stumbled upon what looks like static class field members (which does not appear to be in ...
4
votes
1answer
117 views

R testing for reference classes

Is there a quick and dirty way to test whether an instance is from a reference class? The standard R object tests yield the following - but nothing that seems to exclusively mark a reference class. ...
1
vote
1answer
151 views

R reference classes as a field of a reference class

I would like to pass a reference class to a reference class constructor, and assign the passed reference class as a field. However, when I run the code below, I don't understand why I get an error. My ...
3
votes
2answers
124 views

Instantiation of reference classes within reference classes - problems with lock() and immutability

I have come across some behaviour from R reference classes I would like to work around. In the following code, reference class B has two fields of reference class A in it. These fields in B appear ...
2
votes
0answers
116 views

Copying R5 reference classes with a locked variable

I can copy an R5 reference class when I have not locked one of the fields, but it does not copy if one of the fields is locked. Example code follows (with the lock call commented out). My question: ...
2
votes
1answer
109 views

Building an R package that defines reference classes

I am creating an R package. The package defines several reference classes. There is a dependency between the classes because one is the base class and the others are subclasses. Due to this ...
3
votes
2answers
276 views

Reference Classes, tab completion and forced method definition

I am currently writing a package using reference classes. I have come across an issue which from reading various sources: Method initialisation in R reference classes Can't reliably use RefClass ...
4
votes
2answers
138 views

Retrieving actual source expression that defines a S4 Reference Class from its associated object

In short (actual question) How can I access the actual source code/expression that defines a S4 Reference Class (see ?setRefClass) from the object returned by either getClass("MyClass") or ...
3
votes
1answer
86 views

Reference class fields disappearing

I decided to give Reference Classes another shot, but my first hello world is already giving me issues. What is going wrong here? > memory <- setRefClass( + Class = "memory", + fields = ...
3
votes
1answer
176 views

R Reference Class issue

I am trying to create a simple reference class in R. Here is my code (R beginner): MyClass <- setRefClass("MyClass", fields = list(a = "numeric", ...
1
vote
0answers
127 views

list (or array) of RefClass object in Reference Class

I can make a parent class containing an object setRefClass("img",fields=list(name="character")) setRefClass("imgs",fields=list(img="img")) However, I want to create an RefClass object with an array ...
46
votes
1answer
1k views

Implementing standard software design patterns (focus on MVC) in R

Currently, I'm reading a lot about Software Engineering, Software Design, Design Patterns etc. Coming from a totally different background, that's all new fascinating stuff to me, so please bear with ...
0
votes
1answer
365 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", ...
7
votes
2answers
311 views

Private Members in R Reference Class

Is it possible to have private member fields inside of an R reference class. Playing with some of the online examples I have: > Account <- setRefClass( "ref_Account" > , fields = ...
3
votes
2answers
141 views

Update a Reference Class method

I am currently developping Reference classes (R5) for large objects which take time to produce, and i wonder if someone knows a better way to develop methods than redefining the class with setRefClass ...
4
votes
1answer
140 views

How to control inheritance when dynamically extending Reference Classes

In a webcrawler/webscraper-setting, I'd like to dynamically extend my base Reference Class URL in order to be able to write specific methods for respective hosts/domains. Just to be clear, by ...
10
votes
1answer
250 views

Method initialisation in R reference classes

I've noticed some strange behaviour in R reference classes when trying to implement some optimisation algorithm. There seems to be some behind-the-scenes parsing magic involved in initialising methods ...
4
votes
2answers
463 views

how do I document an R Reference Class?

how do I document the use of member functions of a reference class? if I write a Rd file with a \usage block, how do I avoid the WARNING Functions/methods with usage in documentation object 'XmlDoc' ...
5
votes
3answers
381 views

Using “[[ ]]” notation for reference class methods

While experimenting with the new reference classes in R I noticed some odd behaviour if you use the "[[ ]]" notation for methods (X[["doSomething"]] instead of X$doSomething). This notation works for ...
5
votes
1answer
691 views

define class methods and class variables in R5 reference class

I want to know the correct way to define the class methods and class variable in R5 reference class. Here is an example: > # define R5 class XX > # member variable: ma > # member method: ...
7
votes
1answer
271 views

Automating assignment in initialize() methods for Reference Classes in R

I'm working with a reference class with a few dozen fields. I've set up an initialize()method that takes a list object in. While some of the fields rely on further computation from list elements, ...
33
votes
1answer
2k views

What is the significance of the new Reference Classes?

Apparently John Chambers added Reference Classes to R in version 2.12. There doesn't appear to be much information online yet, but they're calling them R5 classes, which implies they're on a level ...