Last updated on 2026-07-21 18:51:02 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.1.5 | 2.66 | 27.91 | 30.57 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.1.5 | 2.27 | 22.11 | 24.38 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.1.5 | 56.10 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 1.1.5 | 25.34 | OK | |||
| r-devel-windows-x86_64 | 1.1.5 | 6.00 | 92998.00 | 93004.00 | ERROR | |
| r-patched-linux-x86_64 | 1.1.5 | 2.60 | 25.72 | 28.32 | OK | |
| r-release-linux-x86_64 | 1.1.5 | 2.73 | 25.87 | 28.60 | OK | |
| r-release-macos-arm64 | 1.1.5 | 1.00 | 11.00 | 12.00 | OK | |
| r-release-macos-x86_64 | 1.1.5 | 2.00 | 31.00 | 33.00 | OK | |
| r-release-windows-x86_64 | 1.1.5 | 4.00 | 296.00 | 300.00 | OK | |
| r-oldrel-macos-arm64 | 1.1.5 | 1.00 | 16.00 | 17.00 | OK | |
| r-oldrel-macos-x86_64 | 1.1.5 | 2.00 | 68.00 | 70.00 | OK | |
| r-oldrel-windows-x86_64 | 1.1.5 | 6.00 | 399.00 | 405.00 | OK |
Version: 1.1.5
Check: examples
Result: ERROR
Running examples in 'JuliaConnectoR-Ex.R' failed
The error most likely occurred in:
> ### Name: juliaImport
> ### Title: Load and import a Julia package via 'import' statement
> ### Aliases: juliaImport
>
> ### ** Examples
>
> if (juliaSetupOk()) {
+
+ # Importing a package and using one of its exported functions
+ UUIDs <- juliaImport("UUIDs")
+ juliaCall("string", UUIDs$uuid4())
+
+
+ # Importing a module without a package
+ testModule <- system.file("examples", "TestModule1.jl",
+ package = "JuliaConnectoR")
+ # take a look at the file
+ writeLines(readLines(testModule))
+ # load in Julia
+ juliaCall("include", testModule)
+ # import in R via relative module path
+ TestModule1 <- juliaImport(".TestModule1")
+ TestModule1$test1()
+
+ # Importing a local module is also possible in one line,
+ # by directly using the module object returned by "include".
+ TestModule1 <- juliaImport(juliaCall("include", testModule))
+ TestModule1$test1()
+
+
+ # Importing a submodule
+ testModule <- system.file("examples", "TestModule1.jl",
+ package = "JuliaConnectoR")
+ juliaCall("include", testModule)
+ # load sub-module via module path
+ SubModule1 <- juliaImport(".TestModule1.SubModule1")
+ # call function of submodule
+ SubModule1$test2()
+
+
+ # Functions using non-ASCII characters
+ greekModule <- system.file("examples", "GreekModule.jl",
+ package = "JuliaConnectoR")
+ suppressWarnings({ # importing gives a warning on non-UTF-8 locales
+ GreekModule <- juliaImport(juliaCall("include", greekModule))
+ })
+ # take a look at the file
+ cat(readLines(greekModule, encoding = "UTF-8"), sep = "\n")
+ # use alternative names
+ GreekModule$`<sigma>`(1)
+ GreekModule$`log<sigma>`(1)
+ }
Starting Julia ...
Flavor: r-devel-windows-x86_64