Last updated on 2026-04-12 13:53:32 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.2.1 | 17.03 | 192.11 | 209.14 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 1.2.1 | 12.20 | 135.46 | 147.66 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.2.1 | 29.00 | 297.37 | 326.37 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.2.1 | 27.00 | 301.84 | 328.84 | OK | |
| r-devel-macos-arm64 | 1.2.1 | 4.00 | 109.00 | 113.00 | OK | |
| r-devel-windows-x86_64 | 1.2.1 | 17.00 | 426.00 | 443.00 | OK | |
| r-patched-linux-x86_64 | 1.2.1 | 12.80 | 180.05 | 192.85 | OK | |
| r-release-linux-x86_64 | 1.2.1 | 14.75 | 175.84 | 190.59 | OK | |
| r-release-macos-arm64 | 1.2.1 | OK | ||||
| r-release-macos-x86_64 | 1.2.1 | 10.00 | 469.00 | 479.00 | OK | |
| r-release-windows-x86_64 | 1.2.1 | 19.00 | 0.00 | 19.00 | OK | |
| r-oldrel-macos-arm64 | 1.2.1 | OK | ||||
| r-oldrel-macos-x86_64 | 1.2.1 | 10.00 | 327.00 | 337.00 | OK | |
| r-oldrel-windows-x86_64 | 1.2.1 | 25.00 | 578.00 | 603.00 | OK |
Version: 1.2.1
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Houjie Wang <wanghoujie6688@gmail.com>’
The Description field contains
Wang, H. & Yoshida, R. (2020) <arXiv:2003.00677>. Details about
Please refer to arXiv e-prints via their arXiv DOI <doi:10.48550/arXiv.YYMM.NNNNN>.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.2.1
Check: examples
Result: ERROR
Running examples in ‘Rtropical-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: predict.tropsvm
> ### Title: Predict Method for Tropical Support Vector Machines
> ### Aliases: predict.tropsvm
>
> ### ** Examples
>
>
> # data generation
> library(Rfast)
Loading required package: Rcpp
Loading required package: zigg
Loading required package: RcppParallel
Attaching package: ‘RcppParallel’
The following object is masked from ‘package:Rcpp’:
LdFlags
Rfast: 2.1.5.2
___ __ __ __ __ __ __ __ __ __ _ _ __ __ __ __ __ __ __ __ __ __ __
| __ __ __ __ | | __ __ __ __ _/ / \ | __ __ __ __ / /__ __ _ _ __ __\
| | | | | | / _ \ | | / /
| | | | | | / / \ \ | | / /
| | | | | | / / \ \ | | / /
| |__ __ __ __| | | |__ __ __ __ / / \ \ | |__ __ __ __ _ / /__/\
| __ __ __ __| | __ __ __ __| / /__ _ __\ \ |_ __ __ __ _ | / ___ /
| \ | | / _ _ _ _ _ _ \ | | \/ / /
| |\ \ | | / / \ \ | | / /
| | \ \ | | / / \ \ | | / /
| | \ \ | | / / \ \ | | / /
| | \ \__ __ _ | | / / \ \ _ __ __ __ _| | / /
|_| \__ __ __\ |_| /_/ \_\ /_ __ __ __ ___| \/ team
> e <- 100
> n <- 10
> N <- 10
> s <- 5
> x <- rbind(
+ rmvnorm(n, mu = c(5, -5, rep(0, e - 2)), sigma = diag(s, e)),
+ rmvnorm(n, mu = c(-5, 5, rep(0, e - 2)), sigma = diag(s, e))
+ )
> y <- as.factor(c(rep(1, n), rep(2, n)))
> newx <- rbind(
+ rmvnorm(N, mu = c(5, -5, rep(0, e - 2)), sigma = diag(s, e)),
+ rmvnorm(N, mu = c(-5, 5, rep(0, e - 2)), sigma = diag(s, e))
+ )
> newy <- as.factor(rep(c(1, 2), each = N))
>
> # train the tropical svm
> tropsvm_fit <- tropsvm(x, y, auto.assignment = TRUE, ind = 1)
>
> # test with new data
> pred <- predict(tropsvm_fit, newx)
>
> # check with accuracy
> table(pred, newy)
newy
pred 1 2
1 10 10
>
> # compute testing accuracy
> sum(pred == newy) / length(newy)
Error in Ops.factor(pred, newy) : level sets of factors are different
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc