Note: the module "R" cannot be unloaded because it was not loaded. WARNING: ignoring environment value of R_HOME R Under development (unstable) (2025-03-28 r88067) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-03-29/deps.csv", task.str = "1048", release = "/scratch/th798/data.table-revdeps/2025-03-29/data.table_release_1.17.0.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-03-29/data.table_master_1.17.99.2cb03162a21328cc5f68a8c3b0e554f5edfcb5b9.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/16179931/R-devel/1048" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/16179931/R-devel/1048/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "polmineR" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/16179931/R-devel/1048/library" [2] "/projects/genomic-ml/R/R-devel/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-03-29 01:08:50 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/16179931/R-devel/1048/library' (as 'lib' is unspecified) also installing the dependencies 'RcppCWB', 'highlight' trying URL 'http://cloud.r-project.org/src/contrib/RcppCWB_0.6.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/highlight_0.5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/polmineR_0.8.9.tar.gz' * installing *source* package 'RcppCWB' ... ** this is package 'RcppCWB' version '0.6.5' ** package 'RcppCWB' successfully unpacked and MD5 sums checked ** using staged installation * operating system detected for CWB configuration: Linux * Linux distribution ID: "rhel" (unsupported, adapting the configuration may be necessary) * architecture: x86_64 ... using config 'linux-64' * using CWB platform configuration file: linux-64 * adapt CWB configuration file to use compiler: /packages/gcc/12.2.0-nnbserq/bin/gcc sed: -e expression #1, char 54: unknown option to `s' * using pkg-config to check whether glib-2.0 is available ... yes * using pkg-config to get linker flags for glib-2.0: -L/home/th798/.conda/envs/emacs1/lib -lglib-2.0 * check whether pcre2 is available ... yes (version: 10.32) * checking whether pcre2test is available ... no * using pcre2-config to get libdirs for pcre2 (8bit): -lpcre2-8 * using pcre2-config to get cflags for pcre2: * using build directory: /tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-devel/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-devel/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c addons.cpp -o addons.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-devel/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cl.cpp -o cl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-devel/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cqp.cpp -o cqp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-devel/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.cpp -o utils.o cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make clean make[1]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found for i in cl cqp ; do if [ -f "$i/Makefile" ]; then cd $i; make clean; cd ..; fi; done; make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found rm -f *.o libcl.a registry.output *~ make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl' make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found rm -f cqp cqpcl cqpserver *.o ../CQi/*.o parser.output *~ ../CQi/*~ # TODO what is "parser.output" ? make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp' rm -f *~ config/*/*~ CQi/*~ CQi/*.o technical/*~ TAGS rm -f -rf build make[1]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make depend make[1]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found for i in cl cqp ; do cd $i; make depend.mk; cd ..; done; make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found make[2]: 'depend.mk' is up to date. make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl' make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found make[2]: 'depend.mk' is up to date. make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp' make[1]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make cl make[1]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found --------------------------------- BUILDING CORPUS LIBRARY (CL) cd cl; make make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o globals.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:01 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include globals.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o macros.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include macros.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ui-helpers.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ui-helpers.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o list.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include list.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o lexhash.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include lexhash.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ngram-hash.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ngram-hash.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o bitfields.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include bitfields.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o storage.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include storage.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o fileutils.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:02 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include fileutils.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o special-chars.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:04 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include special-chars.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o regopt.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:05 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include regopt.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o corpus.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:05 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include corpus.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o attributes.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:05 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include attributes.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o makecomps.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include makecomps.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o registry.tab.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include registry.tab.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o lex.creg.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include lex.creg.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o cdaccess.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include cdaccess.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o bitio.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include bitio.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o endian.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include endian.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o compression.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include compression.c rm -f libcl.a ar cqs libcl.a globals.o macros.o ui-helpers.o list.o lexhash.o ngram-hash.o bitfields.o storage.o fileutils.o special-chars.o regopt.o corpus.o attributes.o makecomps.o registry.tab.o lex.creg.o cdaccess.o bitio.o endian.o compression.o /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o dl_stub.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:06 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include dl_stub.c make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl' make[1]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make cqp make[1]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found --------------------------------- BUILDING CQP cd cqp; make make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o cqp.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:07 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include cqp.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o symtab.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:07 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include symtab.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o eval.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:07 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include eval.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o tree.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:08 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include tree.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o options.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:08 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include options.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o corpmanag.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:08 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include corpmanag.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o regex2dfa.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:08 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include regex2dfa.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o output.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:09 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include output.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ranges.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:09 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ranges.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o builtins.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:09 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include builtins.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o groups.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:10 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include groups.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o targets.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:10 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include targets.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o matchlist.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:10 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include matchlist.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o concordance.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:10 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include concordance.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o parse_actions.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:10 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include parse_actions.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o attlist.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include attlist.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o context_descriptor.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include context_descriptor.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o print-modes.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include print-modes.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ascii-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ascii-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o sgml-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include sgml-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o html-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include html-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o latex-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:11 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include latex-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o variables.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:12 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include variables.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o print_align.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:12 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include print_align.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o macro.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:12 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include macro.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o parser.tab.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:12 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include parser.tab.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o lex.yy.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:13 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include lex.yy.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ../CQi/server.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:13 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ../CQi/server.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ../CQi/auth.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:13 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ../CQi/auth.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ../CQi/log.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:13 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ../CQi/log.c rm -f libcqp.a ar cqs libcqp.a cqp.o symtab.o eval.o tree.o options.o corpmanag.o regex2dfa.o output.o ranges.o builtins.o groups.o targets.o matchlist.o concordance.o parse_actions.o attlist.o context_descriptor.o print-modes.o ascii-print.o sgml-print.o html-print.o latex-print.o variables.o print_align.o macro.o parser.tab.o lex.yy.o ../CQi/server.o ../CQi/auth.o ../CQi/log.o make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp' make[1]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make utils make[1]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found --------------------------------- BUILDING UTILITIES cd utils; make make[2]: Entering directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/utils' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:14 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-encode.o cwb-encode.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:14 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-makeall.o cwb-makeall.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:14 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-huffcode.o cwb-huffcode.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:10:15 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-compress-rdx.o cwb-compress-rdx.c --------------------------------- CREATING ARCHIVE rm -f libcwb.a ar cqs libcwb.a cwb-encode.o cwb-makeall.o cwb-huffcode.o cwb-compress-rdx.o make[2]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/utils' make[1]: Leaving directory '/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RcppCWB.so RcppExports.o addons.o cl.o cqp.o utils.o -L/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cl -L/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/cqp -L/tmp/th798/16179931/RtmpoMwHnj/R.INSTALL2839bf30fd9b54/RcppCWB/src/cwb/utils -lcwb -lcqp -lcl -L/home/th798/.conda/envs/emacs1/lib -lglib-2.0 -lpcre2-8 installing to /tmp/th798/16179931/R-devel/1048/library/00LOCK-RcppCWB/00new/RcppCWB/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppCWB) * installing *source* package 'highlight' ... ** this is package 'highlight' version '0.5.1' ** package 'highlight' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++11 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASBeautifier.cpp -o ASBeautifier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASEnhancer.cpp -o ASEnhancer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASFormatter.cpp -o ASFormatter.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASResource.cpp -o ASResource.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASStreamIterator.cpp -o ASStreamIterator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Matcher.cpp -o Matcher.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Pattern.cpp -o Pattern.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ansigenerator.cpp -o ansigenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bbcodegenerator.cpp -o bbcodegenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c codegenerator.cpp -o codegenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c configurationreader.cpp -o configurationreader.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ctagsreader.cpp -o ctagsreader.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c datadir.cpp -o datadir.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c documentstyle.cpp -o documentstyle.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c elementstyle.cpp -o elementstyle.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c highlight_wrapper.cpp -o highlight_wrapper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c htmlgenerator.cpp -o htmlgenerator.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c languagedefinition.cpp -o languagedefinition.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c latexgenerator.cpp -o latexgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c platform_fs.cpp -o platform_fs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c preformatter.cpp -o preformatter.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c render.cpp -o render.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rtfgenerator.cpp -o rtfgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stringtools.cpp -o stringtools.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stylecolour.cpp -o stylecolour.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c svggenerator.cpp -o svggenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c texgenerator.cpp -o texgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xhtmlgenerator.cpp -o xhtmlgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xmlgenerator.cpp -o xmlgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xterm256generator.cpp -o xterm256generator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o highlight.so ASBeautifier.o ASEnhancer.o ASFormatter.o ASResource.o ASStreamIterator.o Matcher.o Pattern.o ansigenerator.o bbcodegenerator.o codegenerator.o configurationreader.o ctagsreader.o datadir.o documentstyle.o elementstyle.o highlight_wrapper.o htmlgenerator.o init.o languagedefinition.o latexgenerator.o platform_fs.o preformatter.o render.o rtfgenerator.o stringtools.o stylecolour.o svggenerator.o texgenerator.o xhtmlgenerator.o xmlgenerator.o xterm256generator.o installing to /tmp/th798/16179931/R-devel/1048/library/00LOCK-highlight/00new/highlight/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (highlight) * installing *source* package 'polmineR' ... ** this is package 'polmineR' version '0.8.9' ** package 'polmineR' successfully unpacked and MD5 sums checked ** using staged installation ** R ** demo ** inst ** byte-compile and prepare package for lazy loading Creating a generic function for 'nrow' from package 'base' in package 'polmineR' Creating a generic function for 'ncol' from package 'base' in package 'polmineR' Creating a generic function for 'colnames' from package 'base' in package 'polmineR' Creating a generic function for 'sample' from package 'base' in package 'polmineR' ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (polmineR) The downloaded source packages are in '/tmp/th798/16179931/RtmpWq67m2/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 52.801 5.971 156.143 > print(Sys.time()) [1] "2025-03-29 01:11:26 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-03-29 01:11:26 MST" Installing package into '/tmp/th798/16179931/R-devel/1048/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.0' ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16179931/R-devel/1048/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-29 01:12:04 MST" * using log directory '/tmp/th798/16179931/R-devel/1048/polmineR.Rcheck' * using R Under development (unstable) (2025-03-28 r88067) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'polmineR/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'polmineR' version '0.8.9' * package encoding: UTF-8 * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'polmineR' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... NOTE Missing dependency on R >= 4.1.0 because package code uses the pipe |> or function shorthand \(...) syntax added in R 4.1.0. File(s) using such syntax: 'hits.R' 'size.R' 'utils.R' * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code 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 whether startup messages can be suppressed ... 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 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 installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' ERROR Running the tests in 'tests/testthat.R' failed. Complete output: > library(testthat) > library(polmineR) WARNING: The locale of the R session is 'C': The character set is not specified. You may encounter problems when working with corpora with a latin-1 or UTF-8 encoding that include special characters. polmineR is throttled to use 2 cores as required by CRAN Repository Policy. To get full performance: * Use `n_cores <- parallel::detectCores()` to detect the number of cores available on your machine * Set number of cores using `options('polmineR.cores' = n_cores - 1)` and `data.table::setDTthreads(n_cores - 1)` Attaching package: 'polmineR' The following object is masked from 'package:testthat': context The following object is masked from 'package:base': use > use("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) > > test_check("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i get token ids v get token ids [25ms] i get struc ids v get struc ids [53ms] i drop tokens outside strucs v drop tokens outside strucs [45ms] i get unique s-attribute values v get unique s-attribute values [288ms] i counting token per doc v counting token per doc [227ms] i decode strucs v decode strucs [22ms] i decode and recode token ids v decode and recode token ids [22ms] i adjust ids v adjust ids [22ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [21ms] i get token ids v get token ids [56ms] i get struc ids v get struc ids [60ms] i drop tokens outside strucs v drop tokens outside strucs [31ms] i get unique s-attribute values v get unique s-attribute values [26ms] i generate unique document ids v generate unique document ids [121ms] i counting token per doc v counting token per doc [59ms] i decode tokens and generate factor v decode tokens and generate factor [70ms] i prepare row and column labels v prepare row and column labels [30ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [32ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [62ms] i assign names v assign names [10ms] i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i get token ids v get token ids [54ms] i get struc ids v get struc ids [56ms] i drop tokens outside strucs v drop tokens outside strucs [25ms] i get unique s-attribute values v get unique s-attribute values [21ms] i generate unique document ids v generate unique document ids [119ms] i counting token per doc v counting token per doc [58ms] i decode tokens and generate factor v decode tokens and generate factor [68ms] i prepare row and column labels v prepare row and column labels [29ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [22ms] v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i distinct dates: 2 i subsetting by date i bundle class: subcorpus_bundle i subsetting by date i objects in bundle: plpr_subcorpus i subsetting by date i s-attribute for splitting ("date") is sibling of s-attribute "date" i subsetting by date i s-attribute "date" has values: yes i subsetting by date i get list of regions v get list of regions [12ms] i subsetting by date i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [36ms] i subsetting by date v subsetting by date [131ms] i generating speeches i generating names v generating names [230ms] i reorder objects v reorder objects [23ms] i coercing partitions to plpr_subcorpus v coercing partitions to plpr_subcorpus [147ms] ... get cpos and strucs i distinct dates detected: 1 i generating speeches v generating speeches [482ms] i generating names v generating names [62ms] i reordering partitions v reordering partitions [23ms] i coercing partitions to plpr_partitions v coercing partitions to plpr_partitions [22ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... creating data.table with corpus positions ... adding tokens ... generating phrases ... counting ... creating bundle of count objects v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i decoding p-attribute: word v decoding p-attribute: word [164ms] i decoding p-attribute: pos v decoding p-attribute: pos [131ms] i decoding s-attribute: interjection v decoding s-attribute: interjection [179ms] i decoding s-attribute: date v decoding s-attribute: date [184ms] i decoding s-attribute: party v decoding s-attribute: party [213ms] i decoding s-attribute: speaker v decoding s-attribute: speaker [219ms] i decoding s-attribute: protocol_date v decoding s-attribute: protocol_date [155ms] i decoding s-attribute: protocol_lp v decoding s-attribute: protocol_lp [160ms] i decoding s-attribute: role v decoding s-attribute: role [172ms] i assembling data.table v assembling data.table [34ms] i decoding p-attribute: word v decoding p-attribute: word [183ms] i decoding s-attribute: party v decoding s-attribute: party [176ms] i assembling data.table v assembling data.table [11ms] i decoding p-attribute: word v decoding p-attribute: word [167ms] i assembling data.table v assembling data.table [11ms] i decoding p_attribute "word" v decoding p_attribute "word" [58ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: UNGA ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word i coercion to `partition_bundle` class v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs i s-attribute "date" has values: yes i get regions and get values v get regions and get values [14ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "places" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 11) v instantiate objects (n = 11) [17ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i getting sizes ... getting sizes ! corpus loaded multiple times with following registries: i getting sizes * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp i getting sizes * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i getting sizes i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i getting sizes v getting sizes [34ms] i calculate frequencies v calculate frequencies [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' No hits for query: asdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' No hits for query: "asdfasdfasdfasd.*" ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... getting corpus positions ... number of hits: 21 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... number of hits: 7 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... no hits for query: asdfasdf ... no matches for query (or no matches left after applying stoplist/positivelist) ... getting corpus positions ... no matches for query (or no matches left after applying stoplist/positivelist) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... dropping nodes ... counting tokens in context ... creating new index for hits ... creating new index for tokens ... putting together matrix ... filtering by positivelist i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [12ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [23ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [36ms] i assign names v assign names [10ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [14ms] i instantiate 124 plpr_partition objects v instantiate 124 plpr_partition objects [38ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [14ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [38ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [14ms] i s-attributes not ordered according to tree structure (inefficient) i decode s-attribute "party" v decode s-attribute "party" [37ms] i merge corpus position results for s-attribute "party" v merge corpus position results for s-attribute "protocol_date" [86ms] i decode s-attribute "protocol_date" v decode s-attribute "protocol_date" [54ms] i merge corpus position results for s-attribute "protocol_date" v merge corpus position results for s-attribute "speaker" [87ms] i decode s-attribute "speaker" v decode s-attribute "speaker" [76ms] i merge corpus position results for s-attribute "speaker" v merge corpus position results for s-attribute "speaker" [92ms] i aggregate results and get sizes v aggregate results and get sizes [58ms] i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [14ms] i order of s-attributes starts with deep descendents i get regions for s-attribute "party" v get regions for s-attribute "party" [21ms] i get values for s-attribute "speaker" v get values for s-attribute "protocol_date" [41ms] i get values for s-attribute "protocol_date" v get values for s-attribute "protocol_date" [39ms] i aggregate region sizes v aggregate region sizes [31ms] i aggregate results and get sizes v aggregate results and get sizes [12ms] ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i keep only matches for 3 values provided v keep only matches for 3 values provided [13ms] i instantiate objects (n = 3) v instantiate objects (n = 3) [16ms] i assign names v assign names [10ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is descendent of s-attribute "protocol_date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [25ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [24ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [34ms] i assign names v assign names [10ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i Cannot map s-attributes and types Error in .checkTypos(e, names_x) : Object 'foo' not found amongst [struc, cpos_left, cpos_right, id] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i Cannot map s-attributes and types x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [12ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [20ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "speaker" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [12ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [20ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [10ms] ... preparing struc table ... now performing counts ... finalizing tables i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [14ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [39ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [12ms] i instantiate 77 plpr_subcorpus objects v instantiate 77 plpr_subcorpus objects [30ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 77 plpr_partition objects v instantiate 77 plpr_partition objects [31ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [14ms] i instantiate 5 plpr_subcorpus objects v instantiate 5 plpr_subcorpus objects [20ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [14ms] i instantiate 5 plpr_partition objects v instantiate 5 plpr_partition objects [20ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [18ms] i assign names v assign names [11ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [18ms] i assign names v assign names [10ms] i s-attribute "protocol_date" has values: yes i get regions and get values v get regions and get values [12ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [19ms] i assign names v assign names [11ms] i split by s-attribute "protocol_date" i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("protocol_date") is ancestor of s-attribute "speaker" i s-attribute "protocol_date" has values: yes i get list of regions v get list of regions [13ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [21ms] i objects in bundle after subsetting is 2 (3 less than before) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... applying stoplist ... number of hits dropped due to stoplist: 13 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... filtering by positivelist ... number of hits dropped due to positivelist: 65 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... decode p-attribute: word ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] == Skipped tests (18) ========================================================== * On CRAN (10): 'test_as.data.table.R:9:5', 'test_as.markdown.R:13:5', 'test_as.markdown.R:73:5', 'test_cooccurrences.R:96:5', 'test_cooccurrences.R:167:5', 'test_dispersion.R:43:5', 'test_get_token_stream.R:100:5', 'test_get_token_stream.R:138:5', 'test_html.R:9:5', 'test_subcorpus_bundle.R:187:5' * empty test (2): 'test_count.R:125:1', 'test_subcorpus.R:198:1' * knowingly not working (1): 'test_as.speeches.R:46:5' * use("GermaParl2") is not TRUE (5): 'test_as.speeches.R:86:5', 'test_hits.R:26:5', 'test_split.R:35:5', 'test_split.R:83:5', 'test_subcorpus.R:159:5' == Failed tests ================================================================ -- Failure ('test_chisquare.R:38:7'): check chisquare computation -------------- `chisquare_value_selfmade` (`actual`) not equal to `chisquare_value_fn` (`expected`). `actual`: Inf `expected`: 56 -- Failure ('test_get_token_stream.R:88:5'): get_token_stream()-method for matrix input -- nchar(ts_rm) (`actual`) not identical to 159L (`expected`). `actual`: 154 `expected`: 159 -- Failure ('test_get_token_stream.R:131:5'): --------------------------------- nchar(y) (`actual`) not identical to 51328L (`expected`). `actual`: 47081 `expected`: 51328 -- Failure ('test_pmi.R:32:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- nrow(a_min) (`actual`) not identical to nrow(b_min) (`expected`). `actual`: 982 `expected`: 1143 -- Failure ('test_pmi.R:33:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_1"]] (`actual`) not identical to b_min[["a_word"]] (`expected`). `actual[4:9]`: "!" "!" "!" "\"" "\"" "\"" `expected[4:11]`: "!" "!" "!" "!" "!" "\"" "\"" "\"" `actual[24:29]`: ")" ")" ")" "," "," "," `expected[26:32]`: ")" ")" ")" "," "," "," "," `actual[44:49]`: "," "," "," "-" and 2 more... `expected[47:58]`: "," "," "," "," "," "," "," "," "," "-" ... `actual[55:60]`: "-" "-" "-" "." "." "." `expected[64:71]`: "-" "-" "-" "." "." "." "." "." actual | expected [101] ":" | ":" [112] [102] ":" | ":" [113] [103] ":" | ":" [114] - ":" [115] - "ffentlichen" [116] - "ber" [117] [104] "?" | "?" [118] [105] "?" | "?" [119] [106] "?" | "?" [120] [107] "?" | "?" [121] ... ... ... and 6 more ... actual | expected [114] "Arbeit" | "Arbeit" [129] [115] "Arbeit" | "Arbeit" [130] [116] "Arbeitnehmer" | "Arbeitnehmer" [131] - "Arbeitspltze" [132] [117] "Auch" | "Auch" [133] [118] "Auch" | "Auch" [134] [119] "Aufbau" | "Aufbau" [135] [120] "Aufgabe" | "Aufgabe" [136] [121] "Auswirkungen" | "Auswirkungen" [137] - "Brger" [138] ... ... ... and 5 more ... `actual[138:143]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" `expected[156:163]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" "Das" "Das" actual | expected [148] "Dazu" | "Dazu" [168] [149] "Deshalb" | "Deshalb" [169] [150] "Deshalb" | "Deshalb" [170] - "Deshalb" [171] [151] "Deswegen" | "Deswegen" [172] [152] "Deswegen" | "Deswegen" [173] - "Deutschland" [174] [153] "Deutschland" | "Deutschland" [175] [154] "Deutschland" | "Deutschland" [176] [155] "Die" | "Die" [177] `actual[166:171]`: "Es" "Es" "Euro" "FDP" "FDP" "Familie" `expected[188:194]`: "Es" "Es" "Euro" "Flle" "FDP" "FDP" "Familie" actual | expected [178] "Frage" | "Frage" [201] [179] "Fragen" | "Fragen" [202] [180] "Frau" | "Frau" [203] - "Freiheit" [204] - "GRNEN" [205] - "GRNEN" [206] [181] "Gemeinsam" | "Gemeinsam" [207] [182] "Geschichte" | "Geschichte" [208] [183] "Gesetz" | "Gesetz" [209] [184] "Gesundheit" | "Gesundheit" [210] ... ... ... and 10 more ... `actual[196:201]`: "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `expected[225:231]`: "Herr" "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `actual[205:210]`: "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" `expected[235:242]`: "Ich" "Ich" "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" actual | expected [223] "Jetzt" | "Jetzt" [255] [224] "Jetzt" | "Jetzt" [256] [225] "Jung" | "Jung" [257] - "Knnen" [258] [226] "Kauder" | "Kauder" [259] [227] "Kinder" | "Kinder" [260] [228] "Kinder" | "Kinder" [261] actual | expected [244] "Kollegin" | "Kollegin" [277] [245] "Kommunen" | "Kommunen" [278] [246] "Konzept" | "Konzept" [279] - "Konzept" [280] [247] "Kraft" | "Kraft" [281] [248] "Kraft" | "Kraft" [282] [249] "Krise" | "Krise" [283] [250] "Krise" | "Krise" [284] - "Lndern" [285] [251] "Lafontaine" | "Lafontaine" [286] ... ... ... and 7 more ... actual | expected [269] "Naturschutz" | "Naturschutz" [305] [270] "Nicht" | "Nicht" [306] [271] "Norbert" | "Norbert" [307] - "Norbert" [308] [272] "Nur" | "Nur" [309] [273] "Opposition" | "Opposition" [310] [274] "Ordnung" | "Ordnung" [311] [275] "Partei" | "Partei" [312] [276] "Pothmer" | "Pothmer" [313] - "Prsident" [314] ... ... ... and 23 more ... actual | expected [306] "Sie" | "Sie" [350] [307] "Sie" | "Sie" [351] [308] "Sie" | "Sie" [352] - "Sittenwidrige" [353] [309] "So" | "So" [354] [310] "So" | "So" [355] - "Solidaritt" [356] - "Solidaritt" [357] [311] "Spiel" | "Spiel" [358] - "Strke" [359] ... ... ... and 10 more ... actual | expected [326] "Uhl" | "Uhl" [375] [327] "Uhr" | "Uhr" [376] [328] "Umso" | "Umso" [377] - "Vernderung" [378] [329] "Verbraucher" | "Verbraucher" [379] [330] "Versicherten" - "Verfgung" [380] [331] "Vertrag" - "Versicherten" [381] [332] "Vertreter" - "Vertrag" [382] [333] "Von" - "Vertreter" [383] [334] "Vor" - "Von" [384] ... ... ... and 170 more ... actual | expected [515] "der" | "der" [565] [516] "der" | "der" [566] [517] "der" | "der" [567] [518] "des" - "der" [568] [519] "des" - "der" [569] [520] "deshalb" - "der" [570] [521] "deshalb" - "der" [571] [522] "deutlich" - "der" [572] [523] "deutschen" - "der" [573] [524] "deutschen" - "der" [574] ... ... ... and 31 more ... actual | expected [560] "die" | "die" [610] [561] "die" | "die" [611] [562] "die" | "die" [612] [563] "diese" - "die" [613] [564] "diesem" - "die" [614] [565] "dieser" - "die" [615] [566] "dieser" - "die" [616] [567] "dieses" - "die" [617] [568] "dieses" - "die" [618] [569] "dieses" - "die" [619] ... ... ... and 129 more ... actual | expected [640] "gefordert" | "gefordert" [751] [641] "gegeben" | "gegeben" [752] [642] "gegen" | "gegen" [753] - "gehrt" [754] - "gehrt" [755] [643] "geht" | "geht" [756] [644] "gekommen" | "gekommen" [757] [645] "gelesen" | "gelesen" [758] actual | expected [652] "gemacht" | "gemacht" [765] [653] "gemeint" | "gemeint" [766] [654] "genommen" | "genommen" [767] - "gerade" [768] [655] "gerade" | "gerade" [769] [656] "gerecht" | "gerecht" [770] [657] "gerecht" | "gerecht" [771] actual | expected [667] "gibt" | "gibt" [781] [668] "gibt" | "gibt" [782] [669] "globalen" | "globalen" [783] - "groen" [784] [670] "gut" | "gut" [785] - "gut" [786] [671] "gute" | "gute" [787] - "hren" [788] [672] "haben" | "haben" [789] [673] "haben" | "haben" [790] ... ... ... and 1 more ... `actual[719:724]`: "in" "in" "in" "investieren" "ist" "ist" `expected[836:842]`: "in" "in" "in" "insbesondere" "investieren" "ist" "ist" actual | expected [728] "ist" | "ist" [846] [729] "ist" | "ist" [847] [730] "ist" | "ist" [848] - "ist" [849] [731] "jeden" | "jeden" [850] [732] "jeden" | "jeden" [851] [733] "jeder" | "jeder" [852] [734] "jetzt" | "jetzt" [853] [735] "jetzt" | "jetzt" [854] [736] "junge" | "junge" [855] ... ... ... and 5 more ... `actual[742:747]`: "keine" "kommt" "konnten" "legen" "lesen" "letzte" `expected[863:869]`: "keine" "kommt" "konnten" "leben" "legen" "lesen" "letzte" actual | expected [751] "liegen" | "liegen" [873] [752] "liegt" | "liegt" [874] [753] "liegt" | "liegt" [875] - "mchte" [876] - "mglich" [877] - "mglichst" [878] - "mssen" [879] - "mssen" [880] - "mssen" [881] [754] "machen" | "machen" [882] ... ... ... and 5 more ... actual | expected [768] "muss" | "muss" [898] [769] "muss" | "muss" [899] [770] "muss" | "muss" [900] - "nchsten" [901] - "nmlich" [902] - "nmlich" [903] - "nmlich" [904] [771] "nach" | "nach" [905] [772] "nach" | "nach" [906] [773] "neben" | "neben" [907] ... ... ... and 5 more ... `actual[835:840]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" `expected[971:977]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" "sie" actual | expected [859] "sollten" | "sollten" [996] [860] "sozialen" | "sozialen" [997] [861] "spricht" | "spricht" [998] - "strker" [999] [862] "stark" | "stark" [1000] [863] "steht" | "steht" [1001] [864] "steht" | "steht" [1002] actual | expected [867] "stellen" | "stellen" [1005] [868] "stellen" | "stellen" [1006] [869] "stellt" | "stellt" [1007] - "stimmt" [1008] - "stoen" [1009] [870] "streiten" | "streiten" [1010] - "trgt" [1011] [871] "tun" | "tun" [1012] [872] "tut" | "tut" [1013] [873] "um" | "um" [1014] `actual[890:895]`: "und" "und" "und" "uns" "uns" "uns" `expected[1031:1038]`: "und" "und" "und" "und" "und" "uns" "uns" "uns" actual | expected [898] "unserer" | "unserer" [1041] [899] "unserer" | "unserer" [1042] [900] "unternehmen" | "unternehmen" [1043] - "untersttzt" [1044] - "vllig" [1045] [901] "vereinbart" | "vereinbart" [1046] [902] "vereinbart" | "vereinbart" [1047] [903] "vereinbart" | "vereinbart" [1048] [904] "vereinbart" | "vereinbart" [1049] [905] "verhindern" | "verhindern" [1050] ... ... ... and 8 more ... actual | expected [918] "von" | "von" [1065] [919] "von" | "von" [1066] [920] "von" | "von" [1067] - "von" [1068] [921] "vor" | "vor" [1069] [922] "voran" | "voran" [1070] [923] "voranbringen" | "voranbringen" [1071] [924] "vorgenommen" | "vorgenommen" [1072] [925] "vorgenommen" | "vorgenommen" [1073] [926] "vorstellen" | "vorstellen" [1074] ... ... ... and 6 more ... `actual[931:936]`: "was" "weg" "weiter" "werden" "werden" "wert" `expected[1082:1088]`: "was" "weg" "weiter" "werden" "werden" "werden" "wert" actual | expected [939] "wie" | "wie" [1091] [940] "wie" | "wie" [1092] [941] "wie" | "wie" [1093] - "wieder" [1094] [942] "will" | "will" [1095] [943] "wir" | "wir" [1096] [944] "wir" | "wir" [1097] [945] "wir" | "wir" [1098] [946] "wir" | "wir" [1099] [947] "wir" | "wir" [1100] ... ... ... and 4 more ... actual | expected [961] "wollen" | "wollen" [1115] [962] "wollen" | "wollen" [1116] [963] "wollen" | "wollen" [1117] - "zahlen" [1118] - "zu" [1119] - "zu" [1120] - "zu" [1121] - "zu" [1122] [964] "zu" | "zu" [1123] [965] "zu" | "zu" [1124] ... ... ... and 1 more ... actual | expected [973] "zu" | "zu" [1132] [974] "zu" | "zu" [1133] [975] "zu" | "zu" [1134] - "zu" [1135] [976] "zugunsten" | "zugunsten" [1136] [977] "zum" | "zum" [1137] [978] "zum" | "zum" [1138] [979] "zur" | "zur" [1139] [980] "zur" | "zur" [1140] - "zurck" [1141] ... ... ... and 2 more ... -- Failure ('test_pmi.R:34:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_2"]] (`actual`) not identical to b_min[["b_word"]] (`expected`). `actual[1:5]`: "Aber" "Dr" "Lieber" "Renate" "So" `expected[1:7]`: "Aber" "Dr" "Fr" "Hrt" "Lieber" "Renate" "So" actual | expected [29] "Naturschutz" | "Naturschutz" [31] [30] "Wachstum" | "Wachstum" [32] [31] "bereits" | "bereits" [33] - "drfen" [34] [32] "denn" | "denn" [35] [33] "eines" | "eines" [36] [34] "erst" | "erst" [37] [35] "gesagt" | "gesagt" [38] [36] "gibt" | "gibt" [39] - "htten" [40] ... ... ... and 16 more ... actual | expected [66] "Darin" | "Darin" [75] [67] "Dennoch" | "Dennoch" [76] [68] "Einige" | "Einige" [77] - "Fnftens" [78] [69] "Gemeinsam" | "Gemeinsam" [79] [70] "Gestern" | "Gestern" [80] [71] "Hans" | "Hans" [81] actual | expected [79] "Oder" | "Oder" [89] [80] "Oskar" | "Oskar" [90] [81] "Renate" | "Renate" [91] - "Schnen" [92] [82] "Schauen" | "Schauen" [93] [83] "Stichwort" | "Stichwort" [94] [84] "Uns" | "Uns" [95] actual | expected [98] "An" | "An" [109] [99] "Ausschuss" | "Ausschuss" [110] [100] "Jawohl" | "Jawohl" [111] - "Natrlich" [112] [101] "Uns" | "Uns" [113] [102] "ein" | "ein" [114] [103] "mehr" | "mehr" [115] - "Hand" [116] - "diesen" [117] [104] "Dazu" | "Dazu" [118] ... ... ... and 8 more ... actual | expected [113] "der" | "der" [128] [114] "im" | "im" [129] [115] "zu" | "zu" [130] - "und" [131] [116] "und" | "und" [132] [117] "da" | "da" [133] [118] "ich" | "ich" [134] [119] "Ost" | "Ost" [135] [120] "ist" | "ist" [136] [121] "der" | "der" [137] ... ... ... and 7 more ... actual | expected [140] "geht" | "geht" [158] [141] "Gegenteil" | "Gegenteil" [159] [142] "Geld" | "Geld" [160] - "knnen" [161] [143] "scheint" | "scheint" [162] - "wrde" [163] [144] "zeigt" | "zeigt" [164] [145] "Sie" | "Sie" [165] [146] "wir" | "wir" [166] actual | expected [148] "werden" | "werden" [168] [149] "brauchen" | "brauchen" [169] [150] "haben" | "haben" [170] - "mssen" [171] [151] "," | "," [172] [152] "wollen" | "wollen" [173] - "fr" [174] [153] "im" | "im" [175] [154] "soll" | "soll" [176] [155] "Bundeswehr" | "Bundeswehr" [177] `actual[166:171]`: "gab" "sollte" "sind" "-" "Renate" "und" `expected[188:194]`: "gab" "sollte" "sind" "von" "-" "Renate" "und" actual | expected [178] "nach" | "nach" [201] [179] "," | "," [202] [180] "Pothmer" | "Pothmer" [203] - "fr" [204] - "Jrgen" [205] - "Zuruf" [206] [181] "mit" | "mit" [207] [182] "unseres" | "unseres" [208] [183] "zur" | "zur" [209] [184] "," | "," [210] ... ... ... and 17 more ... actual | expected [200] "haben" | "haben" [230] [201] "ist" | "ist" [231] [202] "Haus" | "Haus" [232] - "erffne" [233] - "fge" [234] [203] "fordere" | "fordere" [235] [204] "gebe" | "gebe" [236] [205] "gratuliere" | "gratuliere" [237] `actual[223:228]`: "kommt" "wollen" "." ":" "." "im" `expected[255:261]`: "kommt" "wollen" "." "Sie" ":" "." "im" actual | expected [244] "Piltz" | "Piltz" [277] [245] "in" | "in" [278] [246] "der" | "der" [279] - "fr" [280] [247] "," | "," [281] [248] "treten" | "treten" [282] [249] "," | "," [283] [250] "in" | "in" [284] - "." [285] [251] "[" | "[" [286] ... ... ... and 7 more ... actual | expected [269] "und" | "und" [305] [270] "nur" | "nur" [306] [271] "Lammert" | "Lammert" [307] - "Rttgen" [308] [272] "so" | "so" [309] [273] "zu" | "zu" [310] [274] "." | "." [311] [275] "," | "," [312] [276] "," | "," [313] - "," [314] ... ... ... and 15 more ... actual | expected [291] "!" | "!" [332] [292] "-" | "-" [333] [293] "Ihren" | "Ihren" [334] - "drfen" [335] [294] "der" | "der" [336] [295] "einfach" | "einfach" [337] - "gefhrden" [338] [296] "heute" | "heute" [339] - "kndigen" [340] [297] "lassen" | "lassen" [341] ... ... ... and 2 more ... actual | expected [306] "vielleicht" | "vielleicht" [350] [307] "vor" | "vor" [351] [308] "wirklich" | "wirklich" [352] - "Lhne" [353] [309] "viel" | "viel" [354] [310] "wie" | "wie" [355] - "," [356] - "und" [357] [311] "." | "." [358] - "fhren" [359] ... ... ... and 10 more ... actual | expected [327] "." | "." [376] [328] "wichtiger" | "wichtiger" [377] [329] "," | "," [378] [330] "." - "," [379] [331] "von" - "stehen" [380] [332] "der" - "." [381] [333] "den" - "von" [382] [334] "allen" - "der" [383] [335] "an" - "den" [384] [336] "des" - "allen" [385] ... ... ... and 365 more ... `actual[640:645]`: "haben" "," "eine" "nur" "." "." `expected[751:758]`: "haben" "," "eine" "ein" "zu" "nur" "." "." `actual[652:657]`: "und" "ist" "werden" "nicht" "," "zu" `expected[765:771]`: "und" "ist" "werden" "fr" "nicht" "," "zu" actual | expected [667] "in" | "in" [781] [668] "keinen" | "keinen" [782] [669] "Wettbewerb" | "Wettbewerb" [783] - "Herausforderungen" [784] - "fr" [785] [670] "ist" | "ist" [786] [671] "," | "," [787] - "," [788] [672] ";" | ";" [789] [673] "als" | "als" [790] ... ... ... and 1 more ... `actual[719:724]`: "ihren" "jedem" "welchem" "," "also" "auf" `expected[836:842]`: "ihren" "jedem" "welchem" "fr" "," "also" "auf" `actual[726:731]`: "dies" "einfach" "leider" "wie" "zwar" "," `expected[844:850]`: "dies" "einfach" "leider" "nmlich" "wie" "zwar" "," `actual[734:739]`: "auch" "eine" "Menschen" "auch" "das" "mich" `expected[853:860]`: "auch" "eine" "Menschen" "es" "." "auch" "das" "mich" `actual[742:747]`: "neuen" "der" "." "wir" ":" "Woche" `expected[863:869]`: "neuen" "der" "." "knnen" "wir" ":" "Woche" actual | expected [751] "nicht" | "nicht" [873] [752] "," | "," [874] [753] "." | "." [875] - "Sie" [876] - "." [877] - "viel" [878] - "-" [879] - "aber" [880] - "sie" [881] [754] ";" | ";" [882] ... ... ... and 5 more ... actual | expected [768] "endlich" | "endlich" [898] [769] "im" | "im" [899] [770] "und" | "und" [900] - "Wochen" [901] - "den" [902] - "fr" [903] - "nicht" [904] [771] "Ihnen" | "Ihnen" [905] [772] "einem" | "einem" [906] [773] "den" | "den" [907] ... ... ... and 5 more ... `actual[835:840]`: "wie" "sein" "auch" "hat" "heute" "ihre" `expected[971:977]`: "wie" "sein" "auch" "fr" "hat" "heute" "ihre" `actual[859:864]`: "." "Zusammenhalt" "nun" "gemacht" ":" "dazu" `expected[996:1002]`: "." "Zusammenhalt" "nun" "als" "gemacht" ":" "dazu" actual | expected [866] "." | "." [1004] [867] "Sie" | "Sie" [1005] [868] "und" | "und" [1006] - "." [1007] - "fr" [1008] [869] "." | "." [1009] [870] "." | "." [1010] - "." [1011] [871] "?" | "?" [1012] [872] "mir" | "mir" [1013] ... ... ... and 1 more ... actual | expected [880] "Reaktorsicherheit" | "Reaktorsicherheit" [1021] [881] "als" | "als" [1022] [882] "anderswo" | "anderswo" [1023] - "drfen" [1024] [883] "da" | "da" [1025] [884] "dieser" | "dieser" [1026] [885] "einer" | "einer" [1027] - "mssen" [1028] [886] "mittlere" | "mittlere" [1029] [887] "nach" | "nach" [1030] ... ... ... and 1 more ... actual | expected [898] "Koalitionsvereinbarung" | "Koalitionsvereinbarung" [1041] [899] "Verfassung" | "Verfassung" [1042] [900] "," | "," [1043] - "." [1044] - "klar" [1045] [901] "," | "," [1046] [902] "." | "." [1047] [903] "haben" | "haben" [1048] [904] "worden" | "worden" [1049] - "." [1050] ... ... ... and 14 more ... `actual[924:929]`: "," "." "," "bei" "eine" "jetzt" `expected[1072:1080]`: "," "." "," "auch" "die" "die" "bei" "eine" "jetzt" actual | expected [933] "als" | "als" [1084] [934] "!" | "!" [1085] [935] "deshalb" | "deshalb" [1086] - "prfen" [1087] [936] "." | "." [1088] [937] "ist" | "ist" [1089] [938] "Signal" | "Signal" [1090] [939] "sich" | "sich" [1091] [940] "viel" | "viel" [1092] [941] "weit" | "weit" [1093] ... ... ... and 10 more ... actual | expected [961] "einen" | "einen" [1115] [962] "in" | "in" [1116] [963] "nicht" | "nicht" [1117] - "mssen" [1118] - "berwinden" [1119] [964] "Ende" | "Ende" [1120] [965] "arbeiten" | "arbeiten" [1121] [966] "beteiligen" | "beteiligen" [1122] [967] "bleiben" | "bleiben" [1123] [968] "entlasten" | "entlasten" [1124] ... ... ... and 12 more ... `actual[979:982]`: "Kurzarbeit" "Stabilisierung" "," "in" `expected[1139:1143]`: "Kurzarbeit" "Stabilisierung" "," "," "in" -- Error ('test_subcorpus.R:55:5'): generate subcorpus ------------------------- Error in `UseMethod("size")`: no applicable method for 'size' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_identical(size(p), size(sc)) at test_subcorpus.R:55:5 2. | \-testthat::quasi_label(enquo(expected), expected.label, arg = "expected") 3. | \-rlang::eval_bare(expr, quo_get_env(quo)) 4. +-polmineR::size(sc) 5. \-polmineR::size(sc) [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] Error: Test failures Execution halted * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: 1 ERROR, 1 NOTE See '/tmp/th798/16179931/R-devel/1048/polmineR.Rcheck/00check.log' for details. [1] "2025-03-29 01:28:37 MST" [1] "2025-03-29 01:28:37 MST" Installing package into '/tmp/th798/16179931/R-devel/1048/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.99' ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16179931/R-devel/1048/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-29 01:29:15 MST" * using log directory '/tmp/th798/16179931/R-devel/1048/polmineR.Rcheck' * using R Under development (unstable) (2025-03-28 r88067) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'polmineR/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'polmineR' version '0.8.9' * package encoding: UTF-8 * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'polmineR' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... NOTE Missing dependency on R >= 4.1.0 because package code uses the pipe |> or function shorthand \(...) syntax added in R 4.1.0. File(s) using such syntax: 'hits.R' 'size.R' 'utils.R' * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code 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 whether startup messages can be suppressed ... 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 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 installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' ERROR Running the tests in 'tests/testthat.R' failed. Complete output: > library(testthat) > library(polmineR) WARNING: The locale of the R session is 'C': The character set is not specified. You may encounter problems when working with corpora with a latin-1 or UTF-8 encoding that include special characters. polmineR is throttled to use 2 cores as required by CRAN Repository Policy. To get full performance: * Use `n_cores <- parallel::detectCores()` to detect the number of cores available on your machine * Set number of cores using `options('polmineR.cores' = n_cores - 1)` and `data.table::setDTthreads(n_cores - 1)` Attaching package: 'polmineR' The following object is masked from 'package:testthat': context The following object is masked from 'package:base': use > use("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) > > test_check("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i get token ids v get token ids [28ms] i get struc ids v get struc ids [57ms] i drop tokens outside strucs v drop tokens outside strucs [49ms] i get unique s-attribute values v get unique s-attribute values [294ms] i counting token per doc v counting token per doc [231ms] i decode strucs v decode strucs [24ms] i decode and recode token ids v decode and recode token ids [24ms] i adjust ids v adjust ids [24ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [22ms] i get token ids v get token ids [56ms] i get struc ids v get struc ids [62ms] i drop tokens outside strucs v drop tokens outside strucs [32ms] i get unique s-attribute values v get unique s-attribute values [27ms] i generate unique document ids v generate unique document ids [120ms] i counting token per doc v counting token per doc [61ms] i decode tokens and generate factor v decode tokens and generate factor [73ms] i prepare row and column labels v prepare row and column labels [31ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [33ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [64ms] i assign names v assign names [10ms] i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i get token ids v get token ids [56ms] i get struc ids v get struc ids [59ms] i drop tokens outside strucs v drop tokens outside strucs [29ms] i get unique s-attribute values v get unique s-attribute values [25ms] i generate unique document ids v generate unique document ids [120ms] i counting token per doc v counting token per doc [62ms] i decode tokens and generate factor v decode tokens and generate factor [74ms] i prepare row and column labels v prepare row and column labels [33ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [25ms] v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i distinct dates: 2 i subsetting by date i bundle class: subcorpus_bundle i subsetting by date i objects in bundle: plpr_subcorpus i subsetting by date i s-attribute for splitting ("date") is sibling of s-attribute "date" i subsetting by date i s-attribute "date" has values: yes i subsetting by date i get list of regions v get list of regions [12ms] i subsetting by date i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [37ms] i subsetting by date v subsetting by date [139ms] i generating speeches i generating names v generating names [235ms] i reorder objects v reorder objects [25ms] i coercing partitions to plpr_subcorpus v coercing partitions to plpr_subcorpus [149ms] ... get cpos and strucs i distinct dates detected: 1 i generating speeches v generating speeches [518ms] i generating names v generating names [64ms] i reordering partitions v reordering partitions [25ms] i coercing partitions to plpr_partitions v coercing partitions to plpr_partitions [24ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... creating data.table with corpus positions ... adding tokens ... generating phrases ... counting ... creating bundle of count objects v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i decoding p-attribute: word v decoding p-attribute: word [171ms] i decoding p-attribute: pos v decoding p-attribute: pos [130ms] i decoding s-attribute: interjection v decoding s-attribute: interjection [182ms] i decoding s-attribute: date v decoding s-attribute: date [184ms] i decoding s-attribute: party v decoding s-attribute: party [216ms] i decoding s-attribute: speaker v decoding s-attribute: speaker [216ms] i decoding s-attribute: protocol_date v decoding s-attribute: protocol_date [154ms] i decoding s-attribute: protocol_lp v decoding s-attribute: protocol_lp [161ms] i decoding s-attribute: role v decoding s-attribute: role [169ms] i assembling data.table v assembling data.table [34ms] i decoding p-attribute: word v decoding p-attribute: word [191ms] i decoding s-attribute: party v decoding s-attribute: party [176ms] i assembling data.table v assembling data.table [12ms] i decoding p-attribute: word v decoding p-attribute: word [172ms] i assembling data.table v assembling data.table [12ms] i decoding p_attribute "word" v decoding p_attribute "word" [60ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: UNGA ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [20ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word i coercion to `partition_bundle` class v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs i s-attribute "date" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "places" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 11) v instantiate objects (n = 11) [18ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [12ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [20ms] i assign names v assign names [10ms] v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i getting sizes ... getting sizes ! corpus loaded multiple times with following registries: i getting sizes * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp i getting sizes * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i getting sizes i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i getting sizes v getting sizes [37ms] i calculate frequencies v calculate frequencies [16ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' No hits for query: asdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' No hits for query: "asdfasdfasdfasd.*" ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting corpus positions ... number of hits: 21 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... number of hits: 7 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... no hits for query: asdfasdf ... no matches for query (or no matches left after applying stoplist/positivelist) ... getting corpus positions ... no matches for query (or no matches left after applying stoplist/positivelist) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... dropping nodes ... counting tokens in context ... creating new index for hits ... creating new index for tokens ... putting together matrix ... filtering by positivelist i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [25ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [11ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 124 plpr_partition objects v instantiate 124 plpr_partition objects [38ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [14ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [38ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [14ms] i s-attributes not ordered according to tree structure (inefficient) i decode s-attribute "party" v decode s-attribute "party" [37ms] i merge corpus position results for s-attribute "party" v merge corpus position results for s-attribute "protocol_date" [85ms] i decode s-attribute "protocol_date" v decode s-attribute "protocol_date" [53ms] i merge corpus position results for s-attribute "protocol_date" v merge corpus position results for s-attribute "speaker" [87ms] i decode s-attribute "speaker" v decode s-attribute "speaker" [75ms] i merge corpus position results for s-attribute "speaker" v merge corpus position results for s-attribute "speaker" [91ms] i aggregate results and get sizes v aggregate results and get sizes [58ms] i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [14ms] i order of s-attributes starts with deep descendents i get regions for s-attribute "party" v get regions for s-attribute "party" [21ms] i get values for s-attribute "speaker" v get values for s-attribute "protocol_date" [41ms] i get values for s-attribute "protocol_date" v get values for s-attribute "protocol_date" [39ms] i aggregate region sizes v aggregate region sizes [30ms] i aggregate results and get sizes v aggregate results and get sizes [12ms] ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [21ms] i assign names v assign names [10ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i keep only matches for 3 values provided v keep only matches for 3 values provided [13ms] i instantiate objects (n = 3) v instantiate objects (n = 3) [17ms] i assign names v assign names [10ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is descendent of s-attribute "protocol_date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [25ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [24ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [34ms] i assign names v assign names [11ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types Error in .checkTypos(e, names_x) : Object 'foo' not found amongst [struc, cpos_left, cpos_right, id] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [9ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [10ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [20ms] i assign names v assign names [13ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [14ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [22ms] i assign names v assign names [12ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [13ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [20ms] i assign names v assign names [11ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [13ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [21ms] i assign names v assign names [11ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [13ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [22ms] i assign names v assign names [11ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "speaker" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [22ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [19ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [38ms] i assign names v assign names [12ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [18ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [37ms] i assign names v assign names [12ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [18ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [37ms] i assign names v assign names [12ms] ... preparing struc table ... now performing counts ... finalizing tables i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [15ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [40ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [15ms] i instantiate 77 plpr_subcorpus objects v instantiate 77 plpr_subcorpus objects [33ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 77 plpr_partition objects v instantiate 77 plpr_partition objects [31ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [13ms] i instantiate 5 plpr_subcorpus objects v instantiate 5 plpr_subcorpus objects [19ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [13ms] i instantiate 5 plpr_partition objects v instantiate 5 plpr_partition objects [20ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] i s-attribute "protocol_date" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [18ms] i assign names v assign names [11ms] i split by s-attribute "protocol_date" i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("protocol_date") is ancestor of s-attribute "speaker" i s-attribute "protocol_date" has values: yes i get list of regions v get list of regions [12ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [22ms] i objects in bundle after subsetting is 2 (3 less than before) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... applying stoplist ... number of hits dropped due to stoplist: 13 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... filtering by positivelist ... number of hits dropped due to positivelist: 65 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... decode p-attribute: word ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] == Skipped tests (18) ========================================================== * On CRAN (10): 'test_as.data.table.R:9:5', 'test_as.markdown.R:13:5', 'test_as.markdown.R:73:5', 'test_cooccurrences.R:96:5', 'test_cooccurrences.R:167:5', 'test_dispersion.R:43:5', 'test_get_token_stream.R:100:5', 'test_get_token_stream.R:138:5', 'test_html.R:9:5', 'test_subcorpus_bundle.R:187:5' * empty test (2): 'test_count.R:125:1', 'test_subcorpus.R:198:1' * knowingly not working (1): 'test_as.speeches.R:46:5' * use("GermaParl2") is not TRUE (5): 'test_as.speeches.R:86:5', 'test_hits.R:26:5', 'test_split.R:35:5', 'test_split.R:83:5', 'test_subcorpus.R:159:5' == Failed tests ================================================================ -- Failure ('test_chisquare.R:38:7'): check chisquare computation -------------- `chisquare_value_selfmade` (`actual`) not equal to `chisquare_value_fn` (`expected`). `actual`: Inf `expected`: 56 -- Failure ('test_get_token_stream.R:88:5'): get_token_stream()-method for matrix input -- nchar(ts_rm) (`actual`) not identical to 159L (`expected`). `actual`: 154 `expected`: 159 -- Failure ('test_get_token_stream.R:131:5'): --------------------------------- nchar(y) (`actual`) not identical to 51328L (`expected`). `actual`: 47081 `expected`: 51328 -- Failure ('test_pmi.R:32:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- nrow(a_min) (`actual`) not identical to nrow(b_min) (`expected`). `actual`: 982 `expected`: 1143 -- Failure ('test_pmi.R:33:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_1"]] (`actual`) not identical to b_min[["a_word"]] (`expected`). `actual[4:9]`: "!" "!" "!" "\"" "\"" "\"" `expected[4:11]`: "!" "!" "!" "!" "!" "\"" "\"" "\"" `actual[24:29]`: ")" ")" ")" "," "," "," `expected[26:32]`: ")" ")" ")" "," "," "," "," `actual[44:49]`: "," "," "," "-" and 2 more... `expected[47:58]`: "," "," "," "," "," "," "," "," "," "-" ... `actual[55:60]`: "-" "-" "-" "." "." "." `expected[64:71]`: "-" "-" "-" "." "." "." "." "." actual | expected [101] ":" | ":" [112] [102] ":" | ":" [113] [103] ":" | ":" [114] - ":" [115] - "ffentlichen" [116] - "ber" [117] [104] "?" | "?" [118] [105] "?" | "?" [119] [106] "?" | "?" [120] [107] "?" | "?" [121] ... ... ... and 6 more ... actual | expected [114] "Arbeit" | "Arbeit" [129] [115] "Arbeit" | "Arbeit" [130] [116] "Arbeitnehmer" | "Arbeitnehmer" [131] - "Arbeitspltze" [132] [117] "Auch" | "Auch" [133] [118] "Auch" | "Auch" [134] [119] "Aufbau" | "Aufbau" [135] [120] "Aufgabe" | "Aufgabe" [136] [121] "Auswirkungen" | "Auswirkungen" [137] - "Brger" [138] ... ... ... and 5 more ... `actual[138:143]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" `expected[156:163]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" "Das" "Das" actual | expected [148] "Dazu" | "Dazu" [168] [149] "Deshalb" | "Deshalb" [169] [150] "Deshalb" | "Deshalb" [170] - "Deshalb" [171] [151] "Deswegen" | "Deswegen" [172] [152] "Deswegen" | "Deswegen" [173] - "Deutschland" [174] [153] "Deutschland" | "Deutschland" [175] [154] "Deutschland" | "Deutschland" [176] [155] "Die" | "Die" [177] `actual[166:171]`: "Es" "Es" "Euro" "FDP" "FDP" "Familie" `expected[188:194]`: "Es" "Es" "Euro" "Flle" "FDP" "FDP" "Familie" actual | expected [178] "Frage" | "Frage" [201] [179] "Fragen" | "Fragen" [202] [180] "Frau" | "Frau" [203] - "Freiheit" [204] - "GRNEN" [205] - "GRNEN" [206] [181] "Gemeinsam" | "Gemeinsam" [207] [182] "Geschichte" | "Geschichte" [208] [183] "Gesetz" | "Gesetz" [209] [184] "Gesundheit" | "Gesundheit" [210] ... ... ... and 10 more ... `actual[196:201]`: "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `expected[225:231]`: "Herr" "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `actual[205:210]`: "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" `expected[235:242]`: "Ich" "Ich" "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" actual | expected [223] "Jetzt" | "Jetzt" [255] [224] "Jetzt" | "Jetzt" [256] [225] "Jung" | "Jung" [257] - "Knnen" [258] [226] "Kauder" | "Kauder" [259] [227] "Kinder" | "Kinder" [260] [228] "Kinder" | "Kinder" [261] actual | expected [244] "Kollegin" | "Kollegin" [277] [245] "Kommunen" | "Kommunen" [278] [246] "Konzept" | "Konzept" [279] - "Konzept" [280] [247] "Kraft" | "Kraft" [281] [248] "Kraft" | "Kraft" [282] [249] "Krise" | "Krise" [283] [250] "Krise" | "Krise" [284] - "Lndern" [285] [251] "Lafontaine" | "Lafontaine" [286] ... ... ... and 7 more ... actual | expected [269] "Naturschutz" | "Naturschutz" [305] [270] "Nicht" | "Nicht" [306] [271] "Norbert" | "Norbert" [307] - "Norbert" [308] [272] "Nur" | "Nur" [309] [273] "Opposition" | "Opposition" [310] [274] "Ordnung" | "Ordnung" [311] [275] "Partei" | "Partei" [312] [276] "Pothmer" | "Pothmer" [313] - "Prsident" [314] ... ... ... and 23 more ... actual | expected [306] "Sie" | "Sie" [350] [307] "Sie" | "Sie" [351] [308] "Sie" | "Sie" [352] - "Sittenwidrige" [353] [309] "So" | "So" [354] [310] "So" | "So" [355] - "Solidaritt" [356] - "Solidaritt" [357] [311] "Spiel" | "Spiel" [358] - "Strke" [359] ... ... ... and 10 more ... actual | expected [326] "Uhl" | "Uhl" [375] [327] "Uhr" | "Uhr" [376] [328] "Umso" | "Umso" [377] - "Vernderung" [378] [329] "Verbraucher" | "Verbraucher" [379] [330] "Versicherten" - "Verfgung" [380] [331] "Vertrag" - "Versicherten" [381] [332] "Vertreter" - "Vertrag" [382] [333] "Von" - "Vertreter" [383] [334] "Vor" - "Von" [384] ... ... ... and 170 more ... actual | expected [515] "der" | "der" [565] [516] "der" | "der" [566] [517] "der" | "der" [567] [518] "des" - "der" [568] [519] "des" - "der" [569] [520] "deshalb" - "der" [570] [521] "deshalb" - "der" [571] [522] "deutlich" - "der" [572] [523] "deutschen" - "der" [573] [524] "deutschen" - "der" [574] ... ... ... and 31 more ... actual | expected [560] "die" | "die" [610] [561] "die" | "die" [611] [562] "die" | "die" [612] [563] "diese" - "die" [613] [564] "diesem" - "die" [614] [565] "dieser" - "die" [615] [566] "dieser" - "die" [616] [567] "dieses" - "die" [617] [568] "dieses" - "die" [618] [569] "dieses" - "die" [619] ... ... ... and 129 more ... actual | expected [640] "gefordert" | "gefordert" [751] [641] "gegeben" | "gegeben" [752] [642] "gegen" | "gegen" [753] - "gehrt" [754] - "gehrt" [755] [643] "geht" | "geht" [756] [644] "gekommen" | "gekommen" [757] [645] "gelesen" | "gelesen" [758] actual | expected [652] "gemacht" | "gemacht" [765] [653] "gemeint" | "gemeint" [766] [654] "genommen" | "genommen" [767] - "gerade" [768] [655] "gerade" | "gerade" [769] [656] "gerecht" | "gerecht" [770] [657] "gerecht" | "gerecht" [771] actual | expected [667] "gibt" | "gibt" [781] [668] "gibt" | "gibt" [782] [669] "globalen" | "globalen" [783] - "groen" [784] [670] "gut" | "gut" [785] - "gut" [786] [671] "gute" | "gute" [787] - "hren" [788] [672] "haben" | "haben" [789] [673] "haben" | "haben" [790] ... ... ... and 1 more ... `actual[719:724]`: "in" "in" "in" "investieren" "ist" "ist" `expected[836:842]`: "in" "in" "in" "insbesondere" "investieren" "ist" "ist" actual | expected [728] "ist" | "ist" [846] [729] "ist" | "ist" [847] [730] "ist" | "ist" [848] - "ist" [849] [731] "jeden" | "jeden" [850] [732] "jeden" | "jeden" [851] [733] "jeder" | "jeder" [852] [734] "jetzt" | "jetzt" [853] [735] "jetzt" | "jetzt" [854] [736] "junge" | "junge" [855] ... ... ... and 5 more ... `actual[742:747]`: "keine" "kommt" "konnten" "legen" "lesen" "letzte" `expected[863:869]`: "keine" "kommt" "konnten" "leben" "legen" "lesen" "letzte" actual | expected [751] "liegen" | "liegen" [873] [752] "liegt" | "liegt" [874] [753] "liegt" | "liegt" [875] - "mchte" [876] - "mglich" [877] - "mglichst" [878] - "mssen" [879] - "mssen" [880] - "mssen" [881] [754] "machen" | "machen" [882] ... ... ... and 5 more ... actual | expected [768] "muss" | "muss" [898] [769] "muss" | "muss" [899] [770] "muss" | "muss" [900] - "nchsten" [901] - "nmlich" [902] - "nmlich" [903] - "nmlich" [904] [771] "nach" | "nach" [905] [772] "nach" | "nach" [906] [773] "neben" | "neben" [907] ... ... ... and 5 more ... `actual[835:840]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" `expected[971:977]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" "sie" actual | expected [859] "sollten" | "sollten" [996] [860] "sozialen" | "sozialen" [997] [861] "spricht" | "spricht" [998] - "strker" [999] [862] "stark" | "stark" [1000] [863] "steht" | "steht" [1001] [864] "steht" | "steht" [1002] actual | expected [867] "stellen" | "stellen" [1005] [868] "stellen" | "stellen" [1006] [869] "stellt" | "stellt" [1007] - "stimmt" [1008] - "stoen" [1009] [870] "streiten" | "streiten" [1010] - "trgt" [1011] [871] "tun" | "tun" [1012] [872] "tut" | "tut" [1013] [873] "um" | "um" [1014] `actual[890:895]`: "und" "und" "und" "uns" "uns" "uns" `expected[1031:1038]`: "und" "und" "und" "und" "und" "uns" "uns" "uns" actual | expected [898] "unserer" | "unserer" [1041] [899] "unserer" | "unserer" [1042] [900] "unternehmen" | "unternehmen" [1043] - "untersttzt" [1044] - "vllig" [1045] [901] "vereinbart" | "vereinbart" [1046] [902] "vereinbart" | "vereinbart" [1047] [903] "vereinbart" | "vereinbart" [1048] [904] "vereinbart" | "vereinbart" [1049] [905] "verhindern" | "verhindern" [1050] ... ... ... and 8 more ... actual | expected [918] "von" | "von" [1065] [919] "von" | "von" [1066] [920] "von" | "von" [1067] - "von" [1068] [921] "vor" | "vor" [1069] [922] "voran" | "voran" [1070] [923] "voranbringen" | "voranbringen" [1071] [924] "vorgenommen" | "vorgenommen" [1072] [925] "vorgenommen" | "vorgenommen" [1073] [926] "vorstellen" | "vorstellen" [1074] ... ... ... and 6 more ... `actual[931:936]`: "was" "weg" "weiter" "werden" "werden" "wert" `expected[1082:1088]`: "was" "weg" "weiter" "werden" "werden" "werden" "wert" actual | expected [939] "wie" | "wie" [1091] [940] "wie" | "wie" [1092] [941] "wie" | "wie" [1093] - "wieder" [1094] [942] "will" | "will" [1095] [943] "wir" | "wir" [1096] [944] "wir" | "wir" [1097] [945] "wir" | "wir" [1098] [946] "wir" | "wir" [1099] [947] "wir" | "wir" [1100] ... ... ... and 4 more ... actual | expected [961] "wollen" | "wollen" [1115] [962] "wollen" | "wollen" [1116] [963] "wollen" | "wollen" [1117] - "zahlen" [1118] - "zu" [1119] - "zu" [1120] - "zu" [1121] - "zu" [1122] [964] "zu" | "zu" [1123] [965] "zu" | "zu" [1124] ... ... ... and 1 more ... actual | expected [973] "zu" | "zu" [1132] [974] "zu" | "zu" [1133] [975] "zu" | "zu" [1134] - "zu" [1135] [976] "zugunsten" | "zugunsten" [1136] [977] "zum" | "zum" [1137] [978] "zum" | "zum" [1138] [979] "zur" | "zur" [1139] [980] "zur" | "zur" [1140] - "zurck" [1141] ... ... ... and 2 more ... -- Failure ('test_pmi.R:34:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_2"]] (`actual`) not identical to b_min[["b_word"]] (`expected`). `actual[1:5]`: "Aber" "Dr" "Lieber" "Renate" "So" `expected[1:7]`: "Aber" "Dr" "Fr" "Hrt" "Lieber" "Renate" "So" actual | expected [29] "Naturschutz" | "Naturschutz" [31] [30] "Wachstum" | "Wachstum" [32] [31] "bereits" | "bereits" [33] - "drfen" [34] [32] "denn" | "denn" [35] [33] "eines" | "eines" [36] [34] "erst" | "erst" [37] [35] "gesagt" | "gesagt" [38] [36] "gibt" | "gibt" [39] - "htten" [40] ... ... ... and 16 more ... actual | expected [66] "Darin" | "Darin" [75] [67] "Dennoch" | "Dennoch" [76] [68] "Einige" | "Einige" [77] - "Fnftens" [78] [69] "Gemeinsam" | "Gemeinsam" [79] [70] "Gestern" | "Gestern" [80] [71] "Hans" | "Hans" [81] actual | expected [79] "Oder" | "Oder" [89] [80] "Oskar" | "Oskar" [90] [81] "Renate" | "Renate" [91] - "Schnen" [92] [82] "Schauen" | "Schauen" [93] [83] "Stichwort" | "Stichwort" [94] [84] "Uns" | "Uns" [95] actual | expected [98] "An" | "An" [109] [99] "Ausschuss" | "Ausschuss" [110] [100] "Jawohl" | "Jawohl" [111] - "Natrlich" [112] [101] "Uns" | "Uns" [113] [102] "ein" | "ein" [114] [103] "mehr" | "mehr" [115] - "Hand" [116] - "diesen" [117] [104] "Dazu" | "Dazu" [118] ... ... ... and 8 more ... actual | expected [113] "der" | "der" [128] [114] "im" | "im" [129] [115] "zu" | "zu" [130] - "und" [131] [116] "und" | "und" [132] [117] "da" | "da" [133] [118] "ich" | "ich" [134] [119] "Ost" | "Ost" [135] [120] "ist" | "ist" [136] [121] "der" | "der" [137] ... ... ... and 7 more ... actual | expected [140] "geht" | "geht" [158] [141] "Gegenteil" | "Gegenteil" [159] [142] "Geld" | "Geld" [160] - "knnen" [161] [143] "scheint" | "scheint" [162] - "wrde" [163] [144] "zeigt" | "zeigt" [164] [145] "Sie" | "Sie" [165] [146] "wir" | "wir" [166] actual | expected [148] "werden" | "werden" [168] [149] "brauchen" | "brauchen" [169] [150] "haben" | "haben" [170] - "mssen" [171] [151] "," | "," [172] [152] "wollen" | "wollen" [173] - "fr" [174] [153] "im" | "im" [175] [154] "soll" | "soll" [176] [155] "Bundeswehr" | "Bundeswehr" [177] `actual[166:171]`: "gab" "sollte" "sind" "-" "Renate" "und" `expected[188:194]`: "gab" "sollte" "sind" "von" "-" "Renate" "und" actual | expected [178] "nach" | "nach" [201] [179] "," | "," [202] [180] "Pothmer" | "Pothmer" [203] - "fr" [204] - "Jrgen" [205] - "Zuruf" [206] [181] "mit" | "mit" [207] [182] "unseres" | "unseres" [208] [183] "zur" | "zur" [209] [184] "," | "," [210] ... ... ... and 17 more ... actual | expected [200] "haben" | "haben" [230] [201] "ist" | "ist" [231] [202] "Haus" | "Haus" [232] - "erffne" [233] - "fge" [234] [203] "fordere" | "fordere" [235] [204] "gebe" | "gebe" [236] [205] "gratuliere" | "gratuliere" [237] `actual[223:228]`: "kommt" "wollen" "." ":" "." "im" `expected[255:261]`: "kommt" "wollen" "." "Sie" ":" "." "im" actual | expected [244] "Piltz" | "Piltz" [277] [245] "in" | "in" [278] [246] "der" | "der" [279] - "fr" [280] [247] "," | "," [281] [248] "treten" | "treten" [282] [249] "," | "," [283] [250] "in" | "in" [284] - "." [285] [251] "[" | "[" [286] ... ... ... and 7 more ... actual | expected [269] "und" | "und" [305] [270] "nur" | "nur" [306] [271] "Lammert" | "Lammert" [307] - "Rttgen" [308] [272] "so" | "so" [309] [273] "zu" | "zu" [310] [274] "." | "." [311] [275] "," | "," [312] [276] "," | "," [313] - "," [314] ... ... ... and 15 more ... actual | expected [291] "!" | "!" [332] [292] "-" | "-" [333] [293] "Ihren" | "Ihren" [334] - "drfen" [335] [294] "der" | "der" [336] [295] "einfach" | "einfach" [337] - "gefhrden" [338] [296] "heute" | "heute" [339] - "kndigen" [340] [297] "lassen" | "lassen" [341] ... ... ... and 2 more ... actual | expected [306] "vielleicht" | "vielleicht" [350] [307] "vor" | "vor" [351] [308] "wirklich" | "wirklich" [352] - "Lhne" [353] [309] "viel" | "viel" [354] [310] "wie" | "wie" [355] - "," [356] - "und" [357] [311] "." | "." [358] - "fhren" [359] ... ... ... and 10 more ... actual | expected [327] "." | "." [376] [328] "wichtiger" | "wichtiger" [377] [329] "," | "," [378] [330] "." - "," [379] [331] "von" - "stehen" [380] [332] "der" - "." [381] [333] "den" - "von" [382] [334] "allen" - "der" [383] [335] "an" - "den" [384] [336] "des" - "allen" [385] ... ... ... and 365 more ... `actual[640:645]`: "haben" "," "eine" "nur" "." "." `expected[751:758]`: "haben" "," "eine" "ein" "zu" "nur" "." "." `actual[652:657]`: "und" "ist" "werden" "nicht" "," "zu" `expected[765:771]`: "und" "ist" "werden" "fr" "nicht" "," "zu" actual | expected [667] "in" | "in" [781] [668] "keinen" | "keinen" [782] [669] "Wettbewerb" | "Wettbewerb" [783] - "Herausforderungen" [784] - "fr" [785] [670] "ist" | "ist" [786] [671] "," | "," [787] - "," [788] [672] ";" | ";" [789] [673] "als" | "als" [790] ... ... ... and 1 more ... `actual[719:724]`: "ihren" "jedem" "welchem" "," "also" "auf" `expected[836:842]`: "ihren" "jedem" "welchem" "fr" "," "also" "auf" `actual[726:731]`: "dies" "einfach" "leider" "wie" "zwar" "," `expected[844:850]`: "dies" "einfach" "leider" "nmlich" "wie" "zwar" "," `actual[734:739]`: "auch" "eine" "Menschen" "auch" "das" "mich" `expected[853:860]`: "auch" "eine" "Menschen" "es" "." "auch" "das" "mich" `actual[742:747]`: "neuen" "der" "." "wir" ":" "Woche" `expected[863:869]`: "neuen" "der" "." "knnen" "wir" ":" "Woche" actual | expected [751] "nicht" | "nicht" [873] [752] "," | "," [874] [753] "." | "." [875] - "Sie" [876] - "." [877] - "viel" [878] - "-" [879] - "aber" [880] - "sie" [881] [754] ";" | ";" [882] ... ... ... and 5 more ... actual | expected [768] "endlich" | "endlich" [898] [769] "im" | "im" [899] [770] "und" | "und" [900] - "Wochen" [901] - "den" [902] - "fr" [903] - "nicht" [904] [771] "Ihnen" | "Ihnen" [905] [772] "einem" | "einem" [906] [773] "den" | "den" [907] ... ... ... and 5 more ... `actual[835:840]`: "wie" "sein" "auch" "hat" "heute" "ihre" `expected[971:977]`: "wie" "sein" "auch" "fr" "hat" "heute" "ihre" `actual[859:864]`: "." "Zusammenhalt" "nun" "gemacht" ":" "dazu" `expected[996:1002]`: "." "Zusammenhalt" "nun" "als" "gemacht" ":" "dazu" actual | expected [866] "." | "." [1004] [867] "Sie" | "Sie" [1005] [868] "und" | "und" [1006] - "." [1007] - "fr" [1008] [869] "." | "." [1009] [870] "." | "." [1010] - "." [1011] [871] "?" | "?" [1012] [872] "mir" | "mir" [1013] ... ... ... and 1 more ... actual | expected [880] "Reaktorsicherheit" | "Reaktorsicherheit" [1021] [881] "als" | "als" [1022] [882] "anderswo" | "anderswo" [1023] - "drfen" [1024] [883] "da" | "da" [1025] [884] "dieser" | "dieser" [1026] [885] "einer" | "einer" [1027] - "mssen" [1028] [886] "mittlere" | "mittlere" [1029] [887] "nach" | "nach" [1030] ... ... ... and 1 more ... actual | expected [898] "Koalitionsvereinbarung" | "Koalitionsvereinbarung" [1041] [899] "Verfassung" | "Verfassung" [1042] [900] "," | "," [1043] - "." [1044] - "klar" [1045] [901] "," | "," [1046] [902] "." | "." [1047] [903] "haben" | "haben" [1048] [904] "worden" | "worden" [1049] - "." [1050] ... ... ... and 14 more ... `actual[924:929]`: "," "." "," "bei" "eine" "jetzt" `expected[1072:1080]`: "," "." "," "auch" "die" "die" "bei" "eine" "jetzt" actual | expected [933] "als" | "als" [1084] [934] "!" | "!" [1085] [935] "deshalb" | "deshalb" [1086] - "prfen" [1087] [936] "." | "." [1088] [937] "ist" | "ist" [1089] [938] "Signal" | "Signal" [1090] [939] "sich" | "sich" [1091] [940] "viel" | "viel" [1092] [941] "weit" | "weit" [1093] ... ... ... and 10 more ... actual | expected [961] "einen" | "einen" [1115] [962] "in" | "in" [1116] [963] "nicht" | "nicht" [1117] - "mssen" [1118] - "berwinden" [1119] [964] "Ende" | "Ende" [1120] [965] "arbeiten" | "arbeiten" [1121] [966] "beteiligen" | "beteiligen" [1122] [967] "bleiben" | "bleiben" [1123] [968] "entlasten" | "entlasten" [1124] ... ... ... and 12 more ... `actual[979:982]`: "Kurzarbeit" "Stabilisierung" "," "in" `expected[1139:1143]`: "Kurzarbeit" "Stabilisierung" "," "," "in" -- Error ('test_subcorpus.R:55:5'): generate subcorpus ------------------------- Error in `UseMethod("size")`: no applicable method for 'size' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_identical(size(p), size(sc)) at test_subcorpus.R:55:5 2. | \-testthat::quasi_label(enquo(expected), expected.label, arg = "expected") 3. | \-rlang::eval_bare(expr, quo_get_env(quo)) 4. +-polmineR::size(sc) 5. \-polmineR::size(sc) [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] Error: Test failures Execution halted * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: 1 ERROR, 1 NOTE See '/tmp/th798/16179931/R-devel/1048/polmineR.Rcheck/00check.log' for details. [1] "2025-03-29 01:44:53 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) --- R_Under_development_unstable_2025-03-28_r88067/release_1.17.0.Rcheck/00check.log 2025-03-29 01:28:37.807955915 -0700 +++ R_Under_development_unstable_2025-03-28_r88067/master_1.17.99.2cb03162a21328cc5f68a8c3b0e554f5edfcb5b9.Rcheck/00check.log 2025-03-29 01:44:53.142270520 -0700 @@ -86,58 +86,58 @@ v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i get token ids - v get token ids [25ms] + v get token ids [28ms] i get struc ids - v get struc ids [53ms] + v get struc ids [57ms] i drop tokens outside strucs - v drop tokens outside strucs [45ms] + v drop tokens outside strucs [49ms] i get unique s-attribute values - v get unique s-attribute values [288ms] + v get unique s-attribute values [294ms] i counting token per doc - v counting token per doc [227ms] + v counting token per doc [231ms] i decode strucs - v decode strucs [22ms] + v decode strucs [24ms] i decode and recode token ids - v decode and recode token ids [22ms] + v decode and recode token ids [24ms] i adjust ids - v adjust ids [22ms] + v adjust ids [24ms] i generate simple_triplet_matrix - v generate simple_triplet_matrix [21ms] + v generate simple_triplet_matrix [22ms] i get token ids v get token ids [56ms] i get struc ids - v get struc ids [60ms] + v get struc ids [62ms] i drop tokens outside strucs - v drop tokens outside strucs [31ms] + v drop tokens outside strucs [32ms] i get unique s-attribute values - v get unique s-attribute values [26ms] + v get unique s-attribute values [27ms] i generate unique document ids - v generate unique document ids [121ms] + v generate unique document ids [120ms] i counting token per doc - v counting token per doc [59ms] + v counting token per doc [61ms] i decode tokens and generate factor - v decode tokens and generate factor [70ms] + v decode tokens and generate factor [73ms] i prepare row and column labels - v prepare row and column labels [30ms] + v prepare row and column labels [31ms] i generate simple_triplet_matrix - v generate simple_triplet_matrix [32ms] + v generate simple_triplet_matrix [33ms] i generating document ids v generating document ids ... done @@ -177,10 +177,10 @@ i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [16ms] + v get regions and get values [17ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [62ms] + v instantiate objects (n = 124) [64ms] i assign names v assign names [10ms] @@ -242,31 +242,31 @@ v converting `TermDocumentMatrix` to `Matrix` ... done i get token ids - v get token ids [54ms] + v get token ids [56ms] i get struc ids - v get struc ids [56ms] + v get struc ids [59ms] i drop tokens outside strucs - v drop tokens outside strucs [25ms] + v drop tokens outside strucs [29ms] i get unique s-attribute values - v get unique s-attribute values [21ms] + v get unique s-attribute values [25ms] i generate unique document ids - v generate unique document ids [119ms] + v generate unique document ids [120ms] i counting token per doc - v counting token per doc [58ms] + v counting token per doc [62ms] i decode tokens and generate factor - v decode tokens and generate factor [68ms] + v decode tokens and generate factor [74ms] i prepare row and column labels - v prepare row and column labels [29ms] + v prepare row and column labels [33ms] i generate simple_triplet_matrix - v generate simple_triplet_matrix [22ms] + v generate simple_triplet_matrix [25ms] v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -290,34 +290,34 @@ i subsetting by date i instantiate 2 plpr_subcorpus objects - v instantiate 2 plpr_subcorpus objects [36ms] + v instantiate 2 plpr_subcorpus objects [37ms] i subsetting by date - v subsetting by date [131ms] + v subsetting by date [139ms] i generating speeches i generating names - v generating names [230ms] + v generating names [235ms] i reorder objects - v reorder objects [23ms] + v reorder objects [25ms] i coercing partitions to plpr_subcorpus - v coercing partitions to plpr_subcorpus [147ms] + v coercing partitions to plpr_subcorpus [149ms] ... get cpos and strucs i distinct dates detected: 1 i generating speeches - v generating speeches [482ms] + v generating speeches [518ms] i generating names - v generating names [62ms] + v generating names [64ms] i reordering partitions - v reordering partitions [23ms] + v reordering partitions [25ms] i coercing partitions to plpr_partitions - v coercing partitions to plpr_partitions [22ms] + v coercing partitions to plpr_partitions [24ms] i using p-attribute word i create temporary data.table @@ -433,49 +433,49 @@ ... no hits for query: asdfasdf v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... creating data.table with corpus positions ... adding tokens ... generating phrases @@ -483,94 +483,94 @@ ... creating bundle of count objects v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i decoding p-attribute: word - v decoding p-attribute: word [164ms] + v decoding p-attribute: word [171ms] i decoding p-attribute: pos - v decoding p-attribute: pos [131ms] + v decoding p-attribute: pos [130ms] i decoding s-attribute: interjection - v decoding s-attribute: interjection [179ms] + v decoding s-attribute: interjection [182ms] i decoding s-attribute: date v decoding s-attribute: date [184ms] i decoding s-attribute: party - v decoding s-attribute: party [213ms] + v decoding s-attribute: party [216ms] i decoding s-attribute: speaker - v decoding s-attribute: speaker [219ms] + v decoding s-attribute: speaker [216ms] i decoding s-attribute: protocol_date - v decoding s-attribute: protocol_date [155ms] + v decoding s-attribute: protocol_date [154ms] i decoding s-attribute: protocol_lp - v decoding s-attribute: protocol_lp [160ms] + v decoding s-attribute: protocol_lp [161ms] i decoding s-attribute: role - v decoding s-attribute: role [172ms] + v decoding s-attribute: role [169ms] i assembling data.table v assembling data.table [34ms] i decoding p-attribute: word - v decoding p-attribute: word [183ms] + v decoding p-attribute: word [191ms] i decoding s-attribute: party v decoding s-attribute: party [176ms] i assembling data.table - v assembling data.table [11ms] + v assembling data.table [12ms] i decoding p-attribute: word - v decoding p-attribute: word [167ms] + v decoding p-attribute: word [172ms] i assembling data.table - v assembling data.table [11ms] + v assembling data.table [12ms] i decoding p_attribute "word" - v decoding p_attribute "word" [58ms] + v decoding p_attribute "word" [60ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -581,317 +581,317 @@ ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [20ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word i coercion to `partition_bundle` class v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs i s-attribute "date" has values: yes i get regions and get values - v get regions and get values [14ms] + v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ... get cpos and strucs - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ... get cpos and strucs + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "places" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 11) - v instantiate objects (n = 11) [17ms] + v instantiate objects (n = 11) [18ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [12ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [20ms] i assign names v assign names [10ms] v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i getting sizes ... getting sizes ! corpus loaded multiple times with following registries: i getting sizes - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp i getting sizes - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry i getting sizes - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i getting sizes - v getting sizes [34ms] + v getting sizes [37ms] i calculate frequencies - v calculate frequencies [10ms] + v calculate frequencies [16ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' No hits for query: asdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' No hits for query: "asdfasdfasdfasd.*" ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... getting corpus positions ... number of hits: 21 ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... number of hits: 7 ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts @@ -901,45 +901,45 @@ ... getting corpus positions ... no matches for query (or no matches left after applying stoplist/positivelist) ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... dropping nodes ... counting tokens in context ... creating new index for hits @@ -951,91 +951,91 @@ i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [12ms] + v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects - v instantiate 37 plpr_subcorpus objects [23ms] + v instantiate 37 plpr_subcorpus objects [25ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [18ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [16ms] + v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] @@ -1048,10 +1048,10 @@ v get regions and get values [17ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [36ms] + v instantiate objects (n = 124) [35ms] i assign names - v assign names [10ms] + v assign names [11ms] ... get cpos and strucs i bundle class: partition_bundle @@ -1059,7 +1059,7 @@ i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [14ms] + v get list of regions [13ms] i instantiate 124 plpr_partition objects v instantiate 124 plpr_partition objects [38ms] @@ -1077,75 +1077,75 @@ v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i s-attributes are not siblings, get relationship @@ -1156,19 +1156,19 @@ v decode s-attribute "party" [37ms] i merge corpus position results for s-attribute "party" - v merge corpus position results for s-attribute "protocol_date" [86ms] + v merge corpus position results for s-attribute "protocol_date" [85ms] i decode s-attribute "protocol_date" - v decode s-attribute "protocol_date" [54ms] + v decode s-attribute "protocol_date" [53ms] i merge corpus position results for s-attribute "protocol_date" v merge corpus position results for s-attribute "speaker" [87ms] i decode s-attribute "speaker" - v decode s-attribute "speaker" [76ms] + v decode s-attribute "speaker" [75ms] i merge corpus position results for s-attribute "speaker" - v merge corpus position results for s-attribute "speaker" [92ms] + v merge corpus position results for s-attribute "speaker" [91ms] i aggregate results and get sizes v aggregate results and get sizes [58ms] @@ -1187,22 +1187,22 @@ v get values for s-attribute "protocol_date" [39ms] i aggregate region sizes - v aggregate region sizes [31ms] + v aggregate region sizes [30ms] i aggregate results and get sizes v aggregate results and get sizes [12ms] ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [21ms] i assign names v assign names [10ms] @@ -1217,7 +1217,7 @@ v keep only matches for 3 values provided [13ms] i instantiate objects (n = 3) - v instantiate objects (n = 3) [16ms] + v instantiate objects (n = 3) [17ms] i assign names v assign names [10ms] @@ -1251,7 +1251,7 @@ v instantiate objects (n = 124) [34ms] i assign names - v assign names [10ms] + v assign names [11ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -1259,82 +1259,82 @@ v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types Error in .checkTypos(e, names_x) : Object 'foo' not found amongst [struc, cpos_left, cpos_right, id] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i Cannot map s-attributes and types x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] @@ -1343,7 +1343,7 @@ v instantiate objects (n = 20) [19ms] i assign names - v assign names [10ms] + v assign names [9ms] i generating document ids v generating document ids ... done @@ -1364,15 +1364,15 @@ v generating simple triplet matrix ... done ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [18ms] i assign names v assign names [10ms] @@ -1394,152 +1394,152 @@ v create TermDocumentMatrix ... done ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [11ms] + v get regions and get values [10ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [18ms] i assign names - v assign names [10ms] + v assign names [9ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [20ms] i assign names - v assign names [10ms] + v assign names [13ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [11ms] + v get regions and get values [14ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [22ms] i assign names - v assign names [10ms] + v assign names [12ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [11ms] + v get regions and get values [13ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [20ms] i assign names - v assign names [10ms] + v assign names [11ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [11ms] + v get regions and get values [13ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [19ms] + v instantiate objects (n = 20) [21ms] i assign names - v assign names [10ms] + v assign names [11ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [12ms] + v get regions and get values [13ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [20ms] + v instantiate objects (n = 20) [22ms] i assign names - v assign names [10ms] + v assign names [11ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "speaker" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [12ms] + v get list of regions [13ms] i instantiate 2 plpr_subcorpus objects - v instantiate 2 plpr_subcorpus objects [20ms] + v instantiate 2 plpr_subcorpus objects [22ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [16ms] + v get regions and get values [19ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [35ms] + v instantiate objects (n = 124) [38ms] i assign names - v assign names [11ms] + v assign names [12ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [17ms] + v get regions and get values [18ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [35ms] + v instantiate objects (n = 124) [37ms] i assign names - v assign names [11ms] + v assign names [12ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [17ms] + v get regions and get values [18ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [35ms] + v instantiate objects (n = 124) [37ms] i assign names - v assign names [10ms] + v assign names [12ms] ... preparing struc table ... now performing counts @@ -1549,20 +1549,20 @@ i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [14ms] + v get list of regions [15ms] i instantiate 124 plpr_subcorpus objects - v instantiate 124 plpr_subcorpus objects [39ms] + v instantiate 124 plpr_subcorpus objects [40ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [12ms] + v get list of regions [15ms] i instantiate 77 plpr_subcorpus objects - v instantiate 77 plpr_subcorpus objects [30ms] + v instantiate 77 plpr_subcorpus objects [33ms] ... get cpos and strucs i bundle class: partition_bundle @@ -1580,10 +1580,10 @@ i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions - v get list of regions [14ms] + v get list of regions [13ms] i instantiate 5 plpr_subcorpus objects - v instantiate 5 plpr_subcorpus objects [20ms] + v instantiate 5 plpr_subcorpus objects [19ms] ... get cpos and strucs i bundle class: partition_bundle @@ -1591,37 +1591,37 @@ i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions - v get list of regions [14ms] + v get list of regions [13ms] i instantiate 5 plpr_partition objects v instantiate 5 plpr_partition objects [20ms] i s-attribute "date" has values: yes i get regions and get values - v get regions and get values [16ms] + v get regions and get values [15ms] i instantiate objects (n = 5) - v instantiate objects (n = 5) [18ms] + v instantiate objects (n = 5) [17ms] i assign names - v assign names [11ms] + v assign names [10ms] i s-attribute "date" has values: yes i get regions and get values - v get regions and get values [16ms] + v get regions and get values [15ms] i instantiate objects (n = 5) - v instantiate objects (n = 5) [18ms] + v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] i s-attribute "protocol_date" has values: yes i get regions and get values - v get regions and get values [12ms] + v get regions and get values [11ms] i instantiate objects (n = 5) - v instantiate objects (n = 5) [19ms] + v instantiate objects (n = 5) [18ms] i assign names v assign names [11ms] @@ -1632,10 +1632,10 @@ i s-attribute for splitting ("protocol_date") is ancestor of s-attribute "speaker" i s-attribute "protocol_date" has values: yes i get list of regions - v get list of regions [13ms] + v get list of regions [12ms] i instantiate 2 plpr_subcorpus objects - v instantiate 2 plpr_subcorpus objects [21ms] + v instantiate 2 plpr_subcorpus objects [22ms] i objects in bundle after subsetting is 2 (3 less than before) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -1643,89 +1643,89 @@ ... getting counts for p-attribute(s): word v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ... get cpos and strucs - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ... get cpos and strucs + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... applying stoplist ... number of hits dropped due to stoplist: 13 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... filtering by positivelist ... number of hits dropped due to positivelist: 65 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... decode p-attribute: word ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpjOCsT1/registry_tmp - * /tmp/th798/16179931/RtmpjOCsT1/polmineR_registry - i using '/tmp/th798/16179931/RtmpjOCsT1/registry_tmp' + * /tmp/th798/16179931/RtmpSkUU4x/registry_tmp + * /tmp/th798/16179931/RtmpSkUU4x/polmineR_registry + i using '/tmp/th798/16179931/RtmpSkUU4x/registry_tmp' [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] == Skipped tests (18) ========================================================== > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } > WARNING: ignoring environment value of R_HOME R version 4.4.3 (2025-02-28) -- "Trophy Case" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-03-29/deps.csv", task.str = "1048", release = "/scratch/th798/data.table-revdeps/2025-03-29/data.table_release_1.17.0.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-03-29/data.table_master_1.17.99.2cb03162a21328cc5f68a8c3b0e554f5edfcb5b9.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/16179931/R-release/1048" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/16179931/R-release/1048/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "polmineR" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/16179931/R-release/1048/library" [2] "/projects/genomic-ml/R/R-release/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-03-29 01:44:58 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/16179931/R-release/1048/library' (as 'lib' is unspecified) also installing the dependencies 'RcppCWB', 'highlight' trying URL 'http://cloud.r-project.org/src/contrib/RcppCWB_0.6.5.tar.gz' Content type 'application/x-gzip' length 1126430 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'http://cloud.r-project.org/src/contrib/highlight_0.5.1.tar.gz' Content type 'application/x-gzip' length 357769 bytes (349 KB) ================================================== downloaded 349 KB trying URL 'http://cloud.r-project.org/src/contrib/polmineR_0.8.9.tar.gz' Content type 'application/x-gzip' length 1833628 bytes (1.7 MB) ================================================== downloaded 1.7 MB * installing *source* package 'RcppCWB' ... ** package 'RcppCWB' successfully unpacked and MD5 sums checked ** using staged installation * operating system detected for CWB configuration: Linux * Linux distribution ID: "rhel" (unsupported, adapting the configuration may be necessary) * architecture: x86_64 ... using config 'linux-64' * using CWB platform configuration file: linux-64 * adapt CWB configuration file to use compiler: /packages/gcc/12.2.0-nnbserq/bin/gcc sed: -e expression #1, char 54: unknown option to `s' * using pkg-config to check whether glib-2.0 is available ... yes * using pkg-config to get linker flags for glib-2.0: -L/home/th798/.conda/envs/emacs1/lib -lglib-2.0 * check whether pcre2 is available ... yes (version: 10.32) * checking whether pcre2test is available ... no * using pcre2-config to get libdirs for pcre2 (8bit): -lpcre2-8 * using pcre2-config to get cflags for pcre2: * using build directory: /tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c addons.cpp -o addons.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cl.cpp -o cl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cqp.cpp -o cqp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl -I/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/CQi -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.cpp -o utils.o cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make clean make[1]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found for i in cl cqp ; do if [ -f "$i/Makefile" ]; then cd $i; make clean; cd ..; fi; done; make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found rm -f *.o libcl.a registry.output *~ make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl' make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found rm -f cqp cqpcl cqpserver *.o ../CQi/*.o parser.output *~ ../CQi/*~ # TODO what is "parser.output" ? make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp' rm -f *~ config/*/*~ CQi/*~ CQi/*.o technical/*~ TAGS rm -f -rf build make[1]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make depend make[1]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found for i in cl cqp ; do cd $i; make depend.mk; cd ..; done; make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found make[2]: 'depend.mk' is up to date. make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl' make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found make[2]: 'depend.mk' is up to date. make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp' make[1]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make cl make[1]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found --------------------------------- BUILDING CORPUS LIBRARY (CL) cd cl; make make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o globals.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include globals.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o macros.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include macros.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ui-helpers.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ui-helpers.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o list.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include list.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o lexhash.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include lexhash.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ngram-hash.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ngram-hash.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o bitfields.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include bitfields.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o storage.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include storage.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o fileutils.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include fileutils.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o special-chars.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:19 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include special-chars.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o regopt.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include regopt.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o corpus.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include corpus.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o attributes.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include attributes.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o makecomps.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include makecomps.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o registry.tab.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include registry.tab.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o lex.creg.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include lex.creg.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o cdaccess.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include cdaccess.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o bitio.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include bitio.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o endian.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include endian.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o compression.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include compression.c rm -f libcl.a ar cqs libcl.a globals.o macros.o ui-helpers.o list.o lexhash.o ngram-hash.o bitfields.o storage.o fileutils.o special-chars.o regopt.o corpus.o attributes.o makecomps.o registry.tab.o lex.creg.o cdaccess.o bitio.o endian.o compression.o /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o dl_stub.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include dl_stub.c make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl' make[1]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make cqp make[1]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found --------------------------------- BUILDING CQP cd cqp; make make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o cqp.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:20 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include cqp.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o symtab.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include symtab.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o eval.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include eval.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o tree.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include tree.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o options.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include options.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o corpmanag.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include corpmanag.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o regex2dfa.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include regex2dfa.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o output.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include output.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ranges.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ranges.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o builtins.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include builtins.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o groups.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include groups.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o targets.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:21 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include targets.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o matchlist.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include matchlist.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o concordance.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include concordance.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o parse_actions.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include parse_actions.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o attlist.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include attlist.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o context_descriptor.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include context_descriptor.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o print-modes.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include print-modes.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ascii-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ascii-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o sgml-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include sgml-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o html-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include html-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o latex-print.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include latex-print.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o variables.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include variables.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o print_align.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include print_align.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o macro.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include macro.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o parser.tab.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:22 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include parser.tab.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o lex.yy.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include lex.yy.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ../CQi/server.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ../CQi/server.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ../CQi/auth.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ../CQi/auth.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -o ../CQi/log.o -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include ../CQi/log.c rm -f libcqp.a ar cqs libcqp.a cqp.o symtab.o eval.o tree.o options.o corpmanag.o regex2dfa.o output.o ranges.o builtins.o groups.o targets.o matchlist.o concordance.o parse_actions.o attlist.o context_descriptor.o print-modes.o ascii-print.o sgml-print.o html-print.o latex-print.o variables.o print_align.o macro.o parser.tab.o lex.yy.o ../CQi/server.o ../CQi/auth.o ../CQi/log.o make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp' make[1]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' cd cwb; R_PACKAGE_SOURCE=/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig make utils make[1]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found --------------------------------- BUILDING UTILITIES cd utils; make make[2]: Entering directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/utils' Package ncurses was not found in the pkg-config search path. Perhaps you should add the directory containing `ncurses.pc' to the PKG_CONFIG_PATH environment variable No package 'ncurses' found /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-encode.o cwb-encode.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-makeall.o cwb-makeall.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-huffcode.o cwb-huffcode.c /packages/gcc/12.2.0-nnbserq/bin/gcc -c -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fPIC -fPIC -m64 -fPIC -fPIC -m64 -DCOMPILE_DATE=\""Sat Mar 29 01:45:23 MST 2025"\" -DCWB_VERSION=\"3.4.33\" -I/home/th798/.conda/envs/emacs1/include/glib-2.0 -I/home/th798/.conda/envs/emacs1/lib/glib-2.0/include -I/home/th798/.conda/envs/emacs1/include -o cwb-compress-rdx.o cwb-compress-rdx.c --------------------------------- CREATING ARCHIVE rm -f libcwb.a ar cqs libcwb.a cwb-encode.o cwb-makeall.o cwb-huffcode.o cwb-compress-rdx.o make[2]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/utils' make[1]: Leaving directory '/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RcppCWB.so RcppExports.o addons.o cl.o cqp.o utils.o -L/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cl -L/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/cqp -L/tmp/th798/16179931/RtmpTu8voG/R.INSTALL2bc30f55bec0c3/RcppCWB/src/cwb/utils -lcwb -lcqp -lcl -L/home/th798/.conda/envs/emacs1/lib -lglib-2.0 -lpcre2-8 installing to /tmp/th798/16179931/R-release/1048/library/00LOCK-RcppCWB/00new/RcppCWB/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppCWB) * installing *source* package 'highlight' ... ** package 'highlight' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++11 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASBeautifier.cpp -o ASBeautifier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASEnhancer.cpp -o ASEnhancer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASFormatter.cpp -o ASFormatter.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASResource.cpp -o ASResource.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ASStreamIterator.cpp -o ASStreamIterator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Matcher.cpp -o Matcher.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Pattern.cpp -o Pattern.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ansigenerator.cpp -o ansigenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bbcodegenerator.cpp -o bbcodegenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c codegenerator.cpp -o codegenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c configurationreader.cpp -o configurationreader.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ctagsreader.cpp -o ctagsreader.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c datadir.cpp -o datadir.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c documentstyle.cpp -o documentstyle.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c elementstyle.cpp -o elementstyle.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c highlight_wrapper.cpp -o highlight_wrapper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c htmlgenerator.cpp -o htmlgenerator.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c languagedefinition.cpp -o languagedefinition.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c latexgenerator.cpp -o latexgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c platform_fs.cpp -o platform_fs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c preformatter.cpp -o preformatter.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c render.cpp -o render.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rtfgenerator.cpp -o rtfgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stringtools.cpp -o stringtools.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stylecolour.cpp -o stylecolour.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c svggenerator.cpp -o svggenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c texgenerator.cpp -o texgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xhtmlgenerator.cpp -o xhtmlgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xmlgenerator.cpp -o xmlgenerator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xterm256generator.cpp -o xterm256generator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o highlight.so ASBeautifier.o ASEnhancer.o ASFormatter.o ASResource.o ASStreamIterator.o Matcher.o Pattern.o ansigenerator.o bbcodegenerator.o codegenerator.o configurationreader.o ctagsreader.o datadir.o documentstyle.o elementstyle.o highlight_wrapper.o htmlgenerator.o init.o languagedefinition.o latexgenerator.o platform_fs.o preformatter.o render.o rtfgenerator.o stringtools.o stylecolour.o svggenerator.o texgenerator.o xhtmlgenerator.o xmlgenerator.o xterm256generator.o installing to /tmp/th798/16179931/R-release/1048/library/00LOCK-highlight/00new/highlight/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (highlight) * installing *source* package 'polmineR' ... ** package 'polmineR' successfully unpacked and MD5 sums checked ** using staged installation ** R ** demo ** inst ** byte-compile and prepare package for lazy loading Creating a generic function for 'nrow' from package 'base' in package 'polmineR' Creating a generic function for 'ncol' from package 'base' in package 'polmineR' Creating a generic function for 'colnames' from package 'base' in package 'polmineR' Creating a generic function for 'sample' from package 'base' in package 'polmineR' ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (polmineR) The downloaded source packages are in '/tmp/th798/16179931/RtmphS587A/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 56.387 5.733 66.457 > print(Sys.time()) [1] "2025-03-29 01:46:05 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-03-29 01:46:05 MST" Installing package into '/tmp/th798/16179931/R-release/1048/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16179931/R-release/1048/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-29 01:46:23 MST" * using log directory '/tmp/th798/16179931/R-release/1048/polmineR.Rcheck' * using R version 4.4.3 (2025-02-28) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'polmineR/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'polmineR' version '0.8.9' * package encoding: UTF-8 * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'polmineR' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... 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 code 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 whether startup messages can be suppressed ... 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 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 installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' ERROR Running the tests in 'tests/testthat.R' failed. Complete output: > library(testthat) > library(polmineR) WARNING: The locale of the R session is 'C': The character set is not specified. You may encounter problems when working with corpora with a latin-1 or UTF-8 encoding that include special characters. polmineR is throttled to use 2 cores as required by CRAN Repository Policy. To get full performance: * Use `n_cores <- parallel::detectCores()` to detect the number of cores available on your machine * Set number of cores using `options('polmineR.cores' = n_cores - 1)` and `data.table::setDTthreads(n_cores - 1)` Attaching package: 'polmineR' The following object is masked from 'package:testthat': context The following object is masked from 'package:base': use > use("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) > > test_check("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i get token ids v get token ids [24ms] i get struc ids v get struc ids [50ms] i drop tokens outside strucs v drop tokens outside strucs [34ms] i get unique s-attribute values v get unique s-attribute values [290ms] i counting token per doc v counting token per doc [221ms] i decode strucs v decode strucs [21ms] i decode and recode token ids v decode and recode token ids [21ms] i adjust ids v adjust ids [21ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [21ms] i get token ids v get token ids [53ms] i get struc ids v get struc ids [59ms] i drop tokens outside strucs v drop tokens outside strucs [30ms] i get unique s-attribute values v get unique s-attribute values [24ms] i generate unique document ids v generate unique document ids [108ms] i counting token per doc v counting token per doc [57ms] i decode tokens and generate factor v decode tokens and generate factor [69ms] i prepare row and column labels v prepare row and column labels [29ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [30ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [60ms] i assign names v assign names [9ms] i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i get token ids v get token ids [51ms] i get struc ids v get struc ids [54ms] i drop tokens outside strucs v drop tokens outside strucs [24ms] i get unique s-attribute values v get unique s-attribute values [20ms] i generate unique document ids v generate unique document ids [109ms] i counting token per doc v counting token per doc [55ms] i decode tokens and generate factor v decode tokens and generate factor [67ms] i prepare row and column labels v prepare row and column labels [29ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [22ms] v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i distinct dates: 2 i subsetting by date i bundle class: subcorpus_bundle i subsetting by date i objects in bundle: plpr_subcorpus i subsetting by date i s-attribute for splitting ("date") is sibling of s-attribute "date" i subsetting by date i s-attribute "date" has values: yes i subsetting by date i get list of regions v get list of regions [11ms] i subsetting by date i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [35ms] i subsetting by date v subsetting by date [127ms] i generating speeches i generating names v generating names [219ms] i reorder objects v reorder objects [22ms] i coercing partitions to plpr_subcorpus v coercing partitions to plpr_subcorpus [138ms] ... get cpos and strucs i distinct dates detected: 1 i generating speeches v generating speeches [463ms] i generating names v generating names [59ms] i reordering partitions v reordering partitions [22ms] i coercing partitions to plpr_partitions v coercing partitions to plpr_partitions [21ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... creating data.table with corpus positions ... adding tokens ... generating phrases ... counting ... creating bundle of count objects v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i decoding p-attribute: word v decoding p-attribute: word [158ms] i decoding p-attribute: pos v decoding p-attribute: pos [124ms] i decoding s-attribute: interjection v decoding s-attribute: interjection [167ms] i decoding s-attribute: date v decoding s-attribute: date [173ms] i decoding s-attribute: party v decoding s-attribute: party [178ms] i decoding s-attribute: speaker v decoding s-attribute: speaker [203ms] i decoding s-attribute: protocol_date v decoding s-attribute: protocol_date [141ms] i decoding s-attribute: protocol_lp v decoding s-attribute: protocol_lp [178ms] i decoding s-attribute: role v decoding s-attribute: role [160ms] i assembling data.table v assembling data.table [35ms] i decoding p-attribute: word v decoding p-attribute: word [165ms] i decoding s-attribute: party v decoding s-attribute: party [860ms] i assembling data.table v assembling data.table [11ms] i decoding p-attribute: word v decoding p-attribute: word [161ms] i assembling data.table v assembling data.table [10ms] i decoding p_attribute "word" v decoding p_attribute "word" [53ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: UNGA ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word i coercion to `partition_bundle` class v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs i s-attribute "date" has values: yes i get regions and get values v get regions and get values [14ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [15ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "places" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 11) v instantiate objects (n = 11) [16ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [9ms] v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i getting sizes ... getting sizes ! corpus loaded multiple times with following registries: i getting sizes * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp i getting sizes * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i getting sizes i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i getting sizes v getting sizes [32ms] i calculate frequencies v calculate frequencies [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' No hits for query: asdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' No hits for query: "asdfasdfasdfasd.*" ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... getting corpus positions ... number of hits: 21 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... number of hits: 7 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... no hits for query: asdfasdf ... no matches for query (or no matches left after applying stoplist/positivelist) ... getting corpus positions ... no matches for query (or no matches left after applying stoplist/positivelist) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... dropping nodes ... counting tokens in context ... creating new index for hits ... creating new index for tokens ... putting together matrix ... filtering by positivelist i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [11ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [22ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [14ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [32ms] i assign names v assign names [9ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [33ms] i assign names v assign names [10ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 124 plpr_partition objects v instantiate 124 plpr_partition objects [35ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [36ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [13ms] i s-attributes not ordered according to tree structure (inefficient) i decode s-attribute "party" v decode s-attribute "party" [33ms] i merge corpus position results for s-attribute "party" v merge corpus position results for s-attribute "protocol_date" [75ms] i decode s-attribute "protocol_date" v decode s-attribute "protocol_date" [46ms] i merge corpus position results for s-attribute "protocol_date" v merge corpus position results for s-attribute "speaker" [78ms] i decode s-attribute "speaker" v decode s-attribute "speaker" [50ms] i merge corpus position results for s-attribute "speaker" v merge corpus position results for s-attribute "speaker" [85ms] i aggregate results and get sizes v aggregate results and get sizes [69ms] i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [12ms] i order of s-attributes starts with deep descendents i get regions for s-attribute "party" v get regions for s-attribute "party" [19ms] i get values for s-attribute "speaker" v get values for s-attribute "protocol_date" [36ms] i get values for s-attribute "protocol_date" v get values for s-attribute "protocol_date" [34ms] i aggregate region sizes v aggregate region sizes [28ms] i aggregate results and get sizes v aggregate results and get sizes [11ms] ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [16ms] i assign names v assign names [9ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i keep only matches for 3 values provided v keep only matches for 3 values provided [11ms] i instantiate objects (n = 3) v instantiate objects (n = 3) [15ms] i assign names v assign names [9ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is descendent of s-attribute "protocol_date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [11ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [21ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [11ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [22ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [33ms] i assign names v assign names [9ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i Cannot map s-attributes and types Error in .checkTypos(e, names_x) : Object 'foo' not found amongst [struc, cpos_left, cpos_right, id] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i Cannot map s-attributes and types x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [10ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [9ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [17ms] i assign names v assign names [9ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "speaker" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [10ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [17ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [34ms] i assign names v assign names [9ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [32ms] i assign names v assign names [9ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [32ms] i assign names v assign names [9ms] ... preparing struc table ... now performing counts ... finalizing tables i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [12ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [35ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [12ms] i instantiate 77 plpr_subcorpus objects v instantiate 77 plpr_subcorpus objects [29ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [11ms] i instantiate 77 plpr_partition objects v instantiate 77 plpr_partition objects [29ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [13ms] i instantiate 5 plpr_subcorpus objects v instantiate 5 plpr_subcorpus objects [18ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [13ms] i instantiate 5 plpr_partition objects v instantiate 5 plpr_partition objects [18ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [14ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [16ms] i assign names v assign names [9ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] i s-attribute "protocol_date" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] i split by s-attribute "protocol_date" i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("protocol_date") is ancestor of s-attribute "speaker" i s-attribute "protocol_date" has values: yes i get list of regions v get list of regions [11ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [20ms] i objects in bundle after subsetting is 2 (3 less than before) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... applying stoplist ... number of hits dropped due to stoplist: 13 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... filtering by positivelist ... number of hits dropped due to positivelist: 65 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... decode p-attribute: word ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] == Skipped tests (18) ========================================================== * On CRAN (10): 'test_as.data.table.R:9:5', 'test_as.markdown.R:13:5', 'test_as.markdown.R:73:5', 'test_cooccurrences.R:96:5', 'test_cooccurrences.R:167:5', 'test_dispersion.R:43:5', 'test_get_token_stream.R:100:5', 'test_get_token_stream.R:138:5', 'test_html.R:9:5', 'test_subcorpus_bundle.R:187:5' * empty test (2): 'test_count.R:125:1', 'test_subcorpus.R:198:1' * knowingly not working (1): 'test_as.speeches.R:46:5' * use("GermaParl2") is not TRUE (5): 'test_as.speeches.R:86:5', 'test_hits.R:26:5', 'test_split.R:35:5', 'test_split.R:83:5', 'test_subcorpus.R:159:5' == Failed tests ================================================================ -- Failure ('test_chisquare.R:38:7'): check chisquare computation -------------- `chisquare_value_selfmade` (`actual`) not equal to `chisquare_value_fn` (`expected`). `actual`: Inf `expected`: 56 -- Failure ('test_get_token_stream.R:88:5'): get_token_stream()-method for matrix input -- nchar(ts_rm) (`actual`) not identical to 159L (`expected`). `actual`: 154 `expected`: 159 -- Failure ('test_get_token_stream.R:131:5'): --------------------------------- nchar(y) (`actual`) not identical to 51328L (`expected`). `actual`: 47081 `expected`: 51328 -- Failure ('test_pmi.R:32:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- nrow(a_min) (`actual`) not identical to nrow(b_min) (`expected`). `actual`: 982 `expected`: 1143 -- Failure ('test_pmi.R:33:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_1"]] (`actual`) not identical to b_min[["a_word"]] (`expected`). `actual[4:9]`: "!" "!" "!" "\"" "\"" "\"" `expected[4:11]`: "!" "!" "!" "!" "!" "\"" "\"" "\"" `actual[24:29]`: ")" ")" ")" "," "," "," `expected[26:32]`: ")" ")" ")" "," "," "," "," `actual[44:49]`: "," "," "," "-" and 2 more... `expected[47:58]`: "," "," "," "," "," "," "," "," "," "-" ... `actual[55:60]`: "-" "-" "-" "." "." "." `expected[64:71]`: "-" "-" "-" "." "." "." "." "." actual | expected [101] ":" | ":" [112] [102] ":" | ":" [113] [103] ":" | ":" [114] - ":" [115] - "ffentlichen" [116] - "ber" [117] [104] "?" | "?" [118] [105] "?" | "?" [119] [106] "?" | "?" [120] [107] "?" | "?" [121] ... ... ... and 6 more ... actual | expected [114] "Arbeit" | "Arbeit" [129] [115] "Arbeit" | "Arbeit" [130] [116] "Arbeitnehmer" | "Arbeitnehmer" [131] - "Arbeitspltze" [132] [117] "Auch" | "Auch" [133] [118] "Auch" | "Auch" [134] [119] "Aufbau" | "Aufbau" [135] [120] "Aufgabe" | "Aufgabe" [136] [121] "Auswirkungen" | "Auswirkungen" [137] - "Brger" [138] ... ... ... and 5 more ... `actual[138:143]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" `expected[156:163]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" "Das" "Das" actual | expected [148] "Dazu" | "Dazu" [168] [149] "Deshalb" | "Deshalb" [169] [150] "Deshalb" | "Deshalb" [170] - "Deshalb" [171] [151] "Deswegen" | "Deswegen" [172] [152] "Deswegen" | "Deswegen" [173] - "Deutschland" [174] [153] "Deutschland" | "Deutschland" [175] [154] "Deutschland" | "Deutschland" [176] [155] "Die" | "Die" [177] `actual[166:171]`: "Es" "Es" "Euro" "FDP" "FDP" "Familie" `expected[188:194]`: "Es" "Es" "Euro" "Flle" "FDP" "FDP" "Familie" actual | expected [178] "Frage" | "Frage" [201] [179] "Fragen" | "Fragen" [202] [180] "Frau" | "Frau" [203] - "Freiheit" [204] - "GRNEN" [205] - "GRNEN" [206] [181] "Gemeinsam" | "Gemeinsam" [207] [182] "Geschichte" | "Geschichte" [208] [183] "Gesetz" | "Gesetz" [209] [184] "Gesundheit" | "Gesundheit" [210] ... ... ... and 10 more ... `actual[196:201]`: "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `expected[225:231]`: "Herr" "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `actual[205:210]`: "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" `expected[235:242]`: "Ich" "Ich" "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" actual | expected [223] "Jetzt" | "Jetzt" [255] [224] "Jetzt" | "Jetzt" [256] [225] "Jung" | "Jung" [257] - "Knnen" [258] [226] "Kauder" | "Kauder" [259] [227] "Kinder" | "Kinder" [260] [228] "Kinder" | "Kinder" [261] actual | expected [244] "Kollegin" | "Kollegin" [277] [245] "Kommunen" | "Kommunen" [278] [246] "Konzept" | "Konzept" [279] - "Konzept" [280] [247] "Kraft" | "Kraft" [281] [248] "Kraft" | "Kraft" [282] [249] "Krise" | "Krise" [283] [250] "Krise" | "Krise" [284] - "Lndern" [285] [251] "Lafontaine" | "Lafontaine" [286] ... ... ... and 7 more ... actual | expected [269] "Naturschutz" | "Naturschutz" [305] [270] "Nicht" | "Nicht" [306] [271] "Norbert" | "Norbert" [307] - "Norbert" [308] [272] "Nur" | "Nur" [309] [273] "Opposition" | "Opposition" [310] [274] "Ordnung" | "Ordnung" [311] [275] "Partei" | "Partei" [312] [276] "Pothmer" | "Pothmer" [313] - "Prsident" [314] ... ... ... and 23 more ... actual | expected [306] "Sie" | "Sie" [350] [307] "Sie" | "Sie" [351] [308] "Sie" | "Sie" [352] - "Sittenwidrige" [353] [309] "So" | "So" [354] [310] "So" | "So" [355] - "Solidaritt" [356] - "Solidaritt" [357] [311] "Spiel" | "Spiel" [358] - "Strke" [359] ... ... ... and 10 more ... actual | expected [326] "Uhl" | "Uhl" [375] [327] "Uhr" | "Uhr" [376] [328] "Umso" | "Umso" [377] - "Vernderung" [378] [329] "Verbraucher" | "Verbraucher" [379] [330] "Versicherten" - "Verfgung" [380] [331] "Vertrag" - "Versicherten" [381] [332] "Vertreter" - "Vertrag" [382] [333] "Von" - "Vertreter" [383] [334] "Vor" - "Von" [384] ... ... ... and 170 more ... actual | expected [515] "der" | "der" [565] [516] "der" | "der" [566] [517] "der" | "der" [567] [518] "des" - "der" [568] [519] "des" - "der" [569] [520] "deshalb" - "der" [570] [521] "deshalb" - "der" [571] [522] "deutlich" - "der" [572] [523] "deutschen" - "der" [573] [524] "deutschen" - "der" [574] ... ... ... and 31 more ... actual | expected [560] "die" | "die" [610] [561] "die" | "die" [611] [562] "die" | "die" [612] [563] "diese" - "die" [613] [564] "diesem" - "die" [614] [565] "dieser" - "die" [615] [566] "dieser" - "die" [616] [567] "dieses" - "die" [617] [568] "dieses" - "die" [618] [569] "dieses" - "die" [619] ... ... ... and 129 more ... actual | expected [640] "gefordert" | "gefordert" [751] [641] "gegeben" | "gegeben" [752] [642] "gegen" | "gegen" [753] - "gehrt" [754] - "gehrt" [755] [643] "geht" | "geht" [756] [644] "gekommen" | "gekommen" [757] [645] "gelesen" | "gelesen" [758] actual | expected [652] "gemacht" | "gemacht" [765] [653] "gemeint" | "gemeint" [766] [654] "genommen" | "genommen" [767] - "gerade" [768] [655] "gerade" | "gerade" [769] [656] "gerecht" | "gerecht" [770] [657] "gerecht" | "gerecht" [771] actual | expected [667] "gibt" | "gibt" [781] [668] "gibt" | "gibt" [782] [669] "globalen" | "globalen" [783] - "groen" [784] [670] "gut" | "gut" [785] - "gut" [786] [671] "gute" | "gute" [787] - "hren" [788] [672] "haben" | "haben" [789] [673] "haben" | "haben" [790] ... ... ... and 1 more ... `actual[719:724]`: "in" "in" "in" "investieren" "ist" "ist" `expected[836:842]`: "in" "in" "in" "insbesondere" "investieren" "ist" "ist" actual | expected [728] "ist" | "ist" [846] [729] "ist" | "ist" [847] [730] "ist" | "ist" [848] - "ist" [849] [731] "jeden" | "jeden" [850] [732] "jeden" | "jeden" [851] [733] "jeder" | "jeder" [852] [734] "jetzt" | "jetzt" [853] [735] "jetzt" | "jetzt" [854] [736] "junge" | "junge" [855] ... ... ... and 5 more ... `actual[742:747]`: "keine" "kommt" "konnten" "legen" "lesen" "letzte" `expected[863:869]`: "keine" "kommt" "konnten" "leben" "legen" "lesen" "letzte" actual | expected [751] "liegen" | "liegen" [873] [752] "liegt" | "liegt" [874] [753] "liegt" | "liegt" [875] - "mchte" [876] - "mglich" [877] - "mglichst" [878] - "mssen" [879] - "mssen" [880] - "mssen" [881] [754] "machen" | "machen" [882] ... ... ... and 5 more ... actual | expected [768] "muss" | "muss" [898] [769] "muss" | "muss" [899] [770] "muss" | "muss" [900] - "nchsten" [901] - "nmlich" [902] - "nmlich" [903] - "nmlich" [904] [771] "nach" | "nach" [905] [772] "nach" | "nach" [906] [773] "neben" | "neben" [907] ... ... ... and 5 more ... `actual[835:840]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" `expected[971:977]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" "sie" actual | expected [859] "sollten" | "sollten" [996] [860] "sozialen" | "sozialen" [997] [861] "spricht" | "spricht" [998] - "strker" [999] [862] "stark" | "stark" [1000] [863] "steht" | "steht" [1001] [864] "steht" | "steht" [1002] actual | expected [867] "stellen" | "stellen" [1005] [868] "stellen" | "stellen" [1006] [869] "stellt" | "stellt" [1007] - "stimmt" [1008] - "stoen" [1009] [870] "streiten" | "streiten" [1010] - "trgt" [1011] [871] "tun" | "tun" [1012] [872] "tut" | "tut" [1013] [873] "um" | "um" [1014] `actual[890:895]`: "und" "und" "und" "uns" "uns" "uns" `expected[1031:1038]`: "und" "und" "und" "und" "und" "uns" "uns" "uns" actual | expected [898] "unserer" | "unserer" [1041] [899] "unserer" | "unserer" [1042] [900] "unternehmen" | "unternehmen" [1043] - "untersttzt" [1044] - "vllig" [1045] [901] "vereinbart" | "vereinbart" [1046] [902] "vereinbart" | "vereinbart" [1047] [903] "vereinbart" | "vereinbart" [1048] [904] "vereinbart" | "vereinbart" [1049] [905] "verhindern" | "verhindern" [1050] ... ... ... and 8 more ... actual | expected [918] "von" | "von" [1065] [919] "von" | "von" [1066] [920] "von" | "von" [1067] - "von" [1068] [921] "vor" | "vor" [1069] [922] "voran" | "voran" [1070] [923] "voranbringen" | "voranbringen" [1071] [924] "vorgenommen" | "vorgenommen" [1072] [925] "vorgenommen" | "vorgenommen" [1073] [926] "vorstellen" | "vorstellen" [1074] ... ... ... and 6 more ... `actual[931:936]`: "was" "weg" "weiter" "werden" "werden" "wert" `expected[1082:1088]`: "was" "weg" "weiter" "werden" "werden" "werden" "wert" actual | expected [939] "wie" | "wie" [1091] [940] "wie" | "wie" [1092] [941] "wie" | "wie" [1093] - "wieder" [1094] [942] "will" | "will" [1095] [943] "wir" | "wir" [1096] [944] "wir" | "wir" [1097] [945] "wir" | "wir" [1098] [946] "wir" | "wir" [1099] [947] "wir" | "wir" [1100] ... ... ... and 4 more ... actual | expected [961] "wollen" | "wollen" [1115] [962] "wollen" | "wollen" [1116] [963] "wollen" | "wollen" [1117] - "zahlen" [1118] - "zu" [1119] - "zu" [1120] - "zu" [1121] - "zu" [1122] [964] "zu" | "zu" [1123] [965] "zu" | "zu" [1124] ... ... ... and 1 more ... actual | expected [973] "zu" | "zu" [1132] [974] "zu" | "zu" [1133] [975] "zu" | "zu" [1134] - "zu" [1135] [976] "zugunsten" | "zugunsten" [1136] [977] "zum" | "zum" [1137] [978] "zum" | "zum" [1138] [979] "zur" | "zur" [1139] [980] "zur" | "zur" [1140] - "zurck" [1141] ... ... ... and 2 more ... -- Failure ('test_pmi.R:34:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_2"]] (`actual`) not identical to b_min[["b_word"]] (`expected`). `actual[1:5]`: "Aber" "Dr" "Lieber" "Renate" "So" `expected[1:7]`: "Aber" "Dr" "Fr" "Hrt" "Lieber" "Renate" "So" actual | expected [29] "Naturschutz" | "Naturschutz" [31] [30] "Wachstum" | "Wachstum" [32] [31] "bereits" | "bereits" [33] - "drfen" [34] [32] "denn" | "denn" [35] [33] "eines" | "eines" [36] [34] "erst" | "erst" [37] [35] "gesagt" | "gesagt" [38] [36] "gibt" | "gibt" [39] - "htten" [40] ... ... ... and 16 more ... actual | expected [66] "Darin" | "Darin" [75] [67] "Dennoch" | "Dennoch" [76] [68] "Einige" | "Einige" [77] - "Fnftens" [78] [69] "Gemeinsam" | "Gemeinsam" [79] [70] "Gestern" | "Gestern" [80] [71] "Hans" | "Hans" [81] actual | expected [79] "Oder" | "Oder" [89] [80] "Oskar" | "Oskar" [90] [81] "Renate" | "Renate" [91] - "Schnen" [92] [82] "Schauen" | "Schauen" [93] [83] "Stichwort" | "Stichwort" [94] [84] "Uns" | "Uns" [95] actual | expected [98] "An" | "An" [109] [99] "Ausschuss" | "Ausschuss" [110] [100] "Jawohl" | "Jawohl" [111] - "Natrlich" [112] [101] "Uns" | "Uns" [113] [102] "ein" | "ein" [114] [103] "mehr" | "mehr" [115] - "Hand" [116] - "diesen" [117] [104] "Dazu" | "Dazu" [118] ... ... ... and 8 more ... actual | expected [113] "der" | "der" [128] [114] "im" | "im" [129] [115] "zu" | "zu" [130] - "und" [131] [116] "und" | "und" [132] [117] "da" | "da" [133] [118] "ich" | "ich" [134] [119] "Ost" | "Ost" [135] [120] "ist" | "ist" [136] [121] "der" | "der" [137] ... ... ... and 7 more ... actual | expected [140] "geht" | "geht" [158] [141] "Gegenteil" | "Gegenteil" [159] [142] "Geld" | "Geld" [160] - "knnen" [161] [143] "scheint" | "scheint" [162] - "wrde" [163] [144] "zeigt" | "zeigt" [164] [145] "Sie" | "Sie" [165] [146] "wir" | "wir" [166] actual | expected [148] "werden" | "werden" [168] [149] "brauchen" | "brauchen" [169] [150] "haben" | "haben" [170] - "mssen" [171] [151] "," | "," [172] [152] "wollen" | "wollen" [173] - "fr" [174] [153] "im" | "im" [175] [154] "soll" | "soll" [176] [155] "Bundeswehr" | "Bundeswehr" [177] `actual[166:171]`: "gab" "sollte" "sind" "-" "Renate" "und" `expected[188:194]`: "gab" "sollte" "sind" "von" "-" "Renate" "und" actual | expected [178] "nach" | "nach" [201] [179] "," | "," [202] [180] "Pothmer" | "Pothmer" [203] - "fr" [204] - "Jrgen" [205] - "Zuruf" [206] [181] "mit" | "mit" [207] [182] "unseres" | "unseres" [208] [183] "zur" | "zur" [209] [184] "," | "," [210] ... ... ... and 17 more ... actual | expected [200] "haben" | "haben" [230] [201] "ist" | "ist" [231] [202] "Haus" | "Haus" [232] - "erffne" [233] - "fge" [234] [203] "fordere" | "fordere" [235] [204] "gebe" | "gebe" [236] [205] "gratuliere" | "gratuliere" [237] `actual[223:228]`: "kommt" "wollen" "." ":" "." "im" `expected[255:261]`: "kommt" "wollen" "." "Sie" ":" "." "im" actual | expected [244] "Piltz" | "Piltz" [277] [245] "in" | "in" [278] [246] "der" | "der" [279] - "fr" [280] [247] "," | "," [281] [248] "treten" | "treten" [282] [249] "," | "," [283] [250] "in" | "in" [284] - "." [285] [251] "[" | "[" [286] ... ... ... and 7 more ... actual | expected [269] "und" | "und" [305] [270] "nur" | "nur" [306] [271] "Lammert" | "Lammert" [307] - "Rttgen" [308] [272] "so" | "so" [309] [273] "zu" | "zu" [310] [274] "." | "." [311] [275] "," | "," [312] [276] "," | "," [313] - "," [314] ... ... ... and 15 more ... actual | expected [291] "!" | "!" [332] [292] "-" | "-" [333] [293] "Ihren" | "Ihren" [334] - "drfen" [335] [294] "der" | "der" [336] [295] "einfach" | "einfach" [337] - "gefhrden" [338] [296] "heute" | "heute" [339] - "kndigen" [340] [297] "lassen" | "lassen" [341] ... ... ... and 2 more ... actual | expected [306] "vielleicht" | "vielleicht" [350] [307] "vor" | "vor" [351] [308] "wirklich" | "wirklich" [352] - "Lhne" [353] [309] "viel" | "viel" [354] [310] "wie" | "wie" [355] - "," [356] - "und" [357] [311] "." | "." [358] - "fhren" [359] ... ... ... and 10 more ... actual | expected [327] "." | "." [376] [328] "wichtiger" | "wichtiger" [377] [329] "," | "," [378] [330] "." - "," [379] [331] "von" - "stehen" [380] [332] "der" - "." [381] [333] "den" - "von" [382] [334] "allen" - "der" [383] [335] "an" - "den" [384] [336] "des" - "allen" [385] ... ... ... and 365 more ... `actual[640:645]`: "haben" "," "eine" "nur" "." "." `expected[751:758]`: "haben" "," "eine" "ein" "zu" "nur" "." "." `actual[652:657]`: "und" "ist" "werden" "nicht" "," "zu" `expected[765:771]`: "und" "ist" "werden" "fr" "nicht" "," "zu" actual | expected [667] "in" | "in" [781] [668] "keinen" | "keinen" [782] [669] "Wettbewerb" | "Wettbewerb" [783] - "Herausforderungen" [784] - "fr" [785] [670] "ist" | "ist" [786] [671] "," | "," [787] - "," [788] [672] ";" | ";" [789] [673] "als" | "als" [790] ... ... ... and 1 more ... `actual[719:724]`: "ihren" "jedem" "welchem" "," "also" "auf" `expected[836:842]`: "ihren" "jedem" "welchem" "fr" "," "also" "auf" `actual[726:731]`: "dies" "einfach" "leider" "wie" "zwar" "," `expected[844:850]`: "dies" "einfach" "leider" "nmlich" "wie" "zwar" "," `actual[734:739]`: "auch" "eine" "Menschen" "auch" "das" "mich" `expected[853:860]`: "auch" "eine" "Menschen" "es" "." "auch" "das" "mich" `actual[742:747]`: "neuen" "der" "." "wir" ":" "Woche" `expected[863:869]`: "neuen" "der" "." "knnen" "wir" ":" "Woche" actual | expected [751] "nicht" | "nicht" [873] [752] "," | "," [874] [753] "." | "." [875] - "Sie" [876] - "." [877] - "viel" [878] - "-" [879] - "aber" [880] - "sie" [881] [754] ";" | ";" [882] ... ... ... and 5 more ... actual | expected [768] "endlich" | "endlich" [898] [769] "im" | "im" [899] [770] "und" | "und" [900] - "Wochen" [901] - "den" [902] - "fr" [903] - "nicht" [904] [771] "Ihnen" | "Ihnen" [905] [772] "einem" | "einem" [906] [773] "den" | "den" [907] ... ... ... and 5 more ... `actual[835:840]`: "wie" "sein" "auch" "hat" "heute" "ihre" `expected[971:977]`: "wie" "sein" "auch" "fr" "hat" "heute" "ihre" `actual[859:864]`: "." "Zusammenhalt" "nun" "gemacht" ":" "dazu" `expected[996:1002]`: "." "Zusammenhalt" "nun" "als" "gemacht" ":" "dazu" actual | expected [866] "." | "." [1004] [867] "Sie" | "Sie" [1005] [868] "und" | "und" [1006] - "." [1007] - "fr" [1008] [869] "." | "." [1009] [870] "." | "." [1010] - "." [1011] [871] "?" | "?" [1012] [872] "mir" | "mir" [1013] ... ... ... and 1 more ... actual | expected [880] "Reaktorsicherheit" | "Reaktorsicherheit" [1021] [881] "als" | "als" [1022] [882] "anderswo" | "anderswo" [1023] - "drfen" [1024] [883] "da" | "da" [1025] [884] "dieser" | "dieser" [1026] [885] "einer" | "einer" [1027] - "mssen" [1028] [886] "mittlere" | "mittlere" [1029] [887] "nach" | "nach" [1030] ... ... ... and 1 more ... actual | expected [898] "Koalitionsvereinbarung" | "Koalitionsvereinbarung" [1041] [899] "Verfassung" | "Verfassung" [1042] [900] "," | "," [1043] - "." [1044] - "klar" [1045] [901] "," | "," [1046] [902] "." | "." [1047] [903] "haben" | "haben" [1048] [904] "worden" | "worden" [1049] - "." [1050] ... ... ... and 14 more ... `actual[924:929]`: "," "." "," "bei" "eine" "jetzt" `expected[1072:1080]`: "," "." "," "auch" "die" "die" "bei" "eine" "jetzt" actual | expected [933] "als" | "als" [1084] [934] "!" | "!" [1085] [935] "deshalb" | "deshalb" [1086] - "prfen" [1087] [936] "." | "." [1088] [937] "ist" | "ist" [1089] [938] "Signal" | "Signal" [1090] [939] "sich" | "sich" [1091] [940] "viel" | "viel" [1092] [941] "weit" | "weit" [1093] ... ... ... and 10 more ... actual | expected [961] "einen" | "einen" [1115] [962] "in" | "in" [1116] [963] "nicht" | "nicht" [1117] - "mssen" [1118] - "berwinden" [1119] [964] "Ende" | "Ende" [1120] [965] "arbeiten" | "arbeiten" [1121] [966] "beteiligen" | "beteiligen" [1122] [967] "bleiben" | "bleiben" [1123] [968] "entlasten" | "entlasten" [1124] ... ... ... and 12 more ... `actual[979:982]`: "Kurzarbeit" "Stabilisierung" "," "in" `expected[1139:1143]`: "Kurzarbeit" "Stabilisierung" "," "," "in" -- Error ('test_subcorpus.R:55:5'): generate subcorpus ------------------------- Error in `UseMethod("size")`: no applicable method for 'size' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_identical(size(p), size(sc)) at test_subcorpus.R:55:5 2. | \-testthat::quasi_label(enquo(expected), expected.label, arg = "expected") 3. | \-rlang::eval_bare(expr, quo_get_env(quo)) 4. +-polmineR::size(sc) 5. \-polmineR::size(sc) [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] Error: Test failures Execution halted * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: 1 ERROR See '/tmp/th798/16179931/R-release/1048/polmineR.Rcheck/00check.log' for details. [1] "2025-03-29 01:59:10 MST" [1] "2025-03-29 01:59:10 MST" Installing package into '/tmp/th798/16179931/R-release/1048/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16179931/R-release/1048/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-29 01:59:28 MST" * using log directory '/tmp/th798/16179931/R-release/1048/polmineR.Rcheck' * using R version 4.4.3 (2025-02-28) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'polmineR/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'polmineR' version '0.8.9' * package encoding: UTF-8 * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'polmineR' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... 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 code 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 whether startup messages can be suppressed ... 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 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 installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' ERROR Running the tests in 'tests/testthat.R' failed. Complete output: > library(testthat) > library(polmineR) WARNING: The locale of the R session is 'C': The character set is not specified. You may encounter problems when working with corpora with a latin-1 or UTF-8 encoding that include special characters. polmineR is throttled to use 2 cores as required by CRAN Repository Policy. To get full performance: * Use `n_cores <- parallel::detectCores()` to detect the number of cores available on your machine * Set number of cores using `options('polmineR.cores' = n_cores - 1)` and `data.table::setDTthreads(n_cores - 1)` Attaching package: 'polmineR' The following object is masked from 'package:testthat': context The following object is masked from 'package:base': use > use("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) > > test_check("polmineR") v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i get token ids v get token ids [24ms] i get struc ids v get struc ids [50ms] i drop tokens outside strucs v drop tokens outside strucs [35ms] i get unique s-attribute values v get unique s-attribute values [287ms] i counting token per doc v counting token per doc [231ms] i decode strucs v decode strucs [23ms] i decode and recode token ids v decode and recode token ids [23ms] i adjust ids v adjust ids [23ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [21ms] i get token ids v get token ids [54ms] i get struc ids v get struc ids [59ms] i drop tokens outside strucs v drop tokens outside strucs [30ms] i get unique s-attribute values v get unique s-attribute values [24ms] i generate unique document ids v generate unique document ids [114ms] i counting token per doc v counting token per doc [58ms] i decode tokens and generate factor v decode tokens and generate factor [69ms] i prepare row and column labels v prepare row and column labels [30ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [32ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [61ms] i assign names v assign names [9ms] i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i convert partition_bundle to `TermDocumentMatrix` i using p-attribute word i convert partition_bundle to `TermDocumentMatrix` i create temporary data.table v create temporary data.table ... done i convert partition_bundle to `TermDocumentMatrix` i assign keys to data.table v assign keys to data.table ... done i convert partition_bundle to `TermDocumentMatrix` i make unique keys v make unique keys ... done i convert partition_bundle to `TermDocumentMatrix` i run garbage collection v run garbage collection ... done i convert partition_bundle to `TermDocumentMatrix` i create TermDocumentMatrix v create TermDocumentMatrix ... done i convert partition_bundle to `TermDocumentMatrix` v convert partition_bundle to `TermDocumentMatrix` ... done i converting `TermDocumentMatrix` to `Matrix` v converting `TermDocumentMatrix` to `Matrix` ... done i get token ids v get token ids [52ms] i get struc ids v get struc ids [54ms] i drop tokens outside strucs v drop tokens outside strucs [25ms] i get unique s-attribute values v get unique s-attribute values [21ms] i generate unique document ids v generate unique document ids [112ms] i counting token per doc v counting token per doc [56ms] i decode tokens and generate factor v decode tokens and generate factor [66ms] i prepare row and column labels v prepare row and column labels [29ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [22ms] v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i distinct dates: 2 i subsetting by date i bundle class: subcorpus_bundle i subsetting by date i objects in bundle: plpr_subcorpus i subsetting by date i s-attribute for splitting ("date") is sibling of s-attribute "date" i subsetting by date i s-attribute "date" has values: yes i subsetting by date i get list of regions v get list of regions [12ms] i subsetting by date i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [36ms] i subsetting by date v subsetting by date [130ms] i generating speeches i generating names v generating names [222ms] i reorder objects v reorder objects [22ms] i coercing partitions to plpr_subcorpus v coercing partitions to plpr_subcorpus [140ms] ... get cpos and strucs i distinct dates detected: 1 i generating speeches v generating speeches [485ms] i generating names v generating names [59ms] i reordering partitions v reordering partitions [22ms] i coercing partitions to plpr_partitions v coercing partitions to plpr_partitions [21ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: REUTERS v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos ... update count statistics for slot cpos v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... no hits for query: asdfasdf ... get cpos and strucs ... no hits for query: asdfasdf v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... creating data.table with corpus positions ... adding tokens ... generating phrases ... counting ... creating bundle of count objects v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i decoding p-attribute: word v decoding p-attribute: word [174ms] i decoding p-attribute: pos v decoding p-attribute: pos [130ms] i decoding s-attribute: interjection v decoding s-attribute: interjection [173ms] i decoding s-attribute: date v decoding s-attribute: date [176ms] i decoding s-attribute: party v decoding s-attribute: party [188ms] i decoding s-attribute: speaker v decoding s-attribute: speaker [209ms] i decoding s-attribute: protocol_date v decoding s-attribute: protocol_date [146ms] i decoding s-attribute: protocol_lp v decoding s-attribute: protocol_lp [185ms] i decoding s-attribute: role v decoding s-attribute: role [163ms] i assembling data.table v assembling data.table [37ms] i decoding p-attribute: word v decoding p-attribute: word [174ms] i decoding s-attribute: party v decoding s-attribute: party [904ms] i assembling data.table v assembling data.table [11ms] i decoding p-attribute: word v decoding p-attribute: word [172ms] i assembling data.table v assembling data.table [11ms] i decoding p_attribute "word" v decoding p_attribute "word" [60ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: UNGA ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word i coercion to `partition_bundle` class v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs i s-attribute "date" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "places" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 11) v instantiate objects (n = 11) [17ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [20ms] i assign names v assign names [11ms] v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i getting sizes ... getting sizes ! corpus loaded multiple times with following registries: i getting sizes * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp i getting sizes * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i getting sizes i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i getting sizes v getting sizes [34ms] i calculate frequencies v calculate frequencies [11ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' No hits for query: asdfasdf ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' No hits for query: "asdfasdfasdfasd.*" ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting corpus positions ... number of hits: 21 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... number of hits: 7 ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... no hits for query: asdfasdf ... no matches for query (or no matches left after applying stoplist/positivelist) ... getting corpus positions ... no matches for query (or no matches left after applying stoplist/positivelist) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... dropping nodes ... counting tokens in context ... creating new index for hits ... creating new index for tokens ... putting together matrix ... filtering by positivelist i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [23ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [34ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [34ms] i assign names v assign names [11ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [14ms] i instantiate 124 plpr_partition objects v instantiate 124 plpr_partition objects [37ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [38ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [14ms] i s-attributes not ordered according to tree structure (inefficient) i decode s-attribute "party" v decode s-attribute "party" [34ms] i merge corpus position results for s-attribute "party" v merge corpus position results for s-attribute "protocol_date" [78ms] i decode s-attribute "protocol_date" v decode s-attribute "protocol_date" [49ms] i merge corpus position results for s-attribute "protocol_date" v merge corpus position results for s-attribute "speaker" [82ms] i decode s-attribute "speaker" v decode s-attribute "speaker" [54ms] i merge corpus position results for s-attribute "speaker" v merge corpus position results for s-attribute "speaker" [86ms] i aggregate results and get sizes v aggregate results and get sizes [74ms] i s-attributes are not siblings, get relationship v s-attributes are not siblings, get relationship [13ms] i order of s-attributes starts with deep descendents i get regions for s-attribute "party" v get regions for s-attribute "party" [20ms] i get values for s-attribute "speaker" v get values for s-attribute "protocol_date" [40ms] i get values for s-attribute "protocol_date" v get values for s-attribute "protocol_date" [38ms] i aggregate region sizes v aggregate region sizes [29ms] i aggregate results and get sizes v aggregate results and get sizes [12ms] ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i keep only matches for 3 values provided v keep only matches for 3 values provided [13ms] i instantiate objects (n = 3) v instantiate objects (n = 3) [16ms] i assign names v assign names [10ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is descendent of s-attribute "protocol_date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [24ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects v instantiate 37 plpr_subcorpus objects [25ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [17ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [35ms] i assign names v assign names [11ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types Error in .checkTypos(e, names_x) : Object 'foo' not found amongst [struc, cpos_left, cpos_right, id] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] i generating document ids v generating document ids ... done i getting ids v getting ids ... done i performing count v performing count ... done i decoding token ids v decoding token ids ... done i generating keys v generating keys ... done i generating simple triplet matrix v generating simple triplet matrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] i using p-attribute word i create temporary data.table v create temporary data.table ... done i assign keys to data.table v assign keys to data.table ... done i make unique keys v make unique keys ... done i run garbage collection v run garbage collection ... done i create TermDocumentMatrix v create TermDocumentMatrix ... done ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [11ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [18ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) v instantiate objects (n = 20) [19ms] i assign names v assign names [10ms] ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "speaker" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [11ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [19ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [36ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [33ms] i assign names v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) v instantiate objects (n = 124) [34ms] i assign names v assign names [11ms] ... preparing struc table ... now performing counts ... finalizing tables i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 124 plpr_subcorpus objects v instantiate 124 plpr_subcorpus objects [36ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [13ms] i instantiate 77 plpr_subcorpus objects v instantiate 77 plpr_subcorpus objects [31ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions v get list of regions [11ms] i instantiate 77 plpr_partition objects v instantiate 77 plpr_partition objects [28ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [12ms] i instantiate 5 plpr_subcorpus objects v instantiate 5 plpr_subcorpus objects [18ms] ... get cpos and strucs i bundle class: partition_bundle i objects in bundle: plpr_partition i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions v get list of regions [14ms] i instantiate 5 plpr_partition objects v instantiate 5 plpr_partition objects [20ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [15ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [18ms] i assign names v assign names [10ms] i s-attribute "date" has values: yes i get regions and get values v get regions and get values [14ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] i assign names v assign names [10ms] i s-attribute "protocol_date" has values: yes i get regions and get values v get regions and get values [13ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [18ms] i assign names v assign names [11ms] i split by s-attribute "protocol_date" i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("protocol_date") is ancestor of s-attribute "speaker" i s-attribute "protocol_date" has values: yes i get list of regions v get list of regions [13ms] i instantiate 2 plpr_subcorpus objects v instantiate 2 plpr_subcorpus objects [21ms] i objects in bundle after subsetting is 2 (3 less than before) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs ... getting counts for p-attribute(s): word v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... applying stoplist ... number of hits dropped due to stoplist: 13 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... filtering by positivelist ... number of hits dropped due to positivelist: 65 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... decode p-attribute: word ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] == Skipped tests (18) ========================================================== * On CRAN (10): 'test_as.data.table.R:9:5', 'test_as.markdown.R:13:5', 'test_as.markdown.R:73:5', 'test_cooccurrences.R:96:5', 'test_cooccurrences.R:167:5', 'test_dispersion.R:43:5', 'test_get_token_stream.R:100:5', 'test_get_token_stream.R:138:5', 'test_html.R:9:5', 'test_subcorpus_bundle.R:187:5' * empty test (2): 'test_count.R:125:1', 'test_subcorpus.R:198:1' * knowingly not working (1): 'test_as.speeches.R:46:5' * use("GermaParl2") is not TRUE (5): 'test_as.speeches.R:86:5', 'test_hits.R:26:5', 'test_split.R:35:5', 'test_split.R:83:5', 'test_subcorpus.R:159:5' == Failed tests ================================================================ -- Failure ('test_chisquare.R:38:7'): check chisquare computation -------------- `chisquare_value_selfmade` (`actual`) not equal to `chisquare_value_fn` (`expected`). `actual`: Inf `expected`: 56 -- Failure ('test_get_token_stream.R:88:5'): get_token_stream()-method for matrix input -- nchar(ts_rm) (`actual`) not identical to 159L (`expected`). `actual`: 154 `expected`: 159 -- Failure ('test_get_token_stream.R:131:5'): --------------------------------- nchar(y) (`actual`) not identical to 51328L (`expected`). `actual`: 47081 `expected`: 51328 -- Failure ('test_pmi.R:32:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- nrow(a_min) (`actual`) not identical to nrow(b_min) (`expected`). `actual`: 982 `expected`: 1143 -- Failure ('test_pmi.R:33:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_1"]] (`actual`) not identical to b_min[["a_word"]] (`expected`). `actual[4:9]`: "!" "!" "!" "\"" "\"" "\"" `expected[4:11]`: "!" "!" "!" "!" "!" "\"" "\"" "\"" `actual[24:29]`: ")" ")" ")" "," "," "," `expected[26:32]`: ")" ")" ")" "," "," "," "," `actual[44:49]`: "," "," "," "-" and 2 more... `expected[47:58]`: "," "," "," "," "," "," "," "," "," "-" ... `actual[55:60]`: "-" "-" "-" "." "." "." `expected[64:71]`: "-" "-" "-" "." "." "." "." "." actual | expected [101] ":" | ":" [112] [102] ":" | ":" [113] [103] ":" | ":" [114] - ":" [115] - "ffentlichen" [116] - "ber" [117] [104] "?" | "?" [118] [105] "?" | "?" [119] [106] "?" | "?" [120] [107] "?" | "?" [121] ... ... ... and 6 more ... actual | expected [114] "Arbeit" | "Arbeit" [129] [115] "Arbeit" | "Arbeit" [130] [116] "Arbeitnehmer" | "Arbeitnehmer" [131] - "Arbeitspltze" [132] [117] "Auch" | "Auch" [133] [118] "Auch" | "Auch" [134] [119] "Aufbau" | "Aufbau" [135] [120] "Aufgabe" | "Aufgabe" [136] [121] "Auswirkungen" | "Auswirkungen" [137] - "Brger" [138] ... ... ... and 5 more ... `actual[138:143]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" `expected[156:163]`: "Dann" "Darf" "Darum" "Das" "Das" "Das" "Das" "Das" actual | expected [148] "Dazu" | "Dazu" [168] [149] "Deshalb" | "Deshalb" [169] [150] "Deshalb" | "Deshalb" [170] - "Deshalb" [171] [151] "Deswegen" | "Deswegen" [172] [152] "Deswegen" | "Deswegen" [173] - "Deutschland" [174] [153] "Deutschland" | "Deutschland" [175] [154] "Deutschland" | "Deutschland" [176] [155] "Die" | "Die" [177] `actual[166:171]`: "Es" "Es" "Euro" "FDP" "FDP" "Familie" `expected[188:194]`: "Es" "Es" "Euro" "Flle" "FDP" "FDP" "Familie" actual | expected [178] "Frage" | "Frage" [201] [179] "Fragen" | "Fragen" [202] [180] "Frau" | "Frau" [203] - "Freiheit" [204] - "GRNEN" [205] - "GRNEN" [206] [181] "Gemeinsam" | "Gemeinsam" [207] [182] "Geschichte" | "Geschichte" [208] [183] "Gesetz" | "Gesetz" [209] [184] "Gesundheit" | "Gesundheit" [210] ... ... ... and 10 more ... `actual[196:201]`: "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `expected[225:231]`: "Herr" "Herr" "Herr" "Herr" "Hier" "Hier" "Hier" `actual[205:210]`: "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" `expected[235:242]`: "Ich" "Ich" "Ich" "Ich" "Ich" "Ideen" "Ihnen" "Ihnen" actual | expected [223] "Jetzt" | "Jetzt" [255] [224] "Jetzt" | "Jetzt" [256] [225] "Jung" | "Jung" [257] - "Knnen" [258] [226] "Kauder" | "Kauder" [259] [227] "Kinder" | "Kinder" [260] [228] "Kinder" | "Kinder" [261] actual | expected [244] "Kollegin" | "Kollegin" [277] [245] "Kommunen" | "Kommunen" [278] [246] "Konzept" | "Konzept" [279] - "Konzept" [280] [247] "Kraft" | "Kraft" [281] [248] "Kraft" | "Kraft" [282] [249] "Krise" | "Krise" [283] [250] "Krise" | "Krise" [284] - "Lndern" [285] [251] "Lafontaine" | "Lafontaine" [286] ... ... ... and 7 more ... actual | expected [269] "Naturschutz" | "Naturschutz" [305] [270] "Nicht" | "Nicht" [306] [271] "Norbert" | "Norbert" [307] - "Norbert" [308] [272] "Nur" | "Nur" [309] [273] "Opposition" | "Opposition" [310] [274] "Ordnung" | "Ordnung" [311] [275] "Partei" | "Partei" [312] [276] "Pothmer" | "Pothmer" [313] - "Prsident" [314] ... ... ... and 23 more ... actual | expected [306] "Sie" | "Sie" [350] [307] "Sie" | "Sie" [351] [308] "Sie" | "Sie" [352] - "Sittenwidrige" [353] [309] "So" | "So" [354] [310] "So" | "So" [355] - "Solidaritt" [356] - "Solidaritt" [357] [311] "Spiel" | "Spiel" [358] - "Strke" [359] ... ... ... and 10 more ... actual | expected [326] "Uhl" | "Uhl" [375] [327] "Uhr" | "Uhr" [376] [328] "Umso" | "Umso" [377] - "Vernderung" [378] [329] "Verbraucher" | "Verbraucher" [379] [330] "Versicherten" - "Verfgung" [380] [331] "Vertrag" - "Versicherten" [381] [332] "Vertreter" - "Vertrag" [382] [333] "Von" - "Vertreter" [383] [334] "Vor" - "Von" [384] ... ... ... and 170 more ... actual | expected [515] "der" | "der" [565] [516] "der" | "der" [566] [517] "der" | "der" [567] [518] "des" - "der" [568] [519] "des" - "der" [569] [520] "deshalb" - "der" [570] [521] "deshalb" - "der" [571] [522] "deutlich" - "der" [572] [523] "deutschen" - "der" [573] [524] "deutschen" - "der" [574] ... ... ... and 31 more ... actual | expected [560] "die" | "die" [610] [561] "die" | "die" [611] [562] "die" | "die" [612] [563] "diese" - "die" [613] [564] "diesem" - "die" [614] [565] "dieser" - "die" [615] [566] "dieser" - "die" [616] [567] "dieses" - "die" [617] [568] "dieses" - "die" [618] [569] "dieses" - "die" [619] ... ... ... and 129 more ... actual | expected [640] "gefordert" | "gefordert" [751] [641] "gegeben" | "gegeben" [752] [642] "gegen" | "gegen" [753] - "gehrt" [754] - "gehrt" [755] [643] "geht" | "geht" [756] [644] "gekommen" | "gekommen" [757] [645] "gelesen" | "gelesen" [758] actual | expected [652] "gemacht" | "gemacht" [765] [653] "gemeint" | "gemeint" [766] [654] "genommen" | "genommen" [767] - "gerade" [768] [655] "gerade" | "gerade" [769] [656] "gerecht" | "gerecht" [770] [657] "gerecht" | "gerecht" [771] actual | expected [667] "gibt" | "gibt" [781] [668] "gibt" | "gibt" [782] [669] "globalen" | "globalen" [783] - "groen" [784] [670] "gut" | "gut" [785] - "gut" [786] [671] "gute" | "gute" [787] - "hren" [788] [672] "haben" | "haben" [789] [673] "haben" | "haben" [790] ... ... ... and 1 more ... `actual[719:724]`: "in" "in" "in" "investieren" "ist" "ist" `expected[836:842]`: "in" "in" "in" "insbesondere" "investieren" "ist" "ist" actual | expected [728] "ist" | "ist" [846] [729] "ist" | "ist" [847] [730] "ist" | "ist" [848] - "ist" [849] [731] "jeden" | "jeden" [850] [732] "jeden" | "jeden" [851] [733] "jeder" | "jeder" [852] [734] "jetzt" | "jetzt" [853] [735] "jetzt" | "jetzt" [854] [736] "junge" | "junge" [855] ... ... ... and 5 more ... `actual[742:747]`: "keine" "kommt" "konnten" "legen" "lesen" "letzte" `expected[863:869]`: "keine" "kommt" "konnten" "leben" "legen" "lesen" "letzte" actual | expected [751] "liegen" | "liegen" [873] [752] "liegt" | "liegt" [874] [753] "liegt" | "liegt" [875] - "mchte" [876] - "mglich" [877] - "mglichst" [878] - "mssen" [879] - "mssen" [880] - "mssen" [881] [754] "machen" | "machen" [882] ... ... ... and 5 more ... actual | expected [768] "muss" | "muss" [898] [769] "muss" | "muss" [899] [770] "muss" | "muss" [900] - "nchsten" [901] - "nmlich" [902] - "nmlich" [903] - "nmlich" [904] [771] "nach" | "nach" [905] [772] "nach" | "nach" [906] [773] "neben" | "neben" [907] ... ... ... and 5 more ... `actual[835:840]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" `expected[971:977]`: "sich" "sicher" "sicherlich" "sie" "sie" "sie" "sie" actual | expected [859] "sollten" | "sollten" [996] [860] "sozialen" | "sozialen" [997] [861] "spricht" | "spricht" [998] - "strker" [999] [862] "stark" | "stark" [1000] [863] "steht" | "steht" [1001] [864] "steht" | "steht" [1002] actual | expected [867] "stellen" | "stellen" [1005] [868] "stellen" | "stellen" [1006] [869] "stellt" | "stellt" [1007] - "stimmt" [1008] - "stoen" [1009] [870] "streiten" | "streiten" [1010] - "trgt" [1011] [871] "tun" | "tun" [1012] [872] "tut" | "tut" [1013] [873] "um" | "um" [1014] `actual[890:895]`: "und" "und" "und" "uns" "uns" "uns" `expected[1031:1038]`: "und" "und" "und" "und" "und" "uns" "uns" "uns" actual | expected [898] "unserer" | "unserer" [1041] [899] "unserer" | "unserer" [1042] [900] "unternehmen" | "unternehmen" [1043] - "untersttzt" [1044] - "vllig" [1045] [901] "vereinbart" | "vereinbart" [1046] [902] "vereinbart" | "vereinbart" [1047] [903] "vereinbart" | "vereinbart" [1048] [904] "vereinbart" | "vereinbart" [1049] [905] "verhindern" | "verhindern" [1050] ... ... ... and 8 more ... actual | expected [918] "von" | "von" [1065] [919] "von" | "von" [1066] [920] "von" | "von" [1067] - "von" [1068] [921] "vor" | "vor" [1069] [922] "voran" | "voran" [1070] [923] "voranbringen" | "voranbringen" [1071] [924] "vorgenommen" | "vorgenommen" [1072] [925] "vorgenommen" | "vorgenommen" [1073] [926] "vorstellen" | "vorstellen" [1074] ... ... ... and 6 more ... `actual[931:936]`: "was" "weg" "weiter" "werden" "werden" "wert" `expected[1082:1088]`: "was" "weg" "weiter" "werden" "werden" "werden" "wert" actual | expected [939] "wie" | "wie" [1091] [940] "wie" | "wie" [1092] [941] "wie" | "wie" [1093] - "wieder" [1094] [942] "will" | "will" [1095] [943] "wir" | "wir" [1096] [944] "wir" | "wir" [1097] [945] "wir" | "wir" [1098] [946] "wir" | "wir" [1099] [947] "wir" | "wir" [1100] ... ... ... and 4 more ... actual | expected [961] "wollen" | "wollen" [1115] [962] "wollen" | "wollen" [1116] [963] "wollen" | "wollen" [1117] - "zahlen" [1118] - "zu" [1119] - "zu" [1120] - "zu" [1121] - "zu" [1122] [964] "zu" | "zu" [1123] [965] "zu" | "zu" [1124] ... ... ... and 1 more ... actual | expected [973] "zu" | "zu" [1132] [974] "zu" | "zu" [1133] [975] "zu" | "zu" [1134] - "zu" [1135] [976] "zugunsten" | "zugunsten" [1136] [977] "zum" | "zum" [1137] [978] "zum" | "zum" [1138] [979] "zur" | "zur" [1139] [980] "zur" | "zur" [1140] - "zurck" [1141] ... ... ... and 2 more ... -- Failure ('test_pmi.R:34:5'): identity of phrase detection of decode-workflow and Cooccurrences workflow -- a_min[["word_2"]] (`actual`) not identical to b_min[["b_word"]] (`expected`). `actual[1:5]`: "Aber" "Dr" "Lieber" "Renate" "So" `expected[1:7]`: "Aber" "Dr" "Fr" "Hrt" "Lieber" "Renate" "So" actual | expected [29] "Naturschutz" | "Naturschutz" [31] [30] "Wachstum" | "Wachstum" [32] [31] "bereits" | "bereits" [33] - "drfen" [34] [32] "denn" | "denn" [35] [33] "eines" | "eines" [36] [34] "erst" | "erst" [37] [35] "gesagt" | "gesagt" [38] [36] "gibt" | "gibt" [39] - "htten" [40] ... ... ... and 16 more ... actual | expected [66] "Darin" | "Darin" [75] [67] "Dennoch" | "Dennoch" [76] [68] "Einige" | "Einige" [77] - "Fnftens" [78] [69] "Gemeinsam" | "Gemeinsam" [79] [70] "Gestern" | "Gestern" [80] [71] "Hans" | "Hans" [81] actual | expected [79] "Oder" | "Oder" [89] [80] "Oskar" | "Oskar" [90] [81] "Renate" | "Renate" [91] - "Schnen" [92] [82] "Schauen" | "Schauen" [93] [83] "Stichwort" | "Stichwort" [94] [84] "Uns" | "Uns" [95] actual | expected [98] "An" | "An" [109] [99] "Ausschuss" | "Ausschuss" [110] [100] "Jawohl" | "Jawohl" [111] - "Natrlich" [112] [101] "Uns" | "Uns" [113] [102] "ein" | "ein" [114] [103] "mehr" | "mehr" [115] - "Hand" [116] - "diesen" [117] [104] "Dazu" | "Dazu" [118] ... ... ... and 8 more ... actual | expected [113] "der" | "der" [128] [114] "im" | "im" [129] [115] "zu" | "zu" [130] - "und" [131] [116] "und" | "und" [132] [117] "da" | "da" [133] [118] "ich" | "ich" [134] [119] "Ost" | "Ost" [135] [120] "ist" | "ist" [136] [121] "der" | "der" [137] ... ... ... and 7 more ... actual | expected [140] "geht" | "geht" [158] [141] "Gegenteil" | "Gegenteil" [159] [142] "Geld" | "Geld" [160] - "knnen" [161] [143] "scheint" | "scheint" [162] - "wrde" [163] [144] "zeigt" | "zeigt" [164] [145] "Sie" | "Sie" [165] [146] "wir" | "wir" [166] actual | expected [148] "werden" | "werden" [168] [149] "brauchen" | "brauchen" [169] [150] "haben" | "haben" [170] - "mssen" [171] [151] "," | "," [172] [152] "wollen" | "wollen" [173] - "fr" [174] [153] "im" | "im" [175] [154] "soll" | "soll" [176] [155] "Bundeswehr" | "Bundeswehr" [177] `actual[166:171]`: "gab" "sollte" "sind" "-" "Renate" "und" `expected[188:194]`: "gab" "sollte" "sind" "von" "-" "Renate" "und" actual | expected [178] "nach" | "nach" [201] [179] "," | "," [202] [180] "Pothmer" | "Pothmer" [203] - "fr" [204] - "Jrgen" [205] - "Zuruf" [206] [181] "mit" | "mit" [207] [182] "unseres" | "unseres" [208] [183] "zur" | "zur" [209] [184] "," | "," [210] ... ... ... and 17 more ... actual | expected [200] "haben" | "haben" [230] [201] "ist" | "ist" [231] [202] "Haus" | "Haus" [232] - "erffne" [233] - "fge" [234] [203] "fordere" | "fordere" [235] [204] "gebe" | "gebe" [236] [205] "gratuliere" | "gratuliere" [237] `actual[223:228]`: "kommt" "wollen" "." ":" "." "im" `expected[255:261]`: "kommt" "wollen" "." "Sie" ":" "." "im" actual | expected [244] "Piltz" | "Piltz" [277] [245] "in" | "in" [278] [246] "der" | "der" [279] - "fr" [280] [247] "," | "," [281] [248] "treten" | "treten" [282] [249] "," | "," [283] [250] "in" | "in" [284] - "." [285] [251] "[" | "[" [286] ... ... ... and 7 more ... actual | expected [269] "und" | "und" [305] [270] "nur" | "nur" [306] [271] "Lammert" | "Lammert" [307] - "Rttgen" [308] [272] "so" | "so" [309] [273] "zu" | "zu" [310] [274] "." | "." [311] [275] "," | "," [312] [276] "," | "," [313] - "," [314] ... ... ... and 15 more ... actual | expected [291] "!" | "!" [332] [292] "-" | "-" [333] [293] "Ihren" | "Ihren" [334] - "drfen" [335] [294] "der" | "der" [336] [295] "einfach" | "einfach" [337] - "gefhrden" [338] [296] "heute" | "heute" [339] - "kndigen" [340] [297] "lassen" | "lassen" [341] ... ... ... and 2 more ... actual | expected [306] "vielleicht" | "vielleicht" [350] [307] "vor" | "vor" [351] [308] "wirklich" | "wirklich" [352] - "Lhne" [353] [309] "viel" | "viel" [354] [310] "wie" | "wie" [355] - "," [356] - "und" [357] [311] "." | "." [358] - "fhren" [359] ... ... ... and 10 more ... actual | expected [327] "." | "." [376] [328] "wichtiger" | "wichtiger" [377] [329] "," | "," [378] [330] "." - "," [379] [331] "von" - "stehen" [380] [332] "der" - "." [381] [333] "den" - "von" [382] [334] "allen" - "der" [383] [335] "an" - "den" [384] [336] "des" - "allen" [385] ... ... ... and 365 more ... `actual[640:645]`: "haben" "," "eine" "nur" "." "." `expected[751:758]`: "haben" "," "eine" "ein" "zu" "nur" "." "." `actual[652:657]`: "und" "ist" "werden" "nicht" "," "zu" `expected[765:771]`: "und" "ist" "werden" "fr" "nicht" "," "zu" actual | expected [667] "in" | "in" [781] [668] "keinen" | "keinen" [782] [669] "Wettbewerb" | "Wettbewerb" [783] - "Herausforderungen" [784] - "fr" [785] [670] "ist" | "ist" [786] [671] "," | "," [787] - "," [788] [672] ";" | ";" [789] [673] "als" | "als" [790] ... ... ... and 1 more ... `actual[719:724]`: "ihren" "jedem" "welchem" "," "also" "auf" `expected[836:842]`: "ihren" "jedem" "welchem" "fr" "," "also" "auf" `actual[726:731]`: "dies" "einfach" "leider" "wie" "zwar" "," `expected[844:850]`: "dies" "einfach" "leider" "nmlich" "wie" "zwar" "," `actual[734:739]`: "auch" "eine" "Menschen" "auch" "das" "mich" `expected[853:860]`: "auch" "eine" "Menschen" "es" "." "auch" "das" "mich" `actual[742:747]`: "neuen" "der" "." "wir" ":" "Woche" `expected[863:869]`: "neuen" "der" "." "knnen" "wir" ":" "Woche" actual | expected [751] "nicht" | "nicht" [873] [752] "," | "," [874] [753] "." | "." [875] - "Sie" [876] - "." [877] - "viel" [878] - "-" [879] - "aber" [880] - "sie" [881] [754] ";" | ";" [882] ... ... ... and 5 more ... actual | expected [768] "endlich" | "endlich" [898] [769] "im" | "im" [899] [770] "und" | "und" [900] - "Wochen" [901] - "den" [902] - "fr" [903] - "nicht" [904] [771] "Ihnen" | "Ihnen" [905] [772] "einem" | "einem" [906] [773] "den" | "den" [907] ... ... ... and 5 more ... `actual[835:840]`: "wie" "sein" "auch" "hat" "heute" "ihre" `expected[971:977]`: "wie" "sein" "auch" "fr" "hat" "heute" "ihre" `actual[859:864]`: "." "Zusammenhalt" "nun" "gemacht" ":" "dazu" `expected[996:1002]`: "." "Zusammenhalt" "nun" "als" "gemacht" ":" "dazu" actual | expected [866] "." | "." [1004] [867] "Sie" | "Sie" [1005] [868] "und" | "und" [1006] - "." [1007] - "fr" [1008] [869] "." | "." [1009] [870] "." | "." [1010] - "." [1011] [871] "?" | "?" [1012] [872] "mir" | "mir" [1013] ... ... ... and 1 more ... actual | expected [880] "Reaktorsicherheit" | "Reaktorsicherheit" [1021] [881] "als" | "als" [1022] [882] "anderswo" | "anderswo" [1023] - "drfen" [1024] [883] "da" | "da" [1025] [884] "dieser" | "dieser" [1026] [885] "einer" | "einer" [1027] - "mssen" [1028] [886] "mittlere" | "mittlere" [1029] [887] "nach" | "nach" [1030] ... ... ... and 1 more ... actual | expected [898] "Koalitionsvereinbarung" | "Koalitionsvereinbarung" [1041] [899] "Verfassung" | "Verfassung" [1042] [900] "," | "," [1043] - "." [1044] - "klar" [1045] [901] "," | "," [1046] [902] "." | "." [1047] [903] "haben" | "haben" [1048] [904] "worden" | "worden" [1049] - "." [1050] ... ... ... and 14 more ... `actual[924:929]`: "," "." "," "bei" "eine" "jetzt" `expected[1072:1080]`: "," "." "," "auch" "die" "die" "bei" "eine" "jetzt" actual | expected [933] "als" | "als" [1084] [934] "!" | "!" [1085] [935] "deshalb" | "deshalb" [1086] - "prfen" [1087] [936] "." | "." [1088] [937] "ist" | "ist" [1089] [938] "Signal" | "Signal" [1090] [939] "sich" | "sich" [1091] [940] "viel" | "viel" [1092] [941] "weit" | "weit" [1093] ... ... ... and 10 more ... actual | expected [961] "einen" | "einen" [1115] [962] "in" | "in" [1116] [963] "nicht" | "nicht" [1117] - "mssen" [1118] - "berwinden" [1119] [964] "Ende" | "Ende" [1120] [965] "arbeiten" | "arbeiten" [1121] [966] "beteiligen" | "beteiligen" [1122] [967] "bleiben" | "bleiben" [1123] [968] "entlasten" | "entlasten" [1124] ... ... ... and 12 more ... `actual[979:982]`: "Kurzarbeit" "Stabilisierung" "," "in" `expected[1139:1143]`: "Kurzarbeit" "Stabilisierung" "," "," "in" -- Error ('test_subcorpus.R:55:5'): generate subcorpus ------------------------- Error in `UseMethod("size")`: no applicable method for 'size' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_identical(size(p), size(sc)) at test_subcorpus.R:55:5 2. | \-testthat::quasi_label(enquo(expected), expected.label, arg = "expected") 3. | \-rlang::eval_bare(expr, quo_get_env(quo)) 4. +-polmineR::size(sc) 5. \-polmineR::size(sc) [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] Error: Test failures Execution halted * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: 1 ERROR See '/tmp/th798/16179931/R-release/1048/polmineR.Rcheck/00check.log' for details. [1] "2025-03-29 02:12:48 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) --- R_version_4.4.3_2025-02-28/release_1.17.0.Rcheck/00check.log 2025-03-29 01:59:10.971989798 -0700 +++ R_version_4.4.3_2025-02-28/master_1.17.99.2cb03162a21328cc5f68a8c3b0e554f5edfcb5b9.Rcheck/00check.log 2025-03-29 02:12:48.344914800 -0700 @@ -88,28 +88,28 @@ v get struc ids [50ms] i drop tokens outside strucs - v drop tokens outside strucs [34ms] + v drop tokens outside strucs [35ms] i get unique s-attribute values - v get unique s-attribute values [290ms] + v get unique s-attribute values [287ms] i counting token per doc - v counting token per doc [221ms] + v counting token per doc [231ms] i decode strucs - v decode strucs [21ms] + v decode strucs [23ms] i decode and recode token ids - v decode and recode token ids [21ms] + v decode and recode token ids [23ms] i adjust ids - v adjust ids [21ms] + v adjust ids [23ms] i generate simple_triplet_matrix v generate simple_triplet_matrix [21ms] i get token ids - v get token ids [53ms] + v get token ids [54ms] i get struc ids v get struc ids [59ms] @@ -121,19 +121,19 @@ v get unique s-attribute values [24ms] i generate unique document ids - v generate unique document ids [108ms] + v generate unique document ids [114ms] i counting token per doc - v counting token per doc [57ms] + v counting token per doc [58ms] i decode tokens and generate factor v decode tokens and generate factor [69ms] i prepare row and column labels - v prepare row and column labels [29ms] + v prepare row and column labels [30ms] i generate simple_triplet_matrix - v generate simple_triplet_matrix [30ms] + v generate simple_triplet_matrix [32ms] i generating document ids v generating document ids ... done @@ -176,7 +176,7 @@ v get regions and get values [15ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [60ms] + v instantiate objects (n = 124) [61ms] i assign names v assign names [9ms] @@ -238,25 +238,25 @@ v converting `TermDocumentMatrix` to `Matrix` ... done i get token ids - v get token ids [51ms] + v get token ids [52ms] i get struc ids v get struc ids [54ms] i drop tokens outside strucs - v drop tokens outside strucs [24ms] + v drop tokens outside strucs [25ms] i get unique s-attribute values - v get unique s-attribute values [20ms] + v get unique s-attribute values [21ms] i generate unique document ids - v generate unique document ids [109ms] + v generate unique document ids [112ms] i counting token per doc - v counting token per doc [55ms] + v counting token per doc [56ms] i decode tokens and generate factor - v decode tokens and generate factor [67ms] + v decode tokens and generate factor [66ms] i prepare row and column labels v prepare row and column labels [29ms] @@ -282,29 +282,29 @@ i s-attribute "date" has values: yes i subsetting by date i get list of regions - v get list of regions [11ms] + v get list of regions [12ms] i subsetting by date i instantiate 2 plpr_subcorpus objects - v instantiate 2 plpr_subcorpus objects [35ms] + v instantiate 2 plpr_subcorpus objects [36ms] i subsetting by date - v subsetting by date [127ms] + v subsetting by date [130ms] i generating speeches i generating names - v generating names [219ms] + v generating names [222ms] i reorder objects v reorder objects [22ms] i coercing partitions to plpr_subcorpus - v coercing partitions to plpr_subcorpus [138ms] + v coercing partitions to plpr_subcorpus [140ms] ... get cpos and strucs i distinct dates detected: 1 i generating speeches - v generating speeches [463ms] + v generating speeches [485ms] i generating names v generating names [59ms] @@ -429,49 +429,49 @@ ... no hits for query: asdfasdf v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... creating data.table with corpus positions ... adding tokens ... generating phrases @@ -479,94 +479,94 @@ ... creating bundle of count objects v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... no hits for query: asdfasdfasdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i decoding p-attribute: word - v decoding p-attribute: word [158ms] + v decoding p-attribute: word [174ms] i decoding p-attribute: pos - v decoding p-attribute: pos [124ms] + v decoding p-attribute: pos [130ms] i decoding s-attribute: interjection - v decoding s-attribute: interjection [167ms] + v decoding s-attribute: interjection [173ms] i decoding s-attribute: date - v decoding s-attribute: date [173ms] + v decoding s-attribute: date [176ms] i decoding s-attribute: party - v decoding s-attribute: party [178ms] + v decoding s-attribute: party [188ms] i decoding s-attribute: speaker - v decoding s-attribute: speaker [203ms] + v decoding s-attribute: speaker [209ms] i decoding s-attribute: protocol_date - v decoding s-attribute: protocol_date [141ms] + v decoding s-attribute: protocol_date [146ms] i decoding s-attribute: protocol_lp - v decoding s-attribute: protocol_lp [178ms] + v decoding s-attribute: protocol_lp [185ms] i decoding s-attribute: role - v decoding s-attribute: role [160ms] + v decoding s-attribute: role [163ms] i assembling data.table - v assembling data.table [35ms] + v assembling data.table [37ms] i decoding p-attribute: word - v decoding p-attribute: word [165ms] + v decoding p-attribute: word [174ms] i decoding s-attribute: party - v decoding s-attribute: party [860ms] + v decoding s-attribute: party [904ms] i assembling data.table v assembling data.table [11ms] i decoding p-attribute: word - v decoding p-attribute: word [161ms] + v decoding p-attribute: word [172ms] i assembling data.table - v assembling data.table [10ms] + v assembling data.table [11ms] i decoding p_attribute "word" - v decoding p_attribute "word" [53ms] + v decoding p_attribute "word" [60ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -577,317 +577,317 @@ ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word i coercion to `partition_bundle` class v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ... combining frequency lists ... statistical test: chisquare v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting counts for p-attribute(s): word ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ... get cpos and strucs i s-attribute "date" has values: yes i get regions and get values - v get regions and get values [14ms] + v get regions and get values [15ms] i instantiate objects (n = 5) - v instantiate objects (n = 5) [15ms] + v instantiate objects (n = 5) [17ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ... get cpos and strucs - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ... get cpos and strucs + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "places" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 11) - v instantiate objects (n = 11) [16ms] + v instantiate objects (n = 11) [17ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [18ms] + v instantiate objects (n = 20) [20ms] i assign names - v assign names [9ms] + v assign names [11ms] v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i getting sizes ... getting sizes ! corpus loaded multiple times with following registries: i getting sizes - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp i getting sizes - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry i getting sizes - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i getting sizes - v getting sizes [32ms] + v getting sizes [34ms] i calculate frequencies - v calculate frequencies [9ms] + v calculate frequencies [11ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' No hits for query: asdfasdf ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' No hits for query: "asdfasdfasdfasd.*" ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... getting corpus positions ... number of hits: 21 ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts ... getting corpus positions ... number of hits: 7 ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... generating contexts @@ -897,45 +897,45 @@ ... getting corpus positions ... no matches for query (or no matches left after applying stoplist/positivelist) ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... dropping nodes ... counting tokens in context ... creating new index for hits @@ -947,107 +947,107 @@ i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [11ms] + v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects - v instantiate 37 plpr_subcorpus objects [22ms] + v instantiate 37 plpr_subcorpus objects [23ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [18ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [14ms] + v get regions and get values [16ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [32ms] + v instantiate objects (n = 124) [34ms] i assign names - v assign names [9ms] + v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [15ms] + v get regions and get values [16ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [33ms] + v instantiate objects (n = 124) [34ms] i assign names - v assign names [10ms] + v assign names [11ms] ... get cpos and strucs i bundle class: partition_bundle @@ -1055,10 +1055,10 @@ i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [13ms] + v get list of regions [14ms] i instantiate 124 plpr_partition objects - v instantiate 124 plpr_partition objects [35ms] + v instantiate 124 plpr_partition objects [37ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus @@ -1068,155 +1068,155 @@ v get list of regions [13ms] i instantiate 124 plpr_subcorpus objects - v instantiate 124 plpr_subcorpus objects [36ms] + v instantiate 124 plpr_subcorpus objects [38ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS i s-attributes are not siblings, get relationship - v s-attributes are not siblings, get relationship [13ms] + v s-attributes are not siblings, get relationship [14ms] i s-attributes not ordered according to tree structure (inefficient) i decode s-attribute "party" - v decode s-attribute "party" [33ms] + v decode s-attribute "party" [34ms] i merge corpus position results for s-attribute "party" - v merge corpus position results for s-attribute "protocol_date" [75ms] + v merge corpus position results for s-attribute "protocol_date" [78ms] i decode s-attribute "protocol_date" - v decode s-attribute "protocol_date" [46ms] + v decode s-attribute "protocol_date" [49ms] i merge corpus position results for s-attribute "protocol_date" - v merge corpus position results for s-attribute "speaker" [78ms] + v merge corpus position results for s-attribute "speaker" [82ms] i decode s-attribute "speaker" - v decode s-attribute "speaker" [50ms] + v decode s-attribute "speaker" [54ms] i merge corpus position results for s-attribute "speaker" - v merge corpus position results for s-attribute "speaker" [85ms] + v merge corpus position results for s-attribute "speaker" [86ms] i aggregate results and get sizes - v aggregate results and get sizes [69ms] + v aggregate results and get sizes [74ms] i s-attributes are not siblings, get relationship - v s-attributes are not siblings, get relationship [12ms] + v s-attributes are not siblings, get relationship [13ms] i order of s-attributes starts with deep descendents i get regions for s-attribute "party" - v get regions for s-attribute "party" [19ms] + v get regions for s-attribute "party" [20ms] i get values for s-attribute "speaker" - v get values for s-attribute "protocol_date" [36ms] + v get values for s-attribute "protocol_date" [40ms] i get values for s-attribute "protocol_date" - v get values for s-attribute "protocol_date" [34ms] + v get values for s-attribute "protocol_date" [38ms] i aggregate region sizes - v aggregate region sizes [28ms] + v aggregate region sizes [29ms] i aggregate results and get sizes - v aggregate results and get sizes [11ms] + v aggregate results and get sizes [12ms] ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [16ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ... get cpos and strucs i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [15ms] + v get regions and get values [16ms] i keep only matches for 3 values provided - v keep only matches for 3 values provided [11ms] + v keep only matches for 3 values provided [13ms] i instantiate objects (n = 3) - v instantiate objects (n = 3) [15ms] + v instantiate objects (n = 3) [16ms] i assign names - v assign names [9ms] + v assign names [10ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. i bundle class: subcorpus_bundle @@ -1224,30 +1224,30 @@ i s-attribute for splitting ("speaker") is descendent of s-attribute "protocol_date" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [11ms] + v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects - v instantiate 37 plpr_subcorpus objects [21ms] + v instantiate 37 plpr_subcorpus objects [24ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [11ms] + v get list of regions [13ms] i instantiate 37 plpr_subcorpus objects - v instantiate 37 plpr_subcorpus objects [22ms] + v instantiate 37 plpr_subcorpus objects [25ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [15ms] + v get regions and get values [17ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [33ms] + v instantiate objects (n = 124) [35ms] i assign names - v assign names [9ms] + v assign names [11ms] x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -1255,91 +1255,91 @@ v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ... get cpos and strucs ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types Error in .checkTypos(e, names_x) : Object 'foo' not found amongst [struc, cpos_left, cpos_right, id] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i Cannot map s-attributes and types x Could not find package GermaParl2. Please check for typos, and/or whether it is installed for the R version you are using. ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] i generating document ids v generating document ids ... done @@ -1360,18 +1360,18 @@ v generating simple triplet matrix ... done ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] i using p-attribute word i create temporary data.table @@ -1390,152 +1390,152 @@ v create TermDocumentMatrix ... done ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [18ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [18ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [18ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [11ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [10ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [18ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i s-attribute "id" has values: yes i get regions and get values - v get regions and get values [9ms] + v get regions and get values [11ms] i instantiate objects (n = 20) - v instantiate objects (n = 20) [17ms] + v instantiate objects (n = 20) [19ms] i assign names - v assign names [9ms] + v assign names [10ms] ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "speaker" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [10ms] + v get list of regions [11ms] i instantiate 2 plpr_subcorpus objects - v instantiate 2 plpr_subcorpus objects [17ms] + v instantiate 2 plpr_subcorpus objects [19ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [15ms] + v get regions and get values [16ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [34ms] + v instantiate objects (n = 124) [36ms] i assign names - v assign names [9ms] + v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values - v get regions and get values [15ms] + v get regions and get values [16ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [32ms] + v instantiate objects (n = 124) [33ms] i assign names - v assign names [9ms] + v assign names [11ms] i s-attribute "speaker" has values: yes i get regions and get values v get regions and get values [16ms] i instantiate objects (n = 124) - v instantiate objects (n = 124) [32ms] + v instantiate objects (n = 124) [34ms] i assign names - v assign names [9ms] + v assign names [11ms] ... preparing struc table ... now performing counts @@ -1545,20 +1545,20 @@ i s-attribute for splitting ("speaker") is sibling of s-attribute "interjection" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [12ms] + v get list of regions [13ms] i instantiate 124 plpr_subcorpus objects - v instantiate 124 plpr_subcorpus objects [35ms] + v instantiate 124 plpr_subcorpus objects [36ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("speaker") is sibling of s-attribute "date" i s-attribute "speaker" has values: yes i get list of regions - v get list of regions [12ms] + v get list of regions [13ms] i instantiate 77 plpr_subcorpus objects - v instantiate 77 plpr_subcorpus objects [29ms] + v instantiate 77 plpr_subcorpus objects [31ms] ... get cpos and strucs i bundle class: partition_bundle @@ -1569,14 +1569,14 @@ v get list of regions [11ms] i instantiate 77 plpr_partition objects - v instantiate 77 plpr_partition objects [29ms] + v instantiate 77 plpr_partition objects [28ms] i bundle class: subcorpus_bundle i objects in bundle: plpr_subcorpus i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions - v get list of regions [13ms] + v get list of regions [12ms] i instantiate 5 plpr_subcorpus objects v instantiate 5 plpr_subcorpus objects [18ms] @@ -1587,24 +1587,24 @@ i s-attribute for splitting ("date") is sibling of s-attribute "interjection" i s-attribute "date" has values: yes i get list of regions - v get list of regions [13ms] + v get list of regions [14ms] i instantiate 5 plpr_partition objects - v instantiate 5 plpr_partition objects [18ms] + v instantiate 5 plpr_partition objects [20ms] i s-attribute "date" has values: yes i get regions and get values - v get regions and get values [14ms] + v get regions and get values [15ms] i instantiate objects (n = 5) - v instantiate objects (n = 5) [16ms] + v instantiate objects (n = 5) [18ms] i assign names - v assign names [9ms] + v assign names [10ms] i s-attribute "date" has values: yes i get regions and get values - v get regions and get values [15ms] + v get regions and get values [14ms] i instantiate objects (n = 5) v instantiate objects (n = 5) [17ms] @@ -1614,13 +1614,13 @@ i s-attribute "protocol_date" has values: yes i get regions and get values - v get regions and get values [11ms] + v get regions and get values [13ms] i instantiate objects (n = 5) - v instantiate objects (n = 5) [17ms] + v instantiate objects (n = 5) [18ms] i assign names - v assign names [10ms] + v assign names [11ms] i split by s-attribute "protocol_date" i bundle class: subcorpus_bundle @@ -1628,10 +1628,10 @@ i s-attribute for splitting ("protocol_date") is ancestor of s-attribute "speaker" i s-attribute "protocol_date" has values: yes i get list of regions - v get list of regions [11ms] + v get list of regions [13ms] i instantiate 2 plpr_subcorpus objects - v instantiate 2 plpr_subcorpus objects [20ms] + v instantiate 2 plpr_subcorpus objects [21ms] i objects in bundle after subsetting is 2 (3 less than before) v corpus loaded: GERMAPARLMINI (version: 0.1.0 | build date: 2023-04-16) @@ -1639,89 +1639,89 @@ ... getting counts for p-attribute(s): word v corpus loaded: REUTERS ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ... get cpos and strucs - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ... get cpos and strucs + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' v corpus loaded: REUTERS v corpus loaded: UNGA ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... applying stoplist ... number of hits dropped due to stoplist: 13 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... filtering by positivelist ... number of hits dropped due to positivelist: 65 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' - ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' + ! corpus loaded multiple times with following registries: + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' ... checking that all p-attributes are available ... already present - skip getting ids for p-attribute: word ... decode p-attribute: word ... new number of hits: 12 ... update count statistics for slot cpos ! corpus loaded multiple times with following registries: - * /tmp/th798/16179931/RtmpuKKQ68/registry_tmp - * /tmp/th798/16179931/RtmpuKKQ68/polmineR_registry - i using '/tmp/th798/16179931/RtmpuKKQ68/registry_tmp' + * /tmp/th798/16179931/RtmpJdCvn2/registry_tmp + * /tmp/th798/16179931/RtmpJdCvn2/polmineR_registry + i using '/tmp/th798/16179931/RtmpJdCvn2/registry_tmp' [ FAIL 7 | WARN 48926 | SKIP 18 | PASS 684 ] == Skipped tests (18) ========================================================== > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } >