All Projects → JohnCoene → Grapher

JohnCoene / Grapher

Licence: other
✍️ Large interactive graphs

Programming Languages

javascript
184084 projects - #8 most used programming language
r
7636 projects

Projects that are alternatives of or similar to Grapher

Chirp
🔬Visualise Twitter Interactions
Stars: ✭ 40 (-52.38%)
Mutual labels:  network, rstats
Particles
A particle simulation engine based on a port of d3-force
Stars: ✭ 104 (+23.81%)
Mutual labels:  network, rstats
Vpnify
vpnify - transparently route traffic of a process through VPN
Stars: ✭ 74 (-11.9%)
Mutual labels:  network
Darksky
☁️ R interface to the Dark Sky API [APPLE IS SHUTTING DOWN THE API 2021-12-31]
Stars: ✭ 81 (-3.57%)
Mutual labels:  rstats
Lodown
locally download and prepare publicly-available microdata
Stars: ✭ 79 (-5.95%)
Mutual labels:  rstats
2016lykagguvenligivesizmatestleri
Network Security Notes ☔️
Stars: ✭ 75 (-10.71%)
Mutual labels:  network
Awesome Blogdown
An awesome curated list of blogs built using blogdown
Stars: ✭ 80 (-4.76%)
Mutual labels:  rstats
Ansible For Network Engineers
Репозиторий книги "Ansible для сетевых инженеров". Книга в процессе переноса на readthedocs и обновления содержания на Ansible 2.9!
Stars: ✭ 74 (-11.9%)
Mutual labels:  network
Newsflash
Tools to Work with the Internet Archive and GDELT Television Explorer in R
Stars: ✭ 83 (-1.19%)
Mutual labels:  rstats
Nac bypass
Script collection to bypass Network Access Control (NAC, 802.1x)
Stars: ✭ 79 (-5.95%)
Mutual labels:  network
Travelling Salesman Portrait
An experiment in R to convert photos into single-line-drawings
Stars: ✭ 81 (-3.57%)
Mutual labels:  rstats
Homebox
A Toolbox for Home Local Networks
Stars: ✭ 78 (-7.14%)
Mutual labels:  network
Cifsd
cifsd kernel server(SMB/CIFS server)
Stars: ✭ 76 (-9.52%)
Mutual labels:  network
Http2dotnet
HTTP/2 support for .NET standard
Stars: ✭ 80 (-4.76%)
Mutual labels:  network
Darkstudio
darkstudio. A dark grey alternative to RStudio's default dark theme.
Stars: ✭ 75 (-10.71%)
Mutual labels:  rstats
Qcoder
Lightweight package to do qualitative coding
Stars: ✭ 82 (-2.38%)
Mutual labels:  rstats
Jsprintmanager
Advanced Client-side Printing & Scanning Solution for Javascript
Stars: ✭ 74 (-11.9%)
Mutual labels:  network
Thor Os
Simple operating system in C++, written from scratch
Stars: ✭ 1,204 (+1333.33%)
Mutual labels:  network
Go2p
Simple to use but full configurable p2p framework
Stars: ✭ 80 (-4.76%)
Mutual labels:  network
Rzmq
R package for ZMQ
Stars: ✭ 83 (-1.19%)
Mutual labels:  rstats

grapher

Create 3D interactive graphs.

Travis build status AppVeyor build status lifecycle

Website | Install | Get Started | Blog

Usage

{grapher} works hand-in-hand with most graph objects.

library(grapher)

g <- make_data(50) # mock data

# from a list
graph(g)

# from igraph
ig <- igraph::make_ring(10)
graph(ig)

# from tidygraph
tbl_graph <- tidygraph::create_ring(20)
graph(tbl_graph)

# from gexf
graph("http://gephi.org/datasets/LesMiserables.gexf")

# from dot file
fl <- system.file("example/dotfile.gv", package = "grapher")
graph(fl)

# from single data.frame
# assumes they are links
graph(g$links)

# from data.frames
# pass only links
graph() %>% 
  graph_links(g$links, source, target)

# pass nodes and links
graph() %>% 
  graph_nodes(g$nodes, id) %>% 
  graph_links(g$links, source, target)

Installation

Simply use the remote or devtools.

# install.packages(remotes)
remotes::install_github("JohnCoene/grapher")
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].