https://github.com/johncoene/n3d
3D networks in R
https://github.com/johncoene/n3d
network r rstats
Last synced: 12 months ago
JSON representation
3D networks in R
- Host: GitHub
- URL: https://github.com/johncoene/n3d
- Owner: JohnCoene
- License: other
- Created: 2019-03-04T15:45:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T21:40:23.000Z (over 7 years ago)
- Last Synced: 2025-04-12T00:42:41.246Z (about 1 year ago)
- Topics: network, r, rstats
- Language: R
- Size: 296 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/JohnCoene/n3d)
# n3d
3D networks in R.
## Installation
``` r
# install.packages("remotes")
remotes::install_github("JohnCoene/n3d")
```
## Example
``` r
library(n3d)
n3d() %>%
n_nodes(lesmis_nodes, id, color, size = out_degree) %>%
n_edges(lesmis_edges, source, target)
```
