CRAN Package Check Results for Package dyads

Last updated on 2025-05-19 01:49:52 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.2.1 7.22 61.83 69.05 NOTE
r-devel-linux-x86_64-debian-gcc 1.2.1 5.42 40.97 46.39 NOTE
r-devel-linux-x86_64-fedora-clang 1.2.1 111.50 OK
r-devel-linux-x86_64-fedora-gcc 1.2.1 107.03 OK
r-devel-windows-x86_64 1.2.1 9.00 64.00 73.00 ERROR
r-patched-linux-x86_64 1.2.1 8.04 58.64 66.68 OK
r-release-linux-x86_64 1.2.1 7.20 59.24 66.44 OK
r-release-macos-arm64 1.2.1 34.00 OK
r-release-macos-x86_64 1.2.1 62.00 OK
r-release-windows-x86_64 1.2.1 9.00 78.00 87.00 OK
r-oldrel-macos-arm64 1.2.1 30.00 OK
r-oldrel-macos-x86_64 1.2.1 46.00 OK
r-oldrel-windows-x86_64 1.2.1 12.00 90.00 102.00 OK

Check Details

Version: 1.2.1
Check: CRAN incoming feasibility
Result: NOTE Maintainer: ‘Bonne J.H. Zijlstra <B.J.H.Zijlstra@uva.nl>’ No Authors@R field in DESCRIPTION. Please add one, modifying Authors@R: person(given = c("Bonne", "J.H."), family = "Zijlstra", role = c("aut", "cre"), email = "B.J.H.Zijlstra@uva.nl") as necessary. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Version: 1.2.1
Check: examples
Result: ERROR Running examples in 'dyads-Ex.R' failed The error most likely occurred in: > ### Name: dyads-package > ### Title: dyads > ### Aliases: dyads-package dyads > > ### ** Examples > > > # create a very small network with covariates for illustrative purposes > S <- c(1,0,1,0,1,1,0,1,0,1) > REC <- (S*-1)+1 > D1 <- matrix(c(0,1,0,1,0,1,0,1,0,1, + 0,0,0,1,0,1,0,1,0,1, + 1,1,0,0,1,0,0,0,0,0, + 1,1,1,0,1,0,0,0,0,1, + 1,0,1,0,0,1,1,0,1,0, + 0,0,0,0,0,0,1,1,1,1, + 0,0,0,0,0,1,0,1,0,1, + 1,0,0,0,0,1,1,0,1,1, + 0,1,0,1,0,1,0,1,0,0, + 1,0,1,1,1,0,0,0,0,0), ncol=10) > D2 <- abs(matrix(rep(S,10), byrow = FALSE, ncol= 10) - + matrix(rep(REC,10), byrow = TRUE, ncol= 10)) > R <- D1*t(D1) > Y <- matrix(c(0,1,1,1,1,1,0,0,1,1, + 0,0,0,1,1,1,0,0,1,0, + 1,1,0,1,1,1,0,0,1,1, + 1,1,1,0,1,1,0,1,1,0, + 1,1,1,1,0,1,1,0,1,1, + 0,1,1,1,1,0,1,1,1,0, + 1,0,1,0,1,1,0,1,0,1, + 0,1,1,1,0,1,1,0,1,1, + 1,0,1,0,1,0,1,1,0,1, + 1,1,1,0,0,1,1,1,1,0), ncol=10) > > # estimate p2 model > p2(Y,sender= ~ S, receiver = ~ REC, density = ~ D1 + D2, reciprocity= ~ R, + burnin = 100, sample = 400, adapt = 10) Error in chol.default(sigma) : the leading minor of order 5 is not positive Calls: p2 -> as.vector -> <Anonymous> -> chol -> chol.default Execution halted Flavor: r-devel-windows-x86_64