-
Notifications
You must be signed in to change notification settings - Fork 7
/
DESCRIPTION
35 lines (35 loc) · 1.17 KB
/
DESCRIPTION
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
Package: diffusr
Type: Package
Title: Network Diffusion Algorithms
Version: 0.1.4
Date: 2018-04-20
Authors@R: person("Simon", "Dirmeier",
email = "simon.dirmeier@gmx.de",
role = c("aut", "cre"))
Maintainer: Simon Dirmeier <simon.dirmeier@gmx.de>
Description: Implementation of network diffusion algorithms such as
heat diffusion or Markov random walks. Network diffusion algorithms generally
spread information in the form of node weights along the edges of a graph to other nodes.
These weights can for example be interpreted as temperature, an initial amount
of water, the activation of neurons in the brain, or the location of a random
surfer in the internet. The information (node weights) is iteratively propagated
to other nodes until a equilibrium state or stop criterion occurs.
URL: https://github.com/dirmeier/diffusr
BugReports: https://github.com/dirmeier/diffusr/issues
License: GPL (>=3)
Depends: R (>= 3.4)
LazyData: TRUE
LinkingTo: Rcpp, RcppEigen
Imports:
Rcpp,
igraph,
methods
Suggests:
knitr,
rmarkdown,
testthat,
lintr,
Matrix
VignetteBuilder: knitr
RoxygenNote: 6.0.1
SystemRequirements: C++11