1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# Import all packages listed as Imports or Depends
import(
utils,
statnet.common,
network,
stats,
graphics
)
importFrom("grDevices", "dev.interactive", "gray")
# Export everything but the %c% operators
exportPattern("^[^%]")
export('%c%.matrix') # I think this is missed by the pattern above
S3method(as.edgelist,sna)
S3method('%c%','matrix')
S3method(coef,bn)
S3method(coef,lnam)
S3method(plot,bbnam)
S3method(plot,bbnam.actor)
S3method(plot,bbnam.fixed )
S3method(plot,bbnam.pooled)
S3method(plot,blockmodel )
S3method(plot,bn)
S3method(plot,cug.test )
S3method(plot,cugtest )
S3method(plot,equiv.clust )
S3method(plot,lnam )
S3method(plot,qaptest)
S3method(plot,sociomatrix )
S3method(print,bayes.factor )
S3method(print,bbnam )
S3method(print,bbnam.actor)
S3method(print,bbnam.fixed )
S3method(print,bbnam.pooled )
S3method(print,blockmodel )
S3method(print,bn)
S3method(print,cug.test )
S3method(print,cugtest )
S3method(print,equiv.clust )
S3method(print,lnam)
S3method(print,netcancor )
S3method(print,netlm )
S3method(print,netlogit )
S3method(print,qaptest)
S3method(print,summary.bayes.factor )
S3method(print,summary.bbnam)
S3method(print,summary.bbnam.actor )
S3method(print,summary.bbnam.fixed)
S3method(print,summary.bbnam.pooled )
S3method(print,summary.blockmodel )
S3method(print,summary.bn)
S3method(print,summary.brokerage )
S3method(print,summary.cugtest )
S3method(print,summary.lnam)
S3method(print,summary.netcancor )
S3method(print,summary.netlm )
S3method(print,summary.netlogit)
S3method(print,summary.qaptest )
S3method(summary,bayes.factor )
S3method(summary,bbnam)
S3method(summary,bbnam.actor )
S3method(summary,bbnam.fixed )
S3method(summary,bbnam.pooled)
S3method(summary,blockmodel )
S3method(summary,bn )
S3method(summary,brokerage )
S3method(summary,cugtest)
S3method(summary,lnam )
S3method(summary,netcancor )
S3method(summary,netlm )
S3method(summary,netlogit)
S3method(summary,qaptest)
useDynLib(sna, .registration = TRUE)
|