Package check result: OK Changes to worse in reverse depends: Package: imbalanceDatRel Check: examples New result: ERROR Running examples in ‘imbalanceDatRel-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: DatRel > ### Title: Data Relocation for Resampled Data using Pure and Proper Class > ### Cover Catch Digraph > ### Aliases: DatRel > > ### ** Examples > > > library(SMOTEWB) > library(rcccd) > > set.seed(10) > # adding data > x <- rbind(matrix(rnorm(2000, 3, 1), ncol = 2, nrow = 1000), + matrix(rnorm(60, 6, 1), ncol = 2, nrow = 30)) > y <- as.factor(c(rep("negative", 1000), rep("positive", 30))) > > # adding noise > x[1001,] <- c(3,3) > x[1002,] <- c(2,2) > x[1003,] <- c(4,4) > > # resampling > m_SMOTE <- SMOTE(x = x, y = y, k = 3) > > # relocation of resampled data > m_DatRel <- DatRel(x = x, y = y, x_syn = m_SMOTE$x_syn) Error in rcccd:::f_cover_pcccd(cover = cover, thresh = thresh, dist_main2main = dist_main2main, : unused arguments (cover = cover, dist_main2main = dist_main2main, dist_main2other = dist_main2other) Calls: DatRel -> f_dominate Execution halted