Last updated on 2026-07-30 04:54:57 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.1.2 | 0.29 | 3.04 | 3.33 | ERROR | |
| r-devel-linux-x86_64-debian-gcc | 1.1.2 | 0.27 | 2.67 | 2.94 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.1.2 | 1.49 | ERROR | |||
| r-devel-linux-x86_64-fedora-gcc | 1.1.2 | 1.09 | ERROR | |||
| r-devel-windows-x86_64 | 1.1.2 | 5.00 | 43.00 | 48.00 | ERROR | |
| r-patched-linux-x86_64 | 1.1.2 | 2.40 | 23.64 | 26.04 | OK | |
| r-release-linux-x86_64 | 1.1.2 | 2.39 | 23.62 | 26.01 | OK | |
| r-release-macos-arm64 | 1.1.2 | 1.00 | 10.00 | 11.00 | OK | |
| r-release-macos-x86_64 | 1.1.2 | 7.00 | ERROR | |||
| r-release-windows-x86_64 | 1.1.2 | 5.00 | 44.00 | 49.00 | OK | |
| r-oldrel-macos-arm64 | 1.1.2 | OK | ||||
| r-oldrel-macos-x86_64 | 1.1.2 | 2.00 | 32.00 | 34.00 | OK | |
| r-oldrel-windows-x86_64 | 1.1.2 | 6.00 | 54.00 | 60.00 | OK |
Version: 1.1.2
Check: package dependencies
Result: ERROR
Package required but not available: ‘dbarts’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-release-macos-x86_64
Version: 1.1.2
Check: examples
Result: ERROR
Running examples in 'EBcoBART-Ex.R' failed
The error most likely occurred in:
> ### Name: EBcoBART
> ### Title: Learning prior covariate weights for BART models with empirical
> ### Bayes and co-data.
> ### Aliases: EBcoBART
>
> ### ** Examples
>
> ###################################
> ### Binary response example ######
> ###################################
> # For continuous response example, see README.
> # Use data set provided in R package
> # We set EB = T indicating that we also estimate
> # tree structure prior parameter alpha
> # and leaf node prior parameter k
>
> data("Lymphoma")
> Xtr <- as.matrix(Lymphoma$Xtrain) # Xtr should be matrix object
> Ytr <- Lymphoma$Ytrain
> Xte <- as.matrix(Lymphoma$Xtest) # Xte should be matrix object
> Yte <- Lymphoma$Ytest
> CoDat <- Lymphoma$CoData
> CoDat <- stats::model.matrix(~., CoDat) # encode grouping by dummies
> #(include intercept)
>
> set.seed(4) # for reproducible results
> Fit <- EBcoBART(Y = Ytr, X = Xtr, CoData = CoDat,
+ nIter = 2, # Low! Only for illustration
+ model = "binary",
+ EB_k = TRUE, EB_alpha = TRUE,
+ EB_sigma = FALSE,
+ verbose = TRUE,
+ ntree = 5, # Low! Only for illustration
+ nchain = 3,
+ nskip = 500, # Low! Only for illustration
+ ndpost = 500, # Low! Only for illustration
+ Prob_Init = rep(1/ncol(Xtr), ncol(Xtr)),
+ k = 2, alpha = .95, beta = 2)
EM iteration 1Error in parse(text = deparse(RNGkind)[-1L]) :
<text>:1:22: unexpected ')'
1: binom.kind = NULL)
^
Calls: EBcoBART ... validObject -> anyStrings -> isTRUE -> validityMethod -> parse
Execution halted
Flavor: r-devel-windows-x86_64