I would like to replace the basic node image to a custom jpg in networkD3 package in R.
Here is an example:
library(networkD3)
# Load data
data(MisLinks)
data(MisNodes)
# Plot
forceNetwork(Links = MisLinks, Nodes = MisNodes,
Source = "source", Target = "target",
Value = "value", NodeID = "name",
Group = "group", opacity = 0.8)
So I would like to create a node like this:
Instead of this:
Is it possible?