search for: reemtree

Displaying 7 results from an estimated 7 matches for "reemtree".

2009 May 27
1
"Error: package/namespace load failed"
I am writing my first R package, and I have been getting the following series of errors when I run R CMD check: * checking S3 generic/method consistency ... WARNING Error: package/namespace load failed for 'REEMtree' Call sequence: 2: stop(gettextf("package/namespace load failed for '%s'", libraryPkgName(package)), call. = FALSE, domain = NA) 1: library(package, lib.loc = lib.loc, character.only = TRUE, verbose = FALSE) Execution halted See section 'Generic functions and metho...
2011 Aug 24
0
library REEMtree => Error in estRE[toString(uniqueID[i]), 1] : incorrect number of dimensions
Hi List, I'm having this problem when trying to use the PREDICT function. Here is a way to reproduce the error library(REEMtree) data(simpleREEMdata) REEMresult<-REEMtree(Y~D+t+X, data=simpleREEMdata, random=~1|ID/D) predict(REEMresult, simpleREEMdata, id = simpleREEMdata$ID/simpleREEMdata$D, EstimateRandomEffects=TRUE) As far as I understand the problem is that I'm not being able to specify correctly the number of...
2009 Jun 03
1
No CHM file
...ackage in R (version 2.1.1 on a Linux machine) and then moved it to my computer (R version 2.8.1 on a Windows machine). When I loaded the package and tried to open help for one of the commands, I got the following warning: Warning message: In print.help_files_with_topic("F:/R/R-2.8.1/library/REEMtree/chm/RMSE") : No CHM help for 'RMSE' in package 'REEMtree' is available: the CHM file for the package is missing The resulting Help shows up as a window within R, instead of as the usual HTML help file. Is this occurring because the package was built under an older version o...
2009 May 13
3
Checking a (new) package - examples require other package functions
I am creating an R package. I ran R CMD check on the package, and everything passed until it tried to run the examples. Then, the result was: * checking examples ... ERROR Running examples in REEMtree-Ex.R failed. The error most likely occurred in: > ### * AutoCorrelationLRtest > > flush(stderr()); flush(stdout()) > > ### Name: AutoCorrelationLRtest > ### Title: Test for autocorrelation in the residuals of a RE-EM tree > ### Aliases: AutoCorrelationLRtest > ### Keyword...
2010 Jul 11
1
Is there a "Mixed effect model" for regression/classification trees?
Hello all, This is more a statistical question then an R question, but I am sure it will have an R interpretation to it. If I wish to predict an outcome based on some potential features, I could (in some cases) use either regression or regression-tree. However, if my observations are divided to groups (for example by "subject"), I might then want to model that using a random effect for
2009 Jun 01
1
installing sn package
...il.root@calliope.stern.nyu.edu> Content-Type: text/plain; charset="utf-8" I am writing my first R package, and I have been getting the following series of errors when I run R CMD check: * checking S3 generic/method consistency ... WARNING Error: package/namespace load failed for 'REEMtree' Call sequence: 2: stop(gettextf("package/namespace load failed for '%s'", libraryPkgName(package)),       call. = FALSE, domain = NA) 1: library(package, lib.loc = lib.loc, character.only = TRUE, verbose = FALSE) Execution halted See section 'Generic functions and method...
2010 Aug 25
1
Documenting S4 Methods
I'm in the process of converting some S3 methods to S4 methods. I have this function : setGeneric("enrichmentCalc", function(rs, organism, seqLen, ...){standardGeneric("enrichmentCalc")}) setMethod("enrichmentCalc", c("GenomeDataList", "BSgenome"), function(rs, organism, seqLen, ...) { ... ... ... })