R Under development (unstable) (2024-07-01 r86857 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > # part of the Statnet suite > # of packages for network analysis, http://statnet.org . > # > # This software is distributed under the GPL-3 license. It is free, > # open source, and has the attribution requirements (GPL Section 7) at > # http://statnet.org/attribution > # > # Copyright 2012-2013 Statnet Commons > ####################################################################### > > #test drawing networks with weighted edges > > require(ndtv) Loading required package: ndtv Loading required package: network 'network' 1.18.2 (2023-12-04), part of the Statnet Project * 'news(package="network")' for changes since last version * 'citation("network")' for citation information * 'https://statnet.org' for help, support, and other information Loading required package: networkDynamic 'networkDynamic' 0.11.4 (2023-12-10?), part of the Statnet Project * 'news(package="networkDynamic")' for changes since last version * 'citation("networkDynamic")' for citation information * 'https://statnet.org' for help, support, and other information Loading required package: animation Loading required package: sna Loading required package: statnet.common Attaching package: 'statnet.common' The following objects are masked from 'package:base': attr, order sna: Tools for Social Network Analysis Version 2.7-2 created on 2023-12-05. copyright (c) 2005, Carter T. Butts, University of California-Irvine For citation information, type citation("sna"). Type help(package="sna") to get started. 'ndtv' 0.13.4 (2023-06-30), part of the Statnet Project * 'news(package="ndtv")' for changes since last version * 'citation("ndtv")' for citation information * 'https://statnet.org' for help, support, and other information > test <- network.initialize(5,directed=F) > test[1,2]<-1 > test[3,2]<-1 > test[1,3]<-1 > test[1,4]<-1 > test[5,1]<-1 > test[4,5]<-1 > activate.edge.attribute(test,'weight',value=1,onset=0,terminus=5) > activate.edge.attribute(test,'weight',value=2,onset=1,terminus=2,e=2) > activate.edge.attribute(test,'weight',value=3,onset=2,terminus=3,e=2) > activate.edge.attribute(test,'weight',value=10,onset=3,terminus=4,e=2) > activate.edge.attribute(test,'weight',value=0.8,onset=1,terminus=2,e=5) > activate.edge.attribute(test,'weight',value=0.5,onset=2,terminus=3,e=5) > activate.edge.attribute(test,'weight',value=0.2,onset=3,terminus=4,e=5) > > > # test drawing them with different widths > slice.par<-list(start=0,end=3,interval=1, aggregate.dur=1,rule="latest") > test <-compute.animation(test,slice.par=slice.par,animation.mode="kamadakawai") Calculating layout for network slice from time 0 to 1 Calculating layout for network slice from time 1 to 2 Calculating layout for network slice from time 2 to 3 Calculating layout for network slice from time 3 to 4 > render.animation(test,render.par=list(tween.frames=10,show.time=T),edge.lwd='weight',edge.label='weight') rendering 10 frames for slice 0 rendering 10 frames for slice 1 rendering 10 frames for slice 2 rendering 10 frames for slice 3 > > # test using default weights created by network.collapse > test <- network.initialize(5,directed=F) > test[1,2]<-1 > test[3,2]<-1 > test[1,3]<-1 > test[1,4]<-1 > test[5,1]<-1 > test[4,5]<-1 > activate.edges(test,onset=c(1,3,5),terminus=c(2,4,6),e=c(1,1,1)) > activate.edges(test,onset=0,terminus=6,e=2:6) > slice.par<-list(start=-3,end=6,interval=1, aggregate.dur=3,rule="latest") > test <-compute.animation(test,slice.par=slice.par,animation.mode="MDSJ",weight.attr='activity.duration') Calculating layout for network slice from time -3 to 0 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time -2 to 1 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time -1 to 2 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 0 to 3 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 1 to 4 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 2 to 5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 3 to 6 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 4 to 7 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 5 to 8 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 6 to 9 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Warning messages: 1: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 2: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 3: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 4: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 5: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 6: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 7: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 8: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 9: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 10: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead > render.animation(test,edge.label='activity.duration') rendering 10 frames for slice 0 rendering 10 frames for slice 1 rendering 10 frames for slice 2 rendering 10 frames for slice 3 rendering 10 frames for slice 4 rendering 10 frames for slice 5 rendering 10 frames for slice 6 rendering 10 frames for slice 7 rendering 10 frames for slice 8 rendering 10 frames for slice 9 > > > #test a network with edge weights as distances > test <- network.initialize(5,directed=F) > test[1,2]<-1 > test[3,2]<-1 > test[1,3]<-1 > test[1,4]<-1 > test[5,1]<-1 > test[4,5]<-1 > test <-activate.edge.attribute(test,'weight',value=1,onset=0,terminus=1,e=c(1,2,3)) > test <- activate.edge.attribute(test,'weight',value=3,onset=0,terminus=1,e=c(4,5,6)) > test <- activate.edge.attribute(test,'weight',value=3,onset=1,terminus=2,e=c(1,2,3)) > test <- activate.edge.attribute(test,'weight',value=1,onset=1,terminus=2,e=c(4,5,6)) > slice.par<-list(start=-1,end=3,interval=1, aggregate.dur=1,rule="latest") > test <-compute.animation(test,slice.par=slice.par,animation.mode="MDSJ",weight.attr='weight',weight.dist=TRUE) Calculating layout for network slice from time -1 to 0 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 0 to 1 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 1 to 2 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 2 to 3 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 3 to 4 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Warning messages: 1: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 2: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 3: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 4: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 5: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead > render.animation(test,edge.label='weight',render.par=list(tween.frames=10)) rendering 10 frames for slice 0 rendering 10 frames for slice 1 rendering 10 frames for slice 2 rendering 10 frames for slice 3 rendering 10 frames for slice 4 > > #test a network with edge weights as similarities > slice.par<-list(start=-1,end=3,interval=1, aggregate.dur=1,rule="latest") > test <-compute.animation(test,slice.par=slice.par,animation.mode="MDSJ",weight.attr='weight',weight.dist=FALSE) Calculating layout for network slice from time -1 to 0 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 0 to 1 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 1 to 2 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 2 to 3 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 3 to 4 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Warning messages: 1: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 2: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 3: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 4: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 5: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead > render.animation(test,edge.label='weight',render.par=list(tween.frames=10)) rendering 10 frames for slice 0 rendering 10 frames for slice 1 rendering 10 frames for slice 2 rendering 10 frames for slice 3 rendering 10 frames for slice 4 > > #test symetrizing an asymetric network > test <- network.initialize(5,directed=T) > test[1,2]<-1 > test[3,2]<-1 > test[1,3]<-1 > test[1,4]<-1 > test[5,1]<-1 > test[4,5]<-1 > test[2,1]<-1 > test[2,3]<-1 > test[3,1]<-1 > test[4,1]<-1 > test[1,5]<-1 > test[5,4]<-1 > test <-activate.edge.attribute(test,'weight',value=1,onset=0,terminus=1,e=c(1,2,3)) > test <- activate.edge.attribute(test,'weight',value=3,onset=0,terminus=1,e=c(4,5,6)) > test <- activate.edge.attribute(test,'weight',value=3,onset=1,terminus=2,e=c(1,2,3)) > test <- activate.edge.attribute(test,'weight',value=1,onset=1,terminus=2,e=c(4,5,6)) > test <- activate.edge.attribute(test,'weight',value=5, onset=0,terminus=4,e=7:12) > slice.par<-list(start=-1,end=3,interval=1, aggregate.dur=1,rule="latest") > test <-compute.animation(test,slice.par=slice.par,animation.mode="MDSJ",weight.attr='weight',weight.dist=FALSE) Calculating layout for network slice from time -1 to 0 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 0 to 1 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 1 to 2 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 2 to 3 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 3 to 4 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Warning messages: 1: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 2: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 3: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 4: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead 5: In layout.fun(slice, dist.mat = dist.mat, default.dist = default.dist, : Unable to locate the MDSJ library, using KamadaKawai layout instead > render.animation(test,edge.label='weight',render.par=list(tween.frames=20)) rendering 20 frames for slice 0 rendering 20 frames for slice 1 rendering 20 frames for slice 2 rendering 20 frames for slice 3 rendering 20 frames for slice 4 > layout.distance(network.collapse(test,at=3),weight.attr='weight') [,1] [,2] [,3] [,4] [,5] [1,] 0.000000 2.236068 2.236068 2.236068 2.236068 [2,] 2.236068 0.000000 2.236068 2.236068 2.236068 [3,] 2.236068 2.236068 0.000000 2.236068 2.236068 [4,] 2.236068 2.236068 2.236068 0.000000 2.236068 [5,] 2.236068 2.236068 2.236068 2.236068 0.000000 > > > data(McFarland_cls33_10_16_96) > slice.par<-list(start=0,end=30,interval=1, aggregate.dur=2.5,rule="latest") > cls33_10_16_96 <-compute.animation(cls33_10_16_96,slice.par=slice.par,animation.mode="MDSJ",weight.attr='activity.count',default.dist=5) Calculating layout for network slice from time 0 to 2.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 1 to 3.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 2 to 4.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 3 to 5.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 4 to 6.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 5 to 7.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 6 to 8.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 7 to 9.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 8 to 10.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 9 to 11.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 10 to 12.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 11 to 13.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 12 to 14.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 13 to 15.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 14 to 16.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 15 to 17.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 16 to 18.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 17 to 19.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 18 to 20.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 19 to 21.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 20 to 22.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 21 to 23.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 22 to 24.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 23 to 25.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 24 to 26.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 25 to 27.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 26 to 28.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 27 to 29.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 28 to 30.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 29 to 31.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. Calculating layout for network slice from time 30 to 32.5 The MDSJ Java library does not appear to be installed. The ndtv package can use MDSJ to provide a fast accurate layout algorithm. As the original hosting site is offline, it can temporarily be downloaded from https://github.com/skyebend/mdsj Do you want to automatically download and install the MDSJ Java library? (y/N): The MDSJ library was not installed. There were 31 warnings (use warnings() to see them) > #saveVideo(render.animation(cls33_10_16_96,edge.lwd='activity.count',edge.label='activity.count',edge.col='gray',render.cache='none')) > > > > proc.time() user system elapsed 6.82 0.75 7.57