The S4 object class system is one of the methods of object oriented programming in the R language.

learn more… | top users | synonyms

0
votes
0answers
68 views

Samsung Galaxy S4 rear camera slow in burst mode

I created a camera Activity, which provides a burst" mode. This means, the activity takes a new picture as soon as the last one has been taken. The activity is based on the code example provided here: ...
0
votes
0answers
23 views

Samsung Galaxy S4 JIT

I'm wondering if anybody else experienced troubles with the new Samsung Galaxy S4 and its JIT compiler. I want to tell you two behaviors I've found: The biggest problem after starting my app on the ...
0
votes
0answers
37 views

Avd for Samsung Galaxy S4 not working

I've created an avd compatible to Samsung Galaxy S4. here is the details for that:- 1080 X 1920 API 14, Android 4.2 But when i try to run this emulator. It display nothing but a blank screen, seems ...
1
vote
0answers
15 views

usage of setOldClass in R

I have created a union class setClassUnion("numericOrNULL",members=c("numeric", "NULL")) getClass("numericOrNULL") Then I need to use this new class in the slot of an object. At the moment I ...
0
votes
2answers
58 views

How can i create avd for S4(1080X1920)

How can I create AVD for Samsung Galaxy S4 and in which layout will it comes large or normal? While am I creating AVD it creating emulator in large-xxhdpi. will you please suggest me. It's an urgent ...
2
votes
1answer
21 views

Extent S4 class, how to use superclass' constructor

In my package, I want to subclass a class TheBaseClass from a contributed package (so it is out of my reach). There is a function for creating objects of this class. Here is a minimal example for that ...
0
votes
0answers
125 views

Samsung Galaxy S4 and Phonegap Issue

I'm writing an app using Phonegap, the app includes using HTML5's canvas. When I run the app on Eclipse's Android Emulator, everything works fine (slow but working). When I connect the Galaxy S4 and ...
0
votes
0answers
246 views

How to the Samsung galaxy S4, Sunbeam unlock effect it?

I imitate Samsung galaxy S4 lock screen to unlock the interface,People know is how to achieve the lock screen touch and slide sun beam effect it?
3
votes
1answer
26 views

dispatch a S4 method over the slot of a S4 class

I would like to create a S4 method 'myMethod' that dispatches not only on the class of the first argument of the function, but also on the value of one of the slot of this class. for instance ...
2
votes
2answers
111 views

app not available on the google market Galaxy S4

my app not available on Samsung Galaxy S4 ANDROIDMENIFEST FILE <!-- PERMISSIONS --> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission ...
6
votes
2answers
89 views

Is S4 method dispatch slow?

My S4 class has a method that is called many times. I noticed that the execution time is much slower than it would be if a similar function was called independently. So I added a slot with type ...
1
vote
1answer
37 views

Why am I getting the message “node stack overflow” when the superclass is “VIRTUAL”?

I am getting the message Error in parent.frame() : node stack overflow Error during wrapup: node stack overflow when I try to construct an object using the S4 command "as", but only when a ...
2
votes
2answers
63 views

Create a vector of empty S4 objects

This maybe trivial but I haven't found anything online. Is it possible to create a vector of empty S4 objects in R? Something like: s4Vec<-rep(emptyS4Object,10) Thanks
3
votes
1answer
67 views

Inheritance in R

With regards to R, Can someone explain to me, with regards to object inheritance, if I have S4 object X, which contains Y, if Y has an initializer, how can that initializer be called from within the ...
0
votes
0answers
47 views

R S4 slots as lists of custom classes

Is it possible to have slots in a S4 class to be lists of another custom type? like setClass("customClass", representation(list(anotherCustomClass) )
1
vote
0answers
26 views

overloading operators when using setOldClass not works as wanted compared to an S4 class

Can someone explain why overloading an operator on an old-style S3 class which is registered does not work as expected while when defining a new class and overloading the operators does work. As ...
3
votes
0answers
63 views

Override Method in R 2.15

I would like to know if there is any way to override any operator method in R package. Example for the source in the package: setclass("clsTest", representation(a="numeric", b="numeric")) ...
3
votes
1answer
131 views

`as.matrix` and `as.data.frame` S3 methods vs. S4 methods

I noticed that defining as.matrix or as.data.frame as S3 methods for an S4 class makes e.g. lm (formula, objS4) and prcomp (object) work out of the box. This doesn't work if they are defined as S4 ...
9
votes
3answers
144 views

Converting package using S3 to S4 classes, is there going to be performance drop?

I have an R package which currently uses S3 class system, with two different classes and several methods for generic S3 functions like plot, logLik and update (for model formula updating). As my code ...
1
vote
0answers
34 views

MRO and __super__ equivalent in R

Based on @hadley s4 wiki and this warning: Note that S4 supports multiple inheritance, but this should be used with extreme caution as it makes method lookup extremely complicated. Multiple ...
6
votes
0answers
77 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, ...
1
vote
2answers
116 views

Formatting and manipulating a plot from the R package “hexbin”

I generate a plot using the package hexbin: # install.packages("hexbin", dependencies=T) library(hexbin) set.seed(1234) x <- rnorm(1e6) y <- rnorm(1e6) hbin <- hexbin( x = x , y = ...
1
vote
2answers
91 views

How do I extract contents from a koRpus object in R?

I'm using the tm package, and looking to get the Flesch-Kincaid scores for a document using R. I found the koRpus package has some a lot of metrics including reading-level, and started using that. ...
11
votes
1answer
132 views

Is there an S4 equivalent to unlist()?

I have some experience working with S4 objects and their slots, so I know how to access specific slots and sub-slots. What I'd like to learn is how to "de-slotify" an object in the way that unlist ...
0
votes
0answers
66 views

Standard Android ADK Demo Kit Does it work on Galaxy S3

hi can someone test this app on his/her Samsung Galaxy S3 and tell me if it works ? https://play.google.com/store/apps/details?id=com.diyphonegadgets.DemoKit&hl=de PS: Sorry for my bad English i ...
2
votes
1answer
36 views

define S4 method with 3 dots

I am trying to define the "c" method for an object I created. something like setMethod("c", signature(...), definition=function (...) { myObject = list(...)[[1]] ...
4
votes
2answers
129 views

How to create a dataframe of user defined S4 classes in R

I want to create a data.frame of different variables, including S4 classes. For a built-in class like "POSIXlt" (for dates) this works fine: as.data.frame(list(id=c(1,2), ...
1
vote
1answer
116 views

R public method in S4 class

I want to subclass an S4 class and add a special method to that subclass. The method should work only for the subclass, it does not make sense for any other class in my application. ...
1
vote
1answer
70 views

R: finding the source code that produces the output for S4 slot?

G'day Everyone, When the 'lmer' function in 'lme4' runs its produces an S4 object with a lot of slots. I am interested in one of these slots, namely model@X, and how this 'X' slot output is produced. ...
1
vote
1answer
75 views

Convert 'spec' S3 class to new S4 class

In R I want to convert (coerce?) an object returned from stats::spectrum (class 'spec') into a new S4 class. The S3 class 'spec' is essentially a list of various information with mixed formats (I've ...
4
votes
1answer
71 views

Use S3 virtual class as slot of an S4 class, got error: got class “S4”, should be or extend class “nls.lm”

R Version: R version 2.15.2 (2012-10-26) Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit) I want to make an S4 class that use the output object of the function of nls.lm (package: ...
1
vote
1answer
90 views

Overloading + operator in R S4 classes and Matrix package

I get a weird effect when trying to overload the + operator and using the Matrix package with sparse matrices. I first define a very simple class that does not use the Matrix package but has a + ...
0
votes
0answers
191 views

setMethod in S4 - how to define a method that doesn't need the object as an argument?

In R with S4 classes, I define a method to assign two values to an object: setGeneric("setValues", function(object, x, y) { standardGeneric("setValues") }) setMethod(f = "setValues", signature = ...
2
votes
1answer
123 views

What's the recommended package build workflow with packages that contain S4 classes? [duplicate]

Possible Duplicate: How to properly document S4 class slots using Roxygen2 I would like to build a package that contains S4 classes using R Studio and roxygen2. I had already documented ...
4
votes
1answer
43 views

substitute() in S4

If only the named arguments of a S4 generic function are defined in a method, substitute() works as expected: > setGeneric("fS4", function(x, ...) standardGeneric("fS4")) > setMethod("fS4", ...
1
vote
1answer
77 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", ...
6
votes
1answer
92 views

How to specify in which order to load S4 methods when using roxygen2

I ran into following problem already multiple times. Say you have two classes, classA and classB described in the following files classA.R : #' the class classA #' #' This is a class A blabla #' ...
2
votes
1answer
174 views

How to create a S4-class in R which allows vector-like indexing?

I want to create a new class in R which basically should be like the vector class except that every element in the vector has two additional attributes for 'start-time' and 'end-time'. Part of the ...
3
votes
1answer
123 views

R: Applying terms.formula on an S4 object inheriting data.frame

I'm trying to create a new class that inherits from data frame: > setClass('new.frame', representation(colour='character'), contains = 'data.frame') This is an instance of that class, ...
47
votes
1answer
556 views

Rd file name conflict when extending a S4 method of some other package

Actual question How do I avoid Rd file name conflicts when a S4 generic and its method(s) are not necessarily all defined in the same package (package containing (some of) the custom method(s) ...
3
votes
0answers
78 views

testthat::auto_test() seems to fail when S4 code is involved

Over the last couple of weeks, I've been integrating the unit-test functionality of the testthat package more and more into my daily work and really have to say: this package rocks! I specifically ...
1
vote
1answer
69 views

Make parallel clusters within a S4 class [duplicate]

Possible Duplicate: S4 Classes: Multiple types per slot I am trying to make my first R package. I plan to create a S4 class "test" that contains data and some methods to process data. In my ...
0
votes
1answer
298 views

How to access the slots of an S4 object in R

I'm working with wavelets on a program and I'm used the package wavelets to create the DWT of a time series using the function dwt. This function returns an object of class dwt, which is a S4 object ...
0
votes
1answer
78 views

S4 object in R cannot be passed to Fortran

I use the bdiag function in the Matrix package in R to generate diagonal matrix, and then I pass the resultant matrix (called mat) into a self-written function but R fails to execute due to the ...
8
votes
1answer
176 views

S4 Classes: Multiple types per slot

Is it possible to create an S4 class, where one or more of the slots can be of multiple classes? For example. Let's say that you had a situation where data could be either a vector, or a data.frame. ...
1
vote
1answer
197 views

How is S4 class definition done in a package and how is it documented properly?

Once I defined a class I wonder where to out in a package. Should just create a file classDefintions.R containing my S4 class definition and put it to the R folder? If so, how can I document it ...
4
votes
1answer
114 views

Adding S4 dispatch to base R S3 generic

I am trying to add a spatial method to merge which needs to be S4 (since it dispatches on the types of two different objects). I have tried using an earlier solution as follows: #' Merge a ...
0
votes
0answers
85 views

Weird behavior with data.table, devtools, and S4 [closed]

I am getting some really weird behavior when trying to write an S4 subclass of data.table. In short, after loading the RCurl package, the "[" method no longer can find variable names in the scope of ...
3
votes
1answer
85 views

Why sometimes i cant set a class definition as slot in a s4 class? [closed]

r=ks.test(x=rnorm(100), "dnorm") class(r) [1] "htest" ## Doesnt work, "htest" is class in stats setClass("Jergon", representation(fit="htest")) [1] "Jergon" Warning message: undefined slot classes ...
1
vote
1answer
37 views

select instance of a class from many instances conditioned on a slot?

Assume I have several instances of an S4 class, just like in this example. setClass("myClass",representation(name = "character", description = "character") my1 <- new("myClass",name = ...

1 2 3