In the following code I run the arulesSequences::cspade()
function from RStudio (with and without administrator privileges) on a Windows 10 OS. In both cases it fails with the error below.
It works from Rterm (with admin privileges) and also from RStudio under Ubuntu. However, I need to get it working in RStudio under Windows 10...
# install.packages("arulesSequences")
library(arulesSequences)
#> Loading required package: arules
#> Loading required package: Matrix
#>
#> Attaching package: 'arules'
#> The following objects are masked from 'package:base':
#>
#> abbreviate, write
load(system.file("data", "zaki.rda", package = "arulesSequences", lib.loc = .libPaths()))
cspade(zaki, parameter = list(support = 0.1), control = list(verbose = TRUE))
#>
#> parameter specification:
#> support : 0.1
#> maxsize : 10
#> maxlen : 10
#>
#> algorithmic control:
#> bfstype : FALSE
#> verbose : TRUE
#> summary : FALSE
#> tidLists : FALSE
#>
#> preprocessing ... 1 partition(s), 0 MB [0.06s]
#> mining transactions ... 0.11 MB [0.06s]
#> reading sequences ... [0.53s]
#>
#> total elapsed time: 0.65s
#> set of 3917 sequences
Created on 2019-02-14 by the reprex package (v0.2.1)
Any help regarding solutions, workarounds or other hints is very much appreciated!
PS: I might be able to get further admin support from my company to fix issues regarding permissions. However, they are not experienced in R. So any hints regarding possible permission issues would also be helpful.
PPS: Not sure if this is a general, an IDE or an Admin question. Pls. feel free to move this appropriately.