https://github.com/dirmeier/diffusr
Network diffusion algorithms in R.
https://github.com/dirmeier/diffusr
heat-transfer markov-chain markov-random-walk nearest-neighbors network-diffusion network-propagation r
Last synced: 7 months ago
JSON representation
Network diffusion algorithms in R.
- Host: GitHub
- URL: https://github.com/dirmeier/diffusr
- Owner: dirmeier
- License: gpl-3.0
- Created: 2016-08-25T22:44:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-06-28T14:46:23.000Z (over 2 years ago)
- Last Synced: 2024-10-13T00:13:04.168Z (12 months ago)
- Topics: heat-transfer, markov-chain, markov-random-walk, nearest-neighbors, network-diffusion, network-propagation, r
- Language: C++
- Homepage:
- Size: 488 KB
- Stars: 21
- Watchers: 2
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# diffusr
[](http://www.repostatus.org/#inactive)
[](https://travis-ci.org/dirmeier/diffusr)
[](https://ci.appveyor.com/project/dirmeier/diffusr)
[](https://codecov.io/gh/dirmeier/diffusr)
[](https://cran.r-project.org/package=diffusr)
[](https://cran.r-project.org/package=diffusr)Network diffusion algorithms in R.
## Introduction
`diffusr` implements several algorithms for network diffusion such as *Markov random walks with restarts* and *weighted neighbor classification*. Network diffusion has been studied extensively in bioinformatics, e.g. in the field of cancer gene prioritization. Network diffusion algorithms generally spread information, e.g. encoded as 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.
## Installation
Install `diffusr` using:
```{r}
install.packages("diffusr")
```Alternatively use the latest version from github:
```{r}
devtools::install_github("dirmeier/diffusr")
```## Usage
Load the package using `library(diffusr)`. We provide a vignette for the package that can be called using: `vignette("diffusr")`.
Basically that is all you have to know.## Author
* Simon Dirmeier simon.dirmeier@gmx.de