visNetwork
visNetwork copied to clipboard
R package, using vis.js library for network visualization
On the [CRAN checks page](https://cran.rstudio.com/web/checks/check_results_visNetwork.html), the vignettes cannot be built on OS X or Solaris because pandoc is required. There is also the note about a large package size. For...
Hi Benoit, Is there a feature to "pin down" a node in when the physics is switched on? I'm raising this issue since everytime I try to display a localised...
``` R BEGIN TEST get_coefficients_transformation.R R version 4.0.4 (2021-02-15) -- "Lost Library Book" Copyright (C) 2021 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and...
Hi, Haven't had any luck after searching around for a long time but could be also because this might require some vis.js/javascript knowledge. So just wanted to ask for some...
Hello, I am trying to use HighlightNearest to only show the immediate parent edges of a node, similar to using "all" and degree=0. If I use degree=1, I also select...
I made the following 25 network graphs (all copies for simplicity): ``` library(tidyverse) library(igraph) set.seed(123) n=15 data = data.frame(tibble(d = paste(1:n))) relations = data.frame(tibble( from = sample(data$d), to = lead(from,...
I have the following network graph: ``` library(tidyverse) library(igraph) set.seed(123) n=15 data = data.frame(tibble(d = paste(1:n))) relations = data.frame(tibble( from = sample(data$d), to = lead(from, default=from[1]), )) data$name = c("new...
I would like to add a color scale strip to an existing plot with _visNetwork()_ .  Here I mapped some floating values to the color. In this case rich...
Hi guys, Not sure if its a duplicate but, when I try to select any node with **selectNode** parameter in visEvents function, seems like it fires the **selectEdge** events too....
_Edit: simplified the reprex._ I'm trying to create a shinyapp to view and maintain data to be used in risk analysis. The code below creates a shinydashboard with two tabs,...