* using log directory 'd:/RCompile/CRANincoming/R-devel/SKFCPD.Rcheck' * using R Under development (unstable) (2024-01-28 r85838 ucrt) * using platform: x86_64-w64-mingw32 * R was compiled by gcc.exe (GCC) 12.3.0 GNU Fortran (GCC) 12.3.0 * running under: Windows Server 2022 x64 (build 20348) * using session charset: UTF-8 * checking for file 'SKFCPD/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'SKFCPD' version '0.2.3' * package encoding: UTF-8 * checking CRAN incoming feasibility ... NOTE Maintainer: 'Hanmo Li ' New submission Possibly misspelled words in DESCRIPTION: Changepoint (3:20) Gu (16:235) Hanmo (16:202) Kalman (16:25) Mengyang (16:226) Yuedong (16:212) changepoint (16:59) scalable (16:43) * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking whether package 'SKFCPD' can be installed ... OK * used C++ compiler: 'g++.exe (GCC) 12.3.0' * checking installed package size ... OK * checking package directory ... OK * checking for future file timestamps ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking R files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking use of S3 registration ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd line widths ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking line endings in C/C++/Fortran sources/headers ... OK * checking pragmas in C/C++ headers and code ... OK * checking compilation flags used ... OK * checking compiled code ... OK * checking examples ... [13s] ERROR Running examples in 'SKFCPD-Ex.R' failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: plot_SKFCPD > ### Title: Plot for SKFCPD model > ### Aliases: plot_SKFCPD > > ### ** Examples > > library(SKFCPD) > > #------------------------------------------------------------------------------ > # Example: fast online changepoint detection with DEPENDENT data. > # > # Data generation: Data follows a multidimensional Gaussian process with Matern 2.5 kernel. > #------------------------------------------------------------------------------ > # Data Generation > set.seed(1) > > n_obs = 150 > n_dim = 2 > seg_len = c(70, 30, 20,30) > mean_each_seg = c(0,1,-1,0) > > x_mat=matrix(1:n_obs) > y_mat=matrix(NA, nrow=n_obs, ncol=n_dim) > > gamma = rep(5, n_dim) # range parameter of the covariance matrix > > # compute the matern 2.5 kernel > construct_cor_matrix = function(input, gamma){ + n = length(input) + R0=abs(outer(input,(input),'-')) + matrix_one = matrix(1, n, n) + const = sqrt(5) * R0 / gamma + Sigma = (matrix_one + const + const^2/3) * (exp(-const)) + return(Sigma) + } > > for(j in 1:n_dim){ + y_each_dim = c() + for(i in 1:length(seg_len)){ + nobs_per_seg = seg_len[i] + Sigma = construct_cor_matrix(1:nobs_per_seg, gamma[j]) + L=t(chol(Sigma)) + theta=rep(mean_each_seg[i],nobs_per_seg)+L%*%rnorm(nobs_per_seg) + y_each_dim = c(y_each_dim, theta+0.1*rnorm(nobs_per_seg)) + } + y_mat[,j] = y_each_dim + } > > plot(y_mat[,1]~x_mat) > > ## Detect changepoints by SKFCPD > Online_CPD_1 = SKFCPD(design = x_mat, + response = y_mat, + train_prop = 1/3) Starting a new changepoint detection model. No missing values found in the response. Starting the training process: Use first 33.33333% observations for training. Esimated parameters: gamma: 4.35689 4.21304 eta: 0.01618 0.01088 sigma_2: 0.42814 0.72252 Fast changepoint detection algorithm completed. Estimated changepoints: 71 101 121 > > ## visulize the results > plot_SKFCPD(Online_CPD_1) * checking PDF version of manual ... [28s] OK * checking HTML version of manual ... OK * DONE Status: 1 ERROR, 1 NOTE