forked from SachaEpskamp/bootnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
74 lines (65 loc) · 1.75 KB
/
NAMESPACE
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
# Default functions:
export(bootnet_IsingFit)
export(bootnet_EBICglasso)
export(bootnet_pcor)
export(bootnet_cor)
export(bootnet_IsingSampler)
export(bootnet_adalasso)
export(bootnet_huge)
export(bootnet_mgm)
export(bootnet_relimp)
# Defaults:
importFrom(huge,"huge","huge.npn","huge.select")
importFrom(parcor,"adalasso.net")
import(mgm)
importFrom(relaimpo, "calc.relimp")
# exportPattern("^[[:alpha:]]+")
# Exports:
export(bootnet)
export(null)
export(binarize)
export(estimateNetwork)
export(differenceTest)
export(corStability)
# Methods:
S3method(summary, bootnet)
S3method(plot, bootnet)
S3method(print, bootnet)
S3method(summary, bootnetResult)
S3method(plot, bootnetResult)
S3method(print, bootnetResult)
S3method(summary, netSimulator)
S3method(plot, netSimulator)
S3method(print, netSimulator)
export(netSimulator)
export(genGGM)
export(ggmGenerator)
export(IsingGenerator)
# Imports:
import(dplyr)
import(parallel)
importFrom(IsingFit,"IsingFit")
import(qgraph)
import(ggplot2)
importFrom("igraph", "get.adjacency","watts.strogatz.game")
import(tidyr)
importFrom(gtools, "mixedorder")
importFrom(corpcor, "cor2pcor")
importFrom(IsingSampler, "IsingSampler")
importFrom(corpcor, "pseudoinverse")
importFrom(mvtnorm, "rmvnorm")
importFrom(IsingSampler, "EstimateIsing")
importFrom(abind,"abind")
importFrom(Matrix,"forceSymmetric")
#export(centrality)
importFrom("methods", "is")
importFrom("stats", "cor")
importFrom("utils", "setTxtProgressBar", "txtProgressBar")
importFrom("stats", "na.omit", "quantile", "runif", "sd")
importFrom("utils", "data")
importFrom("utils", "capture.output")
importFrom("stats", "cov2cor")
importFrom("utils", "write.table")
importFrom("stats", "as.formula")
importFrom("utils", "packageVersion")
importFrom("stats", "lm")