Use the existing options as a default, but allow
the user to update the options map for more
customizability.
Tested like so:
# import
from jaal import Jaal
from jaal.datasets import load_got
# load the data
edge_df, node_df = load_got()
# init Jaal and run server
Jaal(edge_df, node_df).plot(vis_opts={'height': '1000px'})
Use the existing options as a default, but allow the user to update the options map for more customizability.
Tested like so: