Last updated on 2019-12-11 18:48:52 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags | 
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.4 | 2.68 | 28.36 | 31.04 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.1.4 | 2.19 | 22.84 | 25.03 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.1.4 | 39.84 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.1.4 | 38.47 | OK | |||
| r-devel-windows-ix86+x86_64 | 0.1.4 | 5.00 | 55.00 | 60.00 | ERROR | |
| r-devel-windows-ix86+x86_64-gcc8 | 0.1.4 | 5.00 | 54.00 | 59.00 | ERROR | |
| r-patched-linux-x86_64 | 0.1.4 | 2.17 | 26.30 | 28.47 | OK | |
| r-patched-solaris-x86 | 0.1.4 | 54.60 | ERROR | |||
| r-release-linux-x86_64 | 0.1.4 | 2.08 | 26.46 | 28.54 | OK | |
| r-release-windows-ix86+x86_64 | 0.1.4 | 5.00 | 35.00 | 40.00 | ERROR | |
| r-release-osx-x86_64 | 0.1.4 | OK | ||||
| r-oldrel-windows-ix86+x86_64 | 0.1.4 | 3.00 | 36.00 | 39.00 | ERROR | |
| r-oldrel-osx-x86_64 | 0.1.4 | OK | 
Version: 0.1.4
Check: examples
Result: ERROR
    Running examples in 'erhcv-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: VerifyTree
    > ### Title: Verify tree structure
    > ### Aliases: VerifyTree
    > 
    > ### ** Examples
    > 
    > require(HAC)
    Loading required package: HAC
    Loading required package: copula
    > str <- hac(type = 1, tree = list(list(list("X4", "X5", 6),
    +                                       "X6", 3), "X1", list("X2", "X3", 10), 1))
    > 
    > set.seed(2018)
    > U.. <- rHAC(1000, str)
    Warning in hac2nacopula(hac) : NAs introduced by coercion
    [1] "X4 <-> 1"
    [1] "X5 <-> 2"
    [1] "X6 <-> 3"
    [1] "X1 <-> 4"
    [1] "X2 <-> 5"
    [1] "X3 <-> 6"
    > U.. <- U..[,c(4, 5, 6, 1, 2, 3)]
    > 
    > ## Tree via hclust
    > spear <- cor(U.., method = "sp")
    > clust <- hclust(dist(spear, method = "maximum"),
    +                 method = "complete")
    > tree1 <- hclust2tree(clust)
    > 
    > ## Tree after verification
    > tree2 <- VerifyTree(U.., alpha = 0.95,
    +                     distance.method = "maximum",
    +                     hclust.method = "complete")$Tree
    > 
    > ## Comparison
    > par(mfrow = c(1, 3))
    > tree2plot(tree1)
    Error in plot.Node(e1$O) : 
      Package "DiagrammeR" is required to plot a `data.tree::Node`object. Please install it.
    Calls: tree2plot -> plot -> plot.Node
    Execution halted
Flavors: r-devel-windows-ix86+x86_64, r-devel-windows-ix86+x86_64-gcc8, r-patched-solaris-x86, r-release-windows-ix86+x86_64, r-oldrel-windows-ix86+x86_64