Last updated on 2026-04-09 05:52:03 CEST.
| Package | ERROR | WARN | NOTE | OK |
|---|---|---|---|---|
| BTM | 14 | |||
| cronR | 11 | |||
| dlib | 5 | 9 | ||
| doc2vec | 3 | 11 | ||
| ETLUtils | 14 | |||
| image.binarization | 14 | |||
| image.CannyEdges | 14 | |||
| image.ContourDetector | 14 | |||
| image.CornerDetectionF9 | 14 | |||
| image.CornerDetectionHarris | 14 | |||
| image.libfacedetection | 14 | |||
| image.LineSegmentDetector | 14 | |||
| image.Otsu | 14 | |||
| nametagger | 3 | 11 | ||
| recogito | 3 | 11 | ||
| RMOA | 1 | 1 | 12 | |
| RMOAjars | 2 | 12 | ||
| sentencepiece | 1 | 3 | 10 | |
| spark.sas7bdat | 14 | |||
| taskscheduleR | 3 | |||
| text.alignment | 14 | |||
| textplot | 2 | 1 | 11 | |
| textrank | 14 | |||
| tokenizers.bpe | 1 | 2 | 11 | |
| topicmodels.etm | 1 | 13 | ||
| udpipe | 3 | 11 | ||
| word2vec | 1 | 2 | 11 |
Current CRAN status: OK: 14
Current CRAN status: OK: 11
Current CRAN status: NOTE: 5, OK: 9
Version: 1.0.3.1
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Jan Wijffels <jwijffels@bnosac.be>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = "Jan",
family = "Wijffels",
role = c("aut", "cre"),
email = "jwijffels@bnosac.be"),
person(family = "BNOSAC",
role = "aut"),
person(given = "Davis",
family = "King",
role = "aut"),
person(given = c("dlib", "package"),
family = "authors",
role = "aut",
comment = "see file AUTHORS"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.0.3.1
Check: installed package size
Result: NOTE
installed size is 16.2Mb
sub-directories of 1Mb or more:
include 15.8Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: NOTE: 3, OK: 11
Version: 0.2.2
Check: installed package size
Result: NOTE
installed size is 7.3Mb
sub-directories of 1Mb or more:
data 4.8Mb
libs 2.3Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: NOTE: 3, OK: 11
Version: 0.1.7
Check: installed package size
Result: NOTE
installed size is 25.8Mb
sub-directories of 1Mb or more:
data 1.9Mb
libs 22.6Mb
models 1.1Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: NOTE: 3, OK: 11
Version: 0.2.1
Check: installed package size
Result: NOTE
installed size is 10.3Mb
sub-directories of 1Mb or more:
htmlwidgets 9.8Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: ERROR: 1, NOTE: 1, OK: 12
Version: 1.1.0
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Jan Wijffels <jwijffels@bnosac.be>’
Package CITATION file contains call(s) to old-style personList() or
as.personList(). Please use c() on person objects instead.
Package CITATION file contains call(s) to old-style citEntry(). Please
use bibentry() instead.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.1.0
Check: examples
Result: ERROR
Running examples in ‘RMOA-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: predict.MOA_trainedmodel
> ### Title: Predict using a MOA classifier, MOA regressor or MOA recommender
> ### on a new dataset
> ### Aliases: predict.MOA_trainedmodel
>
> ### ** Examples
>
> ## Hoeffdingtree
> hdt <- HoeffdingTree(numericEstimator = "GaussianNumericAttributeClassObserver")
> data(iris)
> ## Make a training set
> iris <- factorise(iris)
> traintest <- list()
> traintest$trainidx <- sample(nrow(iris), size=nrow(iris)/2)
> traintest$trainingset <- iris[traintest$trainidx, ]
> traintest$testset <- iris[-traintest$trainidx, ]
> irisdatastream <- datastream_dataframe(data=traintest$trainingset)
> ## Train the model
> hdtreetrained <- trainMOA(model = hdt,
+ Species ~ Sepal.Length + Sepal.Width + Petal.Length + Petal.Width,
+ data = irisdatastream)
>
> ## Score the model on the holdoutset
> scores <- predict(hdtreetrained,
+ newdata=traintest$testset[, c("Sepal.Length","Sepal.Width","Petal.Length","Petal.Width")],
+ type="response")
> str(scores)
chr [1:75] "setosa" "setosa" "setosa" "setosa" "setosa" "setosa" "setosa" ...
> table(scores, traintest$testset$Species)
scores setosa versicolor virginica
setosa 22 0 0
versicolor 0 28 2
virginica 0 2 21
> scores <- predict(hdtreetrained, newdata=traintest$testset, type="votes")
> head(scores)
setosa versicolor virginica
[1,] 2.1116956 5.814254e-24 3.626837e-23
[2,] 1.0692703 3.750871e-24 4.501561e-24
[3,] 0.9214671 1.344403e-22 2.681703e-23
[4,] 2.0708417 7.756787e-25 1.596365e-23
[5,] 2.3213611 8.046016e-23 9.878775e-23
[6,] 0.2389012 1.283804e-23 3.152946e-24
>
> ## Prediction based on recommendation engine
> require(recommenderlab)
Loading required package: recommenderlab
Warning in library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘recommenderlab’
> data(MovieLense)
Warning in data(MovieLense) : data set ‘MovieLense’ not found
> x <- getData.frame(MovieLense)
Error in getData.frame(MovieLense) :
could not find function "getData.frame"
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Current CRAN status: NOTE: 2, OK: 12
Version: 1.2.0
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Jan Wijffels <jwijffels@bnosac.be>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = c("See", "file"),
family = "AUTHORS",
role = "aut"),
person(given = "Jan",
family = "Wijffels",
role = "cre",
email = "jwijffels@bnosac.be"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Current CRAN status: ERROR: 1, NOTE: 3, OK: 10
Version: 0.2.5
Check: examples
Result: ERROR
Running examples in ‘sentencepiece-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: BPEembed
> ### Title: Tokenise and embed text alongside a Sentencepiece and Word2vec
> ### model
> ### Aliases: BPEembed
>
> ### ** Examples
>
> ##
> ## Example loading model from disk
> ##
> folder <- system.file(package = "sentencepiece", "models")
> embedding <- file.path(folder, "nl.wiki.bpe.vs1000.d25.w2v.bin")
> model <- file.path(folder, "nl.wiki.bpe.vs1000.model")
> encoder <- BPEembed(model, embedding)
Loading required namespace: word2vec
Failed with error: ‘there is no package called ‘word2vec’’
Error in packageVersion("word2vec") :
there is no package called ‘word2vec’
Calls: BPEembed -> packageVersion
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.2.5
Check: installed package size
Result: NOTE
installed size is 21.6Mb
sub-directories of 1Mb or more:
libs 19.9Mb
models 1.6Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: OK: 14
Current CRAN status: OK: 3
Current CRAN status: OK: 14
Current CRAN status: ERROR: 2, NOTE: 1, OK: 11
Version: 0.2.3
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
...
--- re-building ‘textplot-examples.Rnw’ using knitr
Attaching package: 'igraph'
The following objects are masked from 'package:stats':
decompose, spectrum
The following object is masked from 'package:base':
union
Quitting from textplot-examples.Rnw:52-62 [unnamed-chunk-1]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<error/rlang_error>
Error:
! external pointer is not valid
---
Backtrace:
x
1. +-udpipe::udpipe(...)
2. \-udpipe:::udpipe.character(...)
3. \-udpipe::udpipe_annotate(udmodel, x = x, ...)
4. \-udpipe:::udp_tokenise_tag_parse(...)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'textplot-examples.Rnw' failed with diagnostics:
external pointer is not valid
--- failed re-building ‘textplot-examples.Rnw’
SUMMARY: processing the following file failed:
‘textplot-examples.Rnw’
Error: Vignette re-building failed.
Execution halted
Flavors: r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64
Version: 0.2.3
Check: package dependencies
Result: NOTE
Package suggested but not available for checking: ‘ggalt’
Flavor: r-oldrel-macos-arm64
Current CRAN status: OK: 14
Current CRAN status: WARN: 1, NOTE: 2, OK: 11
Version: 0.1.4
Check: whether package can be installed
Result: WARN
Found the following significant warnings:
./parallel_hashmap/phmap_base.h:1266:1: warning: 'is_always_equal' is deprecated: use 'std::allocator_traits::is_always_equal' instead [-Wdeprecated-declarations]
See ‘/home/hornik/tmp/R.check/r-devel-clang/Work/PKGS/tokenizers.bpe.Rcheck/00install.out’ for details.
* used C++ compiler: ‘Debian clang version 21.1.8 (3+b1)’
Flavor: r-devel-linux-x86_64-debian-clang
Version: 0.1.4
Check: installed package size
Result: NOTE
installed size is 6.1Mb
sub-directories of 1Mb or more:
libs 5.2Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: ERROR: 1, OK: 13
Version: 0.1.1
Check: examples
Result: ERROR
Running examples in ‘topicmodels.etm-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: ETM
> ### Title: Topic Modelling in Semantic Embedding Spaces
> ### Aliases: ETM
>
> ### ** Examples
>
> library(torch)
> library(topicmodels.etm)
> library(word2vec)
Error in library(word2vec) : there is no package called ‘word2vec’
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Current CRAN status: NOTE: 3, OK: 11
Version: 0.8.16
Check: installed package size
Result: NOTE
installed size is 25.5Mb
sub-directories of 1Mb or more:
dummydata 1.4Mb
libs 21.5Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: ERROR: 1, NOTE: 2, OK: 11
Version: 0.4.1
Check: whether package can be installed
Result: ERROR
Installation failed.
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.4.1
Check: installed package size
Result: NOTE
installed size is 5.3Mb
sub-directories of 1Mb or more:
libs 4.9Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64