Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. chord_L0.opts(opts.Chord(labels='Name', height=400, width=400))
  2.  
  3. chord_L1 = hv.Chord((edges_L1, nodes_L1), ['Source', 'Destination'],['Value'])
  4. chord_L1.opts(opts.Chord(labels='Name', height=600, width=600))
  5.  
  6. chord_L2 = hv.Chord((edges_L2, nodes_L2), ['Source', 'Destination'],['Value'])
  7. chord_L2.opts(opts.Chord(labels='Name', height=800, width=800))
  8.  
  9. chords = chord_L0 * chord_L1 * chord_L2
  10. chords
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement