Last updated on 2026-06-07 05:50:15 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.2 | 13.39 | 113.86 | 127.25 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.1.2 | 9.98 | 79.49 | 89.47 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.1.2 | 23.00 | 171.04 | 194.04 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.1.2 | 22.00 | 168.15 | 190.15 | OK | |
| r-devel-windows-x86_64 | 0.1.2 | 15.00 | 112.00 | 127.00 | OK | |
| r-patched-linux-x86_64 | 0.1.2 | 12.44 | 104.35 | 116.79 | OK | |
| r-release-linux-x86_64 | 0.1.2 | 12.05 | 103.40 | 115.45 | OK | |
| r-release-macos-arm64 | 0.1.2 | 3.00 | 27.00 | 30.00 | OK | |
| r-release-macos-x86_64 | 0.1.2 | 9.00 | 118.00 | 127.00 | OK | |
| r-release-windows-x86_64 | 0.1.2 | 16.00 | 112.00 | 128.00 | OK | |
| r-oldrel-macos-arm64 | 0.1.2 | 3.00 | 33.00 | 36.00 | OK | |
| r-oldrel-macos-x86_64 | 0.1.2 | 10.00 | 199.00 | 209.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.2 | 20.00 | 146.00 | 166.00 | OK |
Version: 0.1.2
Check: examples
Result: ERROR
Running examples in ‘paths-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: summary.paths
> ### Title: Summarizing Output from Causal Paths Analysis
> ### Aliases: summary.paths print.summary.paths
>
> ### ** Examples
>
> # **For illustration purposes a small number of bootstrap replicates are used**
>
> data(tatar)
>
> m1 <- c("trust_g1", "victim_g1", "fear_g1")
> m2 <- c("trust_g2", "victim_g2", "fear_g2")
> m3 <- c("trust_g3", "victim_g3", "fear_g3")
> mediators <- list(m1, m2, m3)
>
> formula_m0 <- annex ~ kulak + prosoviet_pre + religiosity_pre + land_pre +
+ orchard_pre + animals_pre + carriage_pre + otherprop_pre + violence
> formula_m1 <- update(formula_m0, ~ . + trust_g1 + victim_g1 + fear_g1)
> formula_m2 <- update(formula_m1, ~ . + trust_g2 + victim_g2 + fear_g2)
> formula_m3 <- update(formula_m2, ~ . + trust_g3 + victim_g3 + fear_g3)
> formula_ps <- violence ~ kulak + prosoviet_pre + religiosity_pre +
+ land_pre + orchard_pre + animals_pre + carriage_pre + otherprop_pre
>
> ####################################################
> # Causal Paths Analysis using GLM
> ####################################################
>
> # outcome models
> glm_m0 <- glm(formula_m0, family = binomial("logit"), data = tatar)
> glm_m1 <- glm(formula_m1, family = binomial("logit"), data = tatar)
> glm_m2 <- glm(formula_m2, family = binomial("logit"), data = tatar)
> glm_m3 <- glm(formula_m3, family = binomial("logit"), data = tatar)
> glm_ymodels <- list(glm_m0, glm_m1, glm_m2, glm_m3)
>
> # propensity score model
> glm_ps <- glm(formula_ps, family = binomial("logit"), data = tatar)
>
> # causal paths analysis using glm
> # note: For illustration purposes only a small number of bootstrap replicates are used
> paths_glm <- paths(a = "violence", y = "annex", m = mediators,
+ glm_ymodels, ps_model = glm_ps, data = tatar, nboot = 3)
..Warning in file(file, if (append) "a" else "w") :
cannot open file '/tmp/Rtmpofpxyd/file2f6aec37dac7a1': No space left on device
Error in file(file, if (append) "a" else "w") :
cannot open the connection
Calls: paths ... Map -> mapply -> <Anonymous> -> fit -> sink -> file
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc