Re: [R] R.oo in R-3.0.1

2013-08-22 Thread Grach, Alexander
fine. Thanks again. Best, Alex -Original Message- From: henrik.bengts...@gmail.com [mailto:henrik.bengts...@gmail.com] On Behalf Of Henrik Bengtsson Sent: Thursday, August 22, 2013 3:27 PM To: Grach, Alexander Cc: r-help@r-project.org Subject: Re: [R] R.oo in R-3.0.1 Hi, R.oo author here

Re: [R] R.oo in R-3.0.1

2013-08-22 Thread Henrik Bengtsson
Hi, R.oo author here: This looks like a possible namespace issues, which might have gone under the radar if you have only used R v2.11.x until now. Could you forward me your MyPackage test package so I can troubleshoot/reproduce (I think the answer is in your DESCRIPTION/NAMESPACE file). /Henrik

Re: [R] R.oo in R-3.0.1

2013-08-21 Thread Anamika Chaudhuri
Hi All: I am getting some warnings trying to run the following code and I am not sure what they mean. > set.seed(111) > k<-63 > n<-60 > x<-NULL > p<-rbeta(k,3,3)# so that the mean nausea rate is alpha/(alpha+beta) > #min<-10 > #max<-60 > #n<-as.integer(runif(k,min,max)) > for(i in 1:k) + x<-cbind(

[R] R.oo in R-3.0.1

2013-08-21 Thread Grach, Alexander
Fellow R users, I'm trying to upgrade from 2.11 to 3.0.1. I have a legacy S3 class defining method "DAILY" within one of our "in-house" packages using R.oo. This method does not seem to get 'resolved' under 3.0.1, specifically the following does not work: CODE WITHIN PACKAGE (e.g. MyPackage