CRAN Package Check Results for Package flacco

Last updated on 2025-12-06 00:48:42 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.8 13.73 133.28 147.01 NOTE
r-devel-linux-x86_64-debian-gcc 1.8 9.35 74.13 83.48 ERROR
r-devel-linux-x86_64-fedora-clang 1.8 29.00 199.54 228.54 NOTE
r-devel-linux-x86_64-fedora-gcc 1.8 27.00 199.32 226.32 NOTE
r-devel-windows-x86_64 1.8 16.00 133.00 149.00 NOTE
r-patched-linux-x86_64 1.8 15.01 122.86 137.87 NOTE
r-release-linux-x86_64 1.8 13.49 123.96 137.45 NOTE
r-release-macos-arm64 1.8 NOTE
r-release-macos-x86_64 1.8 16.00 158.00 174.00 NOTE
r-release-windows-x86_64 1.8 15.00 131.00 146.00 NOTE
r-oldrel-macos-arm64 1.8 NOTE
r-oldrel-macos-x86_64 1.8 15.00 83.00 98.00 NOTE
r-oldrel-windows-x86_64 1.8 20.00 167.00 187.00 NOTE

Check Details

Version: 1.8
Check: CRAN incoming feasibility
Result: NOTE Maintainer: ‘Pascal Kerschke <kerschke@uni-muenster.de>’ Found the following URLs which should use \doi (with the DOI name only): File ‘features.Rd’: http://dx.doi.org/10.1007/978-3-319-07494-8_9 http://dx.doi.org/10.1145/2739480.2754642 http://dx.doi.org/10.1145/1143997.1144085 http://dx.doi.org/10.1145/2001576.2001690 http://dx.doi.org/10.1109/TEVC.2014.2302006 File ‘plotCellMapping.Rd’: http://dx.doi.org/10.1007/978-3-319-07494-8_9 File ‘plotInformationContent.Rd’: http://dx.doi.org/10.1109/TEVC.2014.2302006 Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Version: 1.8
Check: Rd files
Result: NOTE checkRd: (-1) convertInitDesignToGrid.Rd:11: Lost braces; missing escapes or markup? 11 | The initial design, consisting of \code{d + 1} columns ({d} dimensions and | ^ 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-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 1.8
Check: examples
Result: ERROR Running examples in ‘flacco-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: FeatureObject > ### Title: Create a Feature Object > ### Aliases: FeatureObject createFeatureObject > > ### ** Examples > > # (1a) create a feature object using X and y: > X = createInitialSample(n.obs = 500, dim = 3, + control = list(init_sample.lower = -10, init_sample.upper = 10)) > y = apply(X, 1, function(x) sum(x^2)) > feat.object1 = createFeatureObject(X = X, y = y, + lower = -10, upper = 10, blocks = c(5, 10, 4)) > > # (1b) create a feature object using X and fun: > feat.object2 = createFeatureObject(X = X, + fun = function(x) sum(sin(x) * x^2), + lower = -10, upper = 10, blocks = c(5, 10, 4)) > > # (1c) create a feature object using a data.frame: > feat.object3 = createFeatureObject(iris[,-5], blocks = 5, + objective = "Petal.Length") > > # (2) have a look at the feature objects: > feat.object1 Feature Object: - Number of Observations: 500 - Number of Variables: 3 - Lower Boundaries: -1.00e+01, -1.00e+01, -1.00e+01 - Upper Boundaries: 1.00e+01, 1.00e+01, 1.00e+01 - Name of Variables: x1, x2, x3 - Optimization Problem: minimize y - Number of Cells per Dimension: 5, 10, 4 - Size of Cells per Dimension: 4.00, 2.00, 5.00 - Number of Cells: - total: 200 - non-empty: 182 (91.00%) - empty: 18 (9.00%) - Average Number of Observations per Cell: - total: 2.50 - non-empty: 2.75 > feat.object2 Feature Object: - Number of Observations: 500 - Number of Variables: 3 - Lower Boundaries: -1.00e+01, -1.00e+01, -1.00e+01 - Upper Boundaries: 1.00e+01, 1.00e+01, 1.00e+01 - Name of Variables: x1, x2, x3 - Optimization Problem: minimize y - Function to be Optimized: function (x) sum(sin(x) * x^2) - Number of Cells per Dimension: 5, 10, 4 - Size of Cells per Dimension: 4.00, 2.00, 5.00 - Number of Cells: - total: 200 - non-empty: 182 (91.00%) - empty: 18 (9.00%) - Average Number of Observations per Cell: - total: 2.50 - non-empty: 2.75 > feat.object3 Feature Object: - Number of Observations: 150 - Number of Variables: 3 - Lower Boundaries: 4.30e+00, 2.00e+00, 1.00e-01 - Upper Boundaries: 7.90e+00, 4.40e+00, 2.50e+00 - Name of Variables: Sepal.Length, Sepal.Width, Petal.Width - Optimization Problem: minimize Petal.Length - Number of Cells per Dimension: 5, 5, 5 - Size of Cells per Dimension: 0.72, 0.48, 0.48 - Number of Cells: - total: 125 - non-empty: 37 (29.60%) - empty: 88 (70.40%) - Average Number of Observations per Cell: - total: 1.20 - non-empty: 4.05 > > # (3) now, one could calculate features > calculateFeatureSet(feat.object1, "ela_meta") $ela_meta.lin_simple.adj_r2 [1] 0.007611856 $ela_meta.lin_simple.intercept [1] 100.4512 $ela_meta.lin_simple.coef.min [1] 0.1066988 $ela_meta.lin_simple.coef.max [1] 0.8837961 $ela_meta.lin_simple.coef.max_by_min [1] 8.283094 $ela_meta.lin_w_interact.adj_r2 [1] 0.03712366 $ela_meta.quad_simple.adj_r2 [1] 1 $ela_meta.quad_simple.cond [1] 1 $ela_meta.quad_w_interact.adj_r2 [1] 1 $ela_meta.costs_fun_evals [1] 0 $ela_meta.costs_runtime [1] 0.014 > calculateFeatureSet(feat.object2, "cm_grad") $cm_grad.mean [1] 0.6478578 $cm_grad.sd [1] 0.1799982 $cm_grad.costs_fun_evals [1] 0 $cm_grad.costs_runtime [1] 0.076 > library(plyr) Error in library(plyr) : there is no package called ‘plyr’ Execution halted Flavor: r-devel-linux-x86_64-debian-gcc

Version: 1.8
Check: HTML version of manual
Result: NOTE Skipping checking math rendering: package 'V8' unavailable Flavor: r-devel-linux-x86_64-debian-gcc