Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ Depends:
latticeExtra
Imports:
sna,
RColorBrewer
RColorBrewer,
statnet.data
Remotes: github::statnet/statnet.data@master
LazyData: true
RoxygenNote: 7.1.1
Encoding: UTF-8
Expand Down
16 changes: 8 additions & 8 deletions inst/shiny/statnetWeb/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ library(RColorBrewer)
library(lattice)
library(latticeExtra)

data(faux.mesa.high)
#data(faux.magnolia.high) too big
data(florentine)
data(sampson)
data(samplk)
#data(ecoli) causes errors with infocent
data(molecule)
data(kapferer)
data(faux.mesa.high, package="statnet.data")
#data(faux.magnolia.high, package="statnet.data") too big
data(flomarriage, flobusiness, package="statnet.data")
data(samplike, package="statnet.data")
data(samplk1, samplk2, samplk3, package="statnet.data")
#data(ecoli, package="statnet.data") causes errors with infocent
data(molecule, package="statnet.data")
data(kapferer, package="statnet.data")

BRGcol <- "darkred"
CUGcol <- "darkorange"
Expand Down