Guest User

Untitled

a guest
Nov 15th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 474.67 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "code",
  5. "execution_count": 1,
  6. "metadata": {},
  7. "outputs": [],
  8. "source": [
  9. "import json\n",
  10. "import pandas as pd"
  11. ]
  12. },
  13. {
  14. "cell_type": "code",
  15. "execution_count": 2,
  16. "metadata": {},
  17. "outputs": [],
  18. "source": [
  19. "films=json.load(open(\"shared/sp18-is590dv/data/star_wars/films.json\"))"
  20. ]
  21. },
  22. {
  23. "cell_type": "code",
  24. "execution_count": 3,
  25. "metadata": {},
  26. "outputs": [
  27. {
  28. "name": "stdout",
  29. "output_type": "stream",
  30. "text": [
  31. "dict_keys(['starships', 'edited', 'vehicles', 'planets', 'producer', 'title', 'created', 'episode_id', 'director', 'release_date', 'opening_crawl', 'characters', 'species'])\n",
  32. "dict_keys(['starships', 'edited', 'vehicles', 'planets', 'producer', 'title', 'created', 'episode_id', 'director', 'release_date', 'opening_crawl', 'characters', 'species'])\n",
  33. "dict_keys(['starships', 'edited', 'vehicles', 'planets', 'producer', 'title', 'created', 'episode_id', 'director', 'release_date', 'opening_crawl', 'characters', 'species'])\n",
  34. "dict_keys(['starships', 'edited', 'vehicles', 'planets', 'producer', 'title', 'created', 'episode_id', 'director', 'release_date', 'opening_crawl', 'characters', 'species'])\n",
  35. "dict_keys(['starships', 'edited', 'vehicles', 'planets', 'producer', 'title', 'created', 'episode_id', 'director', 'release_date', 'opening_crawl', 'characters', 'species'])\n",
  36. "dict_keys(['starships', 'edited', 'vehicles', 'planets', 'producer', 'title', 'created', 'episode_id', 'director', 'release_date', 'opening_crawl', 'characters', 'species'])\n"
  37. ]
  38. }
  39. ],
  40. "source": [
  41. "for film in films:\n",
  42. " print(film[\"fields\"].keys())"
  43. ]
  44. },
  45. {
  46. "cell_type": "code",
  47. "execution_count": 4,
  48. "metadata": {},
  49. "outputs": [],
  50. "source": [
  51. "char_input = json.load(open(\"shared/sp18-is590dv/data/star_wars/people.json\"))\n",
  52. "characters = {}\n",
  53. "for character in char_input:\n",
  54. " characters[character['pk']] = character['fields']"
  55. ]
  56. },
  57. {
  58. "cell_type": "code",
  59. "execution_count": 5,
  60. "metadata": {},
  61. "outputs": [],
  62. "source": [
  63. "chars = [\"Boba Fett\", \"Yoda\", \"Jabba Desilijic Tiure\", \"Darth Vader\", \"Obi-Wan Kenobi\",\n",
  64. " \"Beru Whitesun lars\", \"Mon Mothma\"]"
  65. ]
  66. },
  67. {
  68. "cell_type": "code",
  69. "execution_count": 6,
  70. "metadata": {},
  71. "outputs": [],
  72. "source": [
  73. "#create a new dataframe to store the film/characters group data\n",
  74. "data=pd.DataFrame(columns=[\"film_name\",\"char_name\"])\n",
  75. "no=0\n",
  76. "for film in films:\n",
  77. " film_name=film[\"fields\"][\"title\"]\n",
  78. " char_name=str()\n",
  79. " for character in film[\"fields\"][\"characters\"]:\n",
  80. " char_name=char_name+\",\"+characters[character][\"name\"]\n",
  81. " data.loc[no] = [film_name,char_name]\n",
  82. " no=no+1"
  83. ]
  84. },
  85. {
  86. "cell_type": "code",
  87. "execution_count": 7,
  88. "metadata": {},
  89. "outputs": [],
  90. "source": [
  91. "new_data=[]"
  92. ]
  93. },
  94. {
  95. "cell_type": "code",
  96. "execution_count": 8,
  97. "metadata": {},
  98. "outputs": [],
  99. "source": [
  100. "# calculate the times two characters show in the same movie\n",
  101. "for i in range(len(chars)):\n",
  102. " for j in range(i+1,len(chars)): \n",
  103. " show_times=0\n",
  104. " for char_group in data[\"char_name\"]:\n",
  105. " if chars[i] in char_group and chars[j] in char_group:\n",
  106. " show_times=show_times+1\n",
  107. " if show_times>=1:\n",
  108. " new_={\"source\":i,\"target\":j,\"value\":show_times}\n",
  109. " new_data.append(new_)"
  110. ]
  111. },
  112. {
  113. "cell_type": "code",
  114. "execution_count": 9,
  115. "metadata": {},
  116. "outputs": [
  117. {
  118. "data": {
  119. "text/plain": [
  120. "[{'source': 0, 'target': 1, 'value': 3},\n",
  121. " {'source': 0, 'target': 2, 'value': 1},\n",
  122. " {'source': 0, 'target': 3, 'value': 2},\n",
  123. " {'source': 0, 'target': 4, 'value': 3},\n",
  124. " {'source': 0, 'target': 5, 'value': 1},\n",
  125. " {'source': 0, 'target': 6, 'value': 1},\n",
  126. " {'source': 1, 'target': 2, 'value': 2},\n",
  127. " {'source': 1, 'target': 3, 'value': 3},\n",
  128. " {'source': 1, 'target': 4, 'value': 5},\n",
  129. " {'source': 1, 'target': 5, 'value': 2},\n",
  130. " {'source': 1, 'target': 6, 'value': 1},\n",
  131. " {'source': 2, 'target': 3, 'value': 2},\n",
  132. " {'source': 2, 'target': 4, 'value': 3},\n",
  133. " {'source': 2, 'target': 5, 'value': 1},\n",
  134. " {'source': 2, 'target': 6, 'value': 1},\n",
  135. " {'source': 3, 'target': 4, 'value': 4},\n",
  136. " {'source': 3, 'target': 5, 'value': 2},\n",
  137. " {'source': 3, 'target': 6, 'value': 1},\n",
  138. " {'source': 4, 'target': 5, 'value': 3},\n",
  139. " {'source': 4, 'target': 6, 'value': 1}]"
  140. ]
  141. },
  142. "execution_count": 9,
  143. "metadata": {},
  144. "output_type": "execute_result"
  145. }
  146. ],
  147. "source": [
  148. "new_data"
  149. ]
  150. },
  151. {
  152. "cell_type": "code",
  153. "execution_count": 10,
  154. "metadata": {},
  155. "outputs": [],
  156. "source": [
  157. "import bqplot\n",
  158. "import ipywidgets"
  159. ]
  160. },
  161. {
  162. "cell_type": "code",
  163. "execution_count": 11,
  164. "metadata": {},
  165. "outputs": [
  166. {
  167. "data": {
  168. "application/vnd.jupyter.widget-view+json": {
  169. "model_id": "d040fac2bddd413c99a9880795eeb8c2",
  170. "version_major": 2,
  171. "version_minor": 0
  172. },
  173. "text/plain": [
  174. "Figure(fig_margin={'top': 60, 'bottom': 60, 'left': 60, 'right': 60}, layout=Layout(min_width='125px'), marks=…"
  175. ]
  176. },
  177. "metadata": {},
  178. "output_type": "display_data"
  179. }
  180. ],
  181. "source": [
  182. "node_data = chars\n",
  183. "link_data = new_data\n",
  184. "tooltip = bqplot.Tooltip(fields=[\"label\"])\n",
  185. "graph = bqplot.Graph(node_data=node_data, link_data=link_data, tooltip = tooltip)\n",
  186. "fig = bqplot.Figure(marks = [graph])\n",
  187. "display(fig)"
  188. ]
  189. },
  190. {
  191. "cell_type": "code",
  192. "execution_count": 12,
  193. "metadata": {},
  194. "outputs": [
  195. {
  196. "data": {
  197. "application/vnd.jupyter.widget-view+json": {
  198. "model_id": "bbc08acba6b34ad685de789143a1ff44",
  199. "version_major": 2,
  200. "version_minor": 0
  201. },
  202. "text/plain": [
  203. "Figure(fig_margin={'top': 60, 'bottom': 60, 'left': 60, 'right': 60}, layout=Layout(min_width='125px'), marks=…"
  204. ]
  205. },
  206. "metadata": {},
  207. "output_type": "display_data"
  208. }
  209. ],
  210. "source": [
  211. "node_data = chars\n",
  212. "link_data = new_data\n",
  213. "tooltip = bqplot.Tooltip(fields=[\"label\"])\n",
  214. "graph = bqplot.Graph(node_data=node_data, link_data=link_data, tooltip = tooltip)\n",
  215. "fig = bqplot.Figure(marks = [graph])\n",
  216. "\n",
  217. "def show_choose(obj, element):\n",
  218. " show_data=[]\n",
  219. " index=element['data'][\"index\"]\n",
  220. " for new_ in new_data:\n",
  221. " if new_[\"source\"]==index or new_[\"target\"]==index:\n",
  222. " show_data.append(new_)\n",
  223. " link_data=show_data\n",
  224. " graph1=bqplot.Graph(node_data=node_data, link_data=link_data, tooltip = tooltip)\n",
  225. " ipywidgets.link((graph1,\"link_data\"),(graph,\"link_data\"))\n",
  226. " \n",
  227. "\n",
  228. "graph.on_element_click(show_choose)\n",
  229. "display(fig)"
  230. ]
  231. }
  232. ],
  233. "metadata": {
  234. "kernelspec": {
  235. "display_name": "Environment (conda_is590dv-default)",
  236. "language": "python",
  237. "name": "conda_is590dv-default"
  238. },
  239. "language_info": {
  240. "codemirror_mode": {
  241. "name": "ipython",
  242. "version": 3
  243. },
  244. "file_extension": ".py",
  245. "mimetype": "text/x-python",
  246. "name": "python",
  247. "nbconvert_exporter": "python",
  248. "pygments_lexer": "ipython3",
  249. "version": "3.6.6"
  250. },
  251. "widgets": {
  252. "application/vnd.jupyter.widget-state+json": {
  253. "state": {
  254. "002b5977f5dd4a81a5eaec600c699343": {
  255. "model_module": "bqplot",
  256. "model_module_version": "^0.4.1",
  257. "model_name": "GraphModel",
  258. "state": {
  259. "_model_module": "bqplot",
  260. "_model_module_version": "^0.4.1",
  261. "_view_count": null,
  262. "_view_module": "bqplot",
  263. "_view_module_version": "^0.4.1",
  264. "apply_clip": true,
  265. "charge": -600,
  266. "color": {
  267. "type": null,
  268. "values": null
  269. },
  270. "colors": [
  271. "#1f77b4",
  272. "#ff7f0e",
  273. "#2ca02c",
  274. "#d62728",
  275. "#9467bd",
  276. "#8c564b",
  277. "#e377c2",
  278. "#7f7f7f",
  279. "#bcbd22",
  280. "#17becf"
  281. ],
  282. "directed": true,
  283. "display_legend": false,
  284. "enable_hover": true,
  285. "highlight_links": true,
  286. "hovered_style": {},
  287. "interactions": {
  288. "click": "select",
  289. "hover": "tooltip"
  290. },
  291. "labels": [],
  292. "link_color": {
  293. "type": "float",
  294. "values": []
  295. },
  296. "link_data": [
  297. {
  298. "source": 3,
  299. "target": 6,
  300. "value": 1
  301. }
  302. ],
  303. "link_distance": 100,
  304. "link_matrix": {
  305. "type": "float",
  306. "values": []
  307. },
  308. "link_type": "arc",
  309. "node_data": [
  310. "Boba Fett",
  311. "Yoda",
  312. "Jabba Desilijic Tiure",
  313. "Darth Vader",
  314. "Obi-Wan Kenobi",
  315. "Beru Whitesun lars",
  316. "Mon Mothma"
  317. ],
  318. "preserve_domain": {},
  319. "scales": {},
  320. "scales_metadata": {
  321. "color": {
  322. "dimension": "color"
  323. },
  324. "link_color": {
  325. "dimension": "link_color"
  326. },
  327. "x": {
  328. "dimension": "x",
  329. "orientation": "horizontal"
  330. },
  331. "y": {
  332. "dimension": "y",
  333. "orientation": "vertical"
  334. }
  335. },
  336. "selected": [],
  337. "selected_style": {},
  338. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  339. "tooltip_location": "mouse",
  340. "tooltip_style": {
  341. "opacity": 0.9
  342. },
  343. "unhovered_style": {},
  344. "unselected_style": {},
  345. "visible": true,
  346. "x": {
  347. "type": "float",
  348. "values": []
  349. },
  350. "y": {
  351. "type": "float",
  352. "values": []
  353. }
  354. }
  355. },
  356. "03cc37d3fa164ec888d962e9686209fe": {
  357. "model_module": "bqplot",
  358. "model_module_version": "^0.4.1",
  359. "model_name": "LinearScaleModel",
  360. "state": {
  361. "_model_module_version": "^0.4.1",
  362. "_view_module_version": "^0.4.1",
  363. "allow_padding": false,
  364. "max": 1,
  365. "min": 0,
  366. "stabilized": false
  367. }
  368. },
  369. "03e3c515771549258dd872059d41e7ad": {
  370. "model_module": "@jupyter-widgets/base",
  371. "model_module_version": "1.1.0",
  372. "model_name": "LayoutModel",
  373. "state": {}
  374. },
  375. "07e716605f9447a9a658af5e8bdf9958": {
  376. "model_module": "bqplot",
  377. "model_module_version": "^0.4.1",
  378. "model_name": "LinearScaleModel",
  379. "state": {
  380. "_model_module_version": "^0.4.1",
  381. "_view_module_version": "^0.4.1",
  382. "allow_padding": false,
  383. "max": 1,
  384. "min": 0,
  385. "stabilized": false
  386. }
  387. },
  388. "0c886c3e4b0a4741909055149e7549d7": {
  389. "model_module": "bqplot",
  390. "model_module_version": "^0.4.1",
  391. "model_name": "TooltipModel",
  392. "state": {
  393. "_model_module_version": "^0.4.1",
  394. "_view_module_version": "^0.4.1",
  395. "fields": [
  396. "label"
  397. ],
  398. "layout": "IPY_MODEL_ffec3a1a1901426f94976e5d9214e2c3"
  399. }
  400. },
  401. "0c91f9fc65564e6588b1030b5d391668": {
  402. "model_module": "bqplot",
  403. "model_module_version": "^0.4.1",
  404. "model_name": "GraphModel",
  405. "state": {
  406. "_model_module": "bqplot",
  407. "_model_module_version": "^0.4.1",
  408. "_view_count": null,
  409. "_view_module": "bqplot",
  410. "_view_module_version": "^0.4.1",
  411. "apply_clip": true,
  412. "charge": -600,
  413. "color": {
  414. "type": null,
  415. "values": null
  416. },
  417. "colors": [
  418. "#1f77b4",
  419. "#ff7f0e",
  420. "#2ca02c",
  421. "#d62728",
  422. "#9467bd",
  423. "#8c564b",
  424. "#e377c2",
  425. "#7f7f7f",
  426. "#bcbd22",
  427. "#17becf"
  428. ],
  429. "directed": true,
  430. "display_legend": false,
  431. "enable_hover": true,
  432. "highlight_links": true,
  433. "hovered_style": {},
  434. "interactions": {
  435. "click": "select",
  436. "hover": "tooltip"
  437. },
  438. "labels": [],
  439. "link_color": {
  440. "type": "float",
  441. "values": []
  442. },
  443. "link_data": [
  444. {
  445. "source": 0,
  446. "target": 5,
  447. "value": 1
  448. },
  449. {
  450. "source": 1,
  451. "target": 5,
  452. "value": 2
  453. },
  454. {
  455. "source": 2,
  456. "target": 5,
  457. "value": 1
  458. },
  459. {
  460. "source": 3,
  461. "target": 5,
  462. "value": 2
  463. },
  464. {
  465. "source": 4,
  466. "target": 5,
  467. "value": 3
  468. }
  469. ],
  470. "link_distance": 100,
  471. "link_matrix": {
  472. "type": "float",
  473. "values": []
  474. },
  475. "link_type": "arc",
  476. "node_data": [
  477. "Boba Fett",
  478. "Yoda",
  479. "Jabba Desilijic Tiure",
  480. "Darth Vader",
  481. "Obi-Wan Kenobi",
  482. "Beru Whitesun lars",
  483. "Mon Mothma"
  484. ],
  485. "preserve_domain": {},
  486. "scales": {},
  487. "scales_metadata": {
  488. "color": {
  489. "dimension": "color"
  490. },
  491. "link_color": {
  492. "dimension": "link_color"
  493. },
  494. "x": {
  495. "dimension": "x",
  496. "orientation": "horizontal"
  497. },
  498. "y": {
  499. "dimension": "y",
  500. "orientation": "vertical"
  501. }
  502. },
  503. "selected": [],
  504. "selected_style": {},
  505. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  506. "tooltip_location": "mouse",
  507. "tooltip_style": {
  508. "opacity": 0.9
  509. },
  510. "unhovered_style": {},
  511. "unselected_style": {},
  512. "visible": true,
  513. "x": {
  514. "type": "float",
  515. "values": []
  516. },
  517. "y": {
  518. "type": "float",
  519. "values": []
  520. }
  521. }
  522. },
  523. "0e950c9ba87940fda4e9b89ffddbf95e": {
  524. "model_module": "bqplot",
  525. "model_module_version": "^0.4.1",
  526. "model_name": "LinearScaleModel",
  527. "state": {
  528. "_model_module_version": "^0.4.1",
  529. "_view_module_version": "^0.4.1",
  530. "allow_padding": false,
  531. "max": 1,
  532. "min": 0,
  533. "stabilized": false
  534. }
  535. },
  536. "0f4aed8fd3c544d9a04df36a532cbf8f": {
  537. "model_module": "bqplot",
  538. "model_module_version": "^0.4.1",
  539. "model_name": "GraphModel",
  540. "state": {
  541. "_model_module": "bqplot",
  542. "_model_module_version": "^0.4.1",
  543. "_view_count": null,
  544. "_view_module": "bqplot",
  545. "_view_module_version": "^0.4.1",
  546. "apply_clip": true,
  547. "charge": -600,
  548. "color": {
  549. "type": null,
  550. "values": null
  551. },
  552. "colors": [
  553. "#1f77b4",
  554. "#ff7f0e",
  555. "#2ca02c",
  556. "#d62728",
  557. "#9467bd",
  558. "#8c564b",
  559. "#e377c2",
  560. "#7f7f7f",
  561. "#bcbd22",
  562. "#17becf"
  563. ],
  564. "directed": true,
  565. "display_legend": false,
  566. "enable_hover": true,
  567. "highlight_links": true,
  568. "hovered_style": {},
  569. "interactions": {
  570. "click": "select",
  571. "hover": "tooltip"
  572. },
  573. "labels": [],
  574. "link_color": {
  575. "type": "float",
  576. "values": []
  577. },
  578. "link_data": [
  579. {
  580. "source": 3,
  581. "target": 6,
  582. "value": 1
  583. }
  584. ],
  585. "link_distance": 100,
  586. "link_matrix": {
  587. "type": "float",
  588. "values": []
  589. },
  590. "link_type": "arc",
  591. "node_data": [
  592. "Boba Fett",
  593. "Yoda",
  594. "Jabba Desilijic Tiure",
  595. "Darth Vader",
  596. "Obi-Wan Kenobi",
  597. "Beru Whitesun lars",
  598. "Mon Mothma"
  599. ],
  600. "preserve_domain": {},
  601. "scales": {},
  602. "scales_metadata": {
  603. "color": {
  604. "dimension": "color"
  605. },
  606. "link_color": {
  607. "dimension": "link_color"
  608. },
  609. "x": {
  610. "dimension": "x",
  611. "orientation": "horizontal"
  612. },
  613. "y": {
  614. "dimension": "y",
  615. "orientation": "vertical"
  616. }
  617. },
  618. "selected": [],
  619. "selected_style": {},
  620. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  621. "tooltip_location": "mouse",
  622. "tooltip_style": {
  623. "opacity": 0.9
  624. },
  625. "unhovered_style": {},
  626. "unselected_style": {},
  627. "visible": true,
  628. "x": {
  629. "type": "float",
  630. "values": []
  631. },
  632. "y": {
  633. "type": "float",
  634. "values": []
  635. }
  636. }
  637. },
  638. "12488db8ad4145288f0f2b8066d7469d": {
  639. "model_module": "@jupyter-widgets/base",
  640. "model_module_version": "1.1.0",
  641. "model_name": "LayoutModel",
  642. "state": {}
  643. },
  644. "12973adeef574f6589a15b572d166d90": {
  645. "model_module": "bqplot",
  646. "model_module_version": "^0.4.1",
  647. "model_name": "GraphModel",
  648. "state": {
  649. "_model_module": "bqplot",
  650. "_model_module_version": "^0.4.1",
  651. "_view_count": null,
  652. "_view_module": "bqplot",
  653. "_view_module_version": "^0.4.1",
  654. "apply_clip": true,
  655. "charge": -600,
  656. "color": {
  657. "type": null,
  658. "values": null
  659. },
  660. "colors": [
  661. "#1f77b4",
  662. "#ff7f0e",
  663. "#2ca02c",
  664. "#d62728",
  665. "#9467bd",
  666. "#8c564b",
  667. "#e377c2",
  668. "#7f7f7f",
  669. "#bcbd22",
  670. "#17becf"
  671. ],
  672. "directed": true,
  673. "display_legend": false,
  674. "enable_hover": true,
  675. "highlight_links": true,
  676. "hovered_style": {},
  677. "interactions": {
  678. "click": "select",
  679. "hover": "tooltip"
  680. },
  681. "labels": [],
  682. "link_color": {
  683. "type": "float",
  684. "values": []
  685. },
  686. "link_data": [
  687. {
  688. "source": 0,
  689. "target": 5,
  690. "value": 1
  691. },
  692. {
  693. "source": 1,
  694. "target": 5,
  695. "value": 2
  696. },
  697. {
  698. "source": 2,
  699. "target": 5,
  700. "value": 1
  701. },
  702. {
  703. "source": 3,
  704. "target": 5,
  705. "value": 2
  706. },
  707. {
  708. "source": 4,
  709. "target": 5,
  710. "value": 3
  711. }
  712. ],
  713. "link_distance": 100,
  714. "link_matrix": {
  715. "type": "float",
  716. "values": []
  717. },
  718. "link_type": "arc",
  719. "node_data": [
  720. "Boba Fett",
  721. "Yoda",
  722. "Jabba Desilijic Tiure",
  723. "Darth Vader",
  724. "Obi-Wan Kenobi",
  725. "Beru Whitesun lars",
  726. "Mon Mothma"
  727. ],
  728. "preserve_domain": {},
  729. "scales": {},
  730. "scales_metadata": {
  731. "color": {
  732. "dimension": "color"
  733. },
  734. "link_color": {
  735. "dimension": "link_color"
  736. },
  737. "x": {
  738. "dimension": "x",
  739. "orientation": "horizontal"
  740. },
  741. "y": {
  742. "dimension": "y",
  743. "orientation": "vertical"
  744. }
  745. },
  746. "selected": [],
  747. "selected_style": {},
  748. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  749. "tooltip_location": "mouse",
  750. "tooltip_style": {
  751. "opacity": 0.9
  752. },
  753. "unhovered_style": {},
  754. "unselected_style": {},
  755. "visible": true,
  756. "x": {
  757. "type": "float",
  758. "values": []
  759. },
  760. "y": {
  761. "type": "float",
  762. "values": []
  763. }
  764. }
  765. },
  766. "13ab135858f44302b7027a53cddb6e3f": {
  767. "model_module": "bqplot",
  768. "model_module_version": "^0.4.1",
  769. "model_name": "GraphModel",
  770. "state": {
  771. "_model_module": "bqplot",
  772. "_model_module_version": "^0.4.1",
  773. "_view_count": null,
  774. "_view_module": "bqplot",
  775. "_view_module_version": "^0.4.1",
  776. "apply_clip": true,
  777. "charge": -600,
  778. "color": {
  779. "type": null,
  780. "values": null
  781. },
  782. "colors": [
  783. "#1f77b4",
  784. "#ff7f0e",
  785. "#2ca02c",
  786. "#d62728",
  787. "#9467bd",
  788. "#8c564b",
  789. "#e377c2",
  790. "#7f7f7f",
  791. "#bcbd22",
  792. "#17becf"
  793. ],
  794. "directed": true,
  795. "display_legend": false,
  796. "enable_hover": true,
  797. "highlight_links": true,
  798. "hovered_style": {},
  799. "interactions": {
  800. "click": "select",
  801. "hover": "tooltip"
  802. },
  803. "labels": [],
  804. "link_color": {
  805. "type": "float",
  806. "values": []
  807. },
  808. "link_data": [
  809. {
  810. "source": 3,
  811. "target": 6,
  812. "value": 1
  813. }
  814. ],
  815. "link_distance": 100,
  816. "link_matrix": {
  817. "type": "float",
  818. "values": []
  819. },
  820. "link_type": "arc",
  821. "node_data": [
  822. "Boba Fett",
  823. "Yoda",
  824. "Jabba Desilijic Tiure",
  825. "Darth Vader",
  826. "Obi-Wan Kenobi",
  827. "Beru Whitesun lars",
  828. "Mon Mothma"
  829. ],
  830. "preserve_domain": {},
  831. "scales": {},
  832. "scales_metadata": {
  833. "color": {
  834. "dimension": "color"
  835. },
  836. "link_color": {
  837. "dimension": "link_color"
  838. },
  839. "x": {
  840. "dimension": "x",
  841. "orientation": "horizontal"
  842. },
  843. "y": {
  844. "dimension": "y",
  845. "orientation": "vertical"
  846. }
  847. },
  848. "selected": [],
  849. "selected_style": {},
  850. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  851. "tooltip_location": "mouse",
  852. "tooltip_style": {
  853. "opacity": 0.9
  854. },
  855. "unhovered_style": {},
  856. "unselected_style": {},
  857. "visible": true,
  858. "x": {
  859. "type": "float",
  860. "values": []
  861. },
  862. "y": {
  863. "type": "float",
  864. "values": []
  865. }
  866. }
  867. },
  868. "13e9a0b2021b45afa7f3f7980fb0c897": {
  869. "model_module": "bqplot",
  870. "model_module_version": "^0.4.1",
  871. "model_name": "GraphModel",
  872. "state": {
  873. "_model_module": "bqplot",
  874. "_model_module_version": "^0.4.1",
  875. "_view_count": null,
  876. "_view_module": "bqplot",
  877. "_view_module_version": "^0.4.1",
  878. "apply_clip": true,
  879. "charge": -600,
  880. "color": {
  881. "type": null,
  882. "values": null
  883. },
  884. "colors": [
  885. "#1f77b4",
  886. "#ff7f0e",
  887. "#2ca02c",
  888. "#d62728",
  889. "#9467bd",
  890. "#8c564b",
  891. "#e377c2",
  892. "#7f7f7f",
  893. "#bcbd22",
  894. "#17becf"
  895. ],
  896. "directed": true,
  897. "display_legend": false,
  898. "enable_hover": true,
  899. "highlight_links": true,
  900. "hovered_style": {},
  901. "interactions": {
  902. "click": "select",
  903. "hover": "tooltip"
  904. },
  905. "labels": [],
  906. "link_color": {
  907. "type": "float",
  908. "values": []
  909. },
  910. "link_data": [
  911. {
  912. "source": 3,
  913. "target": 6,
  914. "value": 1
  915. }
  916. ],
  917. "link_distance": 100,
  918. "link_matrix": {
  919. "type": "float",
  920. "values": []
  921. },
  922. "link_type": "arc",
  923. "node_data": [
  924. "Boba Fett",
  925. "Yoda",
  926. "Jabba Desilijic Tiure",
  927. "Darth Vader",
  928. "Obi-Wan Kenobi",
  929. "Beru Whitesun lars",
  930. "Mon Mothma"
  931. ],
  932. "preserve_domain": {},
  933. "scales": {},
  934. "scales_metadata": {
  935. "color": {
  936. "dimension": "color"
  937. },
  938. "link_color": {
  939. "dimension": "link_color"
  940. },
  941. "x": {
  942. "dimension": "x",
  943. "orientation": "horizontal"
  944. },
  945. "y": {
  946. "dimension": "y",
  947. "orientation": "vertical"
  948. }
  949. },
  950. "selected": [],
  951. "selected_style": {},
  952. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  953. "tooltip_location": "mouse",
  954. "tooltip_style": {
  955. "opacity": 0.9
  956. },
  957. "unhovered_style": {},
  958. "unselected_style": {},
  959. "visible": true,
  960. "x": {
  961. "type": "float",
  962. "values": []
  963. },
  964. "y": {
  965. "type": "float",
  966. "values": []
  967. }
  968. }
  969. },
  970. "197e72274ba74de0bcaa52d9cc67c7f1": {
  971. "model_module": "bqplot",
  972. "model_module_version": "^0.4.1",
  973. "model_name": "TooltipModel",
  974. "state": {
  975. "_model_module_version": "^0.4.1",
  976. "_view_module_version": "^0.4.1",
  977. "fields": [
  978. "label"
  979. ],
  980. "layout": "IPY_MODEL_d38f69368bab45c2bea68f596badb6e2"
  981. }
  982. },
  983. "21820edaa45348a09af2eea692b387ab": {
  984. "model_module": "bqplot",
  985. "model_module_version": "^0.4.1",
  986. "model_name": "LinearScaleModel",
  987. "state": {
  988. "_model_module_version": "^0.4.1",
  989. "_view_module_version": "^0.4.1",
  990. "allow_padding": false,
  991. "max": 1,
  992. "min": 0,
  993. "stabilized": false
  994. }
  995. },
  996. "2253d09f305e46b8aadc11b857991d6d": {
  997. "model_module": "bqplot",
  998. "model_module_version": "^0.4.1",
  999. "model_name": "GraphModel",
  1000. "state": {
  1001. "_model_module": "bqplot",
  1002. "_model_module_version": "^0.4.1",
  1003. "_view_count": null,
  1004. "_view_module": "bqplot",
  1005. "_view_module_version": "^0.4.1",
  1006. "apply_clip": true,
  1007. "charge": -600,
  1008. "color": {
  1009. "type": null,
  1010. "values": null
  1011. },
  1012. "colors": [
  1013. "#1f77b4",
  1014. "#ff7f0e",
  1015. "#2ca02c",
  1016. "#d62728",
  1017. "#9467bd",
  1018. "#8c564b",
  1019. "#e377c2",
  1020. "#7f7f7f",
  1021. "#bcbd22",
  1022. "#17becf"
  1023. ],
  1024. "directed": true,
  1025. "display_legend": false,
  1026. "enable_hover": true,
  1027. "highlight_links": true,
  1028. "hovered_style": {},
  1029. "interactions": {
  1030. "click": "select",
  1031. "hover": "tooltip"
  1032. },
  1033. "labels": [],
  1034. "link_color": {
  1035. "type": "float",
  1036. "values": []
  1037. },
  1038. "link_data": [
  1039. {
  1040. "source": 3,
  1041. "target": 6,
  1042. "value": 1
  1043. }
  1044. ],
  1045. "link_distance": 100,
  1046. "link_matrix": {
  1047. "type": "float",
  1048. "values": []
  1049. },
  1050. "link_type": "arc",
  1051. "node_data": [
  1052. "Boba Fett",
  1053. "Yoda",
  1054. "Jabba Desilijic Tiure",
  1055. "Darth Vader",
  1056. "Obi-Wan Kenobi",
  1057. "Beru Whitesun lars",
  1058. "Mon Mothma"
  1059. ],
  1060. "preserve_domain": {},
  1061. "scales": {},
  1062. "scales_metadata": {
  1063. "color": {
  1064. "dimension": "color"
  1065. },
  1066. "link_color": {
  1067. "dimension": "link_color"
  1068. },
  1069. "x": {
  1070. "dimension": "x",
  1071. "orientation": "horizontal"
  1072. },
  1073. "y": {
  1074. "dimension": "y",
  1075. "orientation": "vertical"
  1076. }
  1077. },
  1078. "selected": [],
  1079. "selected_style": {},
  1080. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  1081. "tooltip_location": "mouse",
  1082. "tooltip_style": {
  1083. "opacity": 0.9
  1084. },
  1085. "unhovered_style": {},
  1086. "unselected_style": {},
  1087. "visible": true,
  1088. "x": {
  1089. "type": "float",
  1090. "values": []
  1091. },
  1092. "y": {
  1093. "type": "float",
  1094. "values": []
  1095. }
  1096. }
  1097. },
  1098. "22bd674b3a0b4546996226373757b56e": {
  1099. "model_module": "@jupyter-widgets/base",
  1100. "model_module_version": "1.1.0",
  1101. "model_name": "LayoutModel",
  1102. "state": {
  1103. "min_width": "125px"
  1104. }
  1105. },
  1106. "24028eb27090499cad3f5aa6f4b09c8c": {
  1107. "model_module": "bqplot",
  1108. "model_module_version": "^0.4.1",
  1109. "model_name": "LinearScaleModel",
  1110. "state": {
  1111. "_model_module_version": "^0.4.1",
  1112. "_view_module_version": "^0.4.1",
  1113. "allow_padding": false,
  1114. "max": 1,
  1115. "min": 0,
  1116. "stabilized": false
  1117. }
  1118. },
  1119. "2578718ee61b467193453f542c95371f": {
  1120. "model_module": "@jupyter-widgets/base",
  1121. "model_module_version": "1.1.0",
  1122. "model_name": "LayoutModel",
  1123. "state": {
  1124. "min_width": "125px"
  1125. }
  1126. },
  1127. "26032330155d4bfa81b14e12300f0a05": {
  1128. "model_module": "bqplot",
  1129. "model_module_version": "^0.4.1",
  1130. "model_name": "TooltipModel",
  1131. "state": {
  1132. "_model_module_version": "^0.4.1",
  1133. "_view_module_version": "^0.4.1",
  1134. "fields": [
  1135. "label"
  1136. ],
  1137. "layout": "IPY_MODEL_03e3c515771549258dd872059d41e7ad"
  1138. }
  1139. },
  1140. "26e898be16294e068c0e835528bf72e3": {
  1141. "model_module": "bqplot",
  1142. "model_module_version": "^0.4.1",
  1143. "model_name": "TooltipModel",
  1144. "state": {
  1145. "_model_module_version": "^0.4.1",
  1146. "_view_module_version": "^0.4.1",
  1147. "fields": [
  1148. "label"
  1149. ],
  1150. "layout": "IPY_MODEL_3d78c68a5ce3493fa06a4a780779c92b"
  1151. }
  1152. },
  1153. "274ba76bf4fc4b0e9da6babd96af7000": {
  1154. "model_module": "bqplot",
  1155. "model_module_version": "^0.4.1",
  1156. "model_name": "GraphModel",
  1157. "state": {
  1158. "_model_module": "bqplot",
  1159. "_model_module_version": "^0.4.1",
  1160. "_view_count": null,
  1161. "_view_module": "bqplot",
  1162. "_view_module_version": "^0.4.1",
  1163. "apply_clip": true,
  1164. "charge": -600,
  1165. "color": {
  1166. "type": null,
  1167. "values": null
  1168. },
  1169. "colors": [
  1170. "#1f77b4",
  1171. "#ff7f0e",
  1172. "#2ca02c",
  1173. "#d62728",
  1174. "#9467bd",
  1175. "#8c564b",
  1176. "#e377c2",
  1177. "#7f7f7f",
  1178. "#bcbd22",
  1179. "#17becf"
  1180. ],
  1181. "directed": true,
  1182. "display_legend": false,
  1183. "enable_hover": true,
  1184. "highlight_links": true,
  1185. "hovered_style": {},
  1186. "interactions": {
  1187. "click": "select",
  1188. "hover": "tooltip"
  1189. },
  1190. "labels": [],
  1191. "link_color": {
  1192. "type": "float",
  1193. "values": []
  1194. },
  1195. "link_data": [
  1196. {
  1197. "source": {
  1198. "index": 0,
  1199. "label": "Boba Fett",
  1200. "label_display": "center",
  1201. "px": 323.16676573566724,
  1202. "py": 167.97124691269096,
  1203. "shape": "circle",
  1204. "shape_attrs": {
  1205. "r": 15
  1206. },
  1207. "value": null,
  1208. "weight": 6,
  1209. "x": 323.16605595132245,
  1210. "y": 167.8402364449951
  1211. },
  1212. "target": {
  1213. "fixed": 0,
  1214. "index": 1,
  1215. "label": "Yoda",
  1216. "label_display": "center",
  1217. "px": 356.4458508265521,
  1218. "py": 303.8873963063289,
  1219. "shape": "circle",
  1220. "shape_attrs": {
  1221. "r": 15
  1222. },
  1223. "value": null,
  1224. "weight": 6,
  1225. "x": 356.4458508265521,
  1226. "y": 303.8873963063289
  1227. },
  1228. "value": 3
  1229. },
  1230. {
  1231. "source": {
  1232. "index": 0,
  1233. "label": "Boba Fett",
  1234. "label_display": "center",
  1235. "px": 323.16676573566724,
  1236. "py": 167.97124691269096,
  1237. "shape": "circle",
  1238. "shape_attrs": {
  1239. "r": 15
  1240. },
  1241. "value": null,
  1242. "weight": 6,
  1243. "x": 323.16605595132245,
  1244. "y": 167.8402364449951
  1245. },
  1246. "target": {
  1247. "index": 2,
  1248. "label": "Jabba Desilijic Tiure",
  1249. "label_display": "center",
  1250. "px": 397.0629806211808,
  1251. "py": 256.53951554271566,
  1252. "shape": "circle",
  1253. "shape_attrs": {
  1254. "r": 15
  1255. },
  1256. "value": null,
  1257. "weight": 6,
  1258. "x": 397.1817904844187,
  1259. "y": 256.57990026031894
  1260. },
  1261. "value": 1
  1262. },
  1263. {
  1264. "source": {
  1265. "index": 0,
  1266. "label": "Boba Fett",
  1267. "label_display": "center",
  1268. "px": 323.16676573566724,
  1269. "py": 167.97124691269096,
  1270. "shape": "circle",
  1271. "shape_attrs": {
  1272. "r": 15
  1273. },
  1274. "value": null,
  1275. "weight": 6,
  1276. "x": 323.16605595132245,
  1277. "y": 167.8402364449951
  1278. },
  1279. "target": {
  1280. "index": 3,
  1281. "label": "Darth Vader",
  1282. "label_display": "center",
  1283. "px": 384.1377692888981,
  1284. "py": 194.44514046365657,
  1285. "shape": "circle",
  1286. "shape_attrs": {
  1287. "r": 15
  1288. },
  1289. "value": null,
  1290. "weight": 6,
  1291. "x": 384.24698738950525,
  1292. "y": 194.36455374817675
  1293. },
  1294. "value": 2
  1295. },
  1296. {
  1297. "source": {
  1298. "index": 0,
  1299. "label": "Boba Fett",
  1300. "label_display": "center",
  1301. "px": 323.16676573566724,
  1302. "py": 167.97124691269096,
  1303. "shape": "circle",
  1304. "shape_attrs": {
  1305. "r": 15
  1306. },
  1307. "value": null,
  1308. "weight": 6,
  1309. "x": 323.16605595132245,
  1310. "y": 167.8402364449951
  1311. },
  1312. "target": {
  1313. "fixed": 0,
  1314. "index": 4,
  1315. "label": "Obi-Wan Kenobi",
  1316. "label_display": "center",
  1317. "px": 290.1259246400829,
  1318. "py": 301.72828232132366,
  1319. "shape": "circle",
  1320. "shape_attrs": {
  1321. "r": 15
  1322. },
  1323. "value": null,
  1324. "weight": 6,
  1325. "x": 290.1259246400829,
  1326. "y": 301.72828232132366
  1327. },
  1328. "value": 3
  1329. },
  1330. {
  1331. "source": {
  1332. "index": 0,
  1333. "label": "Boba Fett",
  1334. "label_display": "center",
  1335. "px": 323.16676573566724,
  1336. "py": 167.97124691269096,
  1337. "shape": "circle",
  1338. "shape_attrs": {
  1339. "r": 15
  1340. },
  1341. "value": null,
  1342. "weight": 6,
  1343. "x": 323.16605595132245,
  1344. "y": 167.8402364449951
  1345. },
  1346. "target": {
  1347. "index": 5,
  1348. "label": "Beru Whitesun lars",
  1349. "label_display": "center",
  1350. "px": 291.4497424204467,
  1351. "py": 230.79050107064577,
  1352. "shape": "circle",
  1353. "shape_attrs": {
  1354. "r": 15
  1355. },
  1356. "value": null,
  1357. "weight": 5,
  1358. "x": 291.45080752695907,
  1359. "y": 230.78845468525188
  1360. },
  1361. "value": 1
  1362. },
  1363. {
  1364. "source": {
  1365. "index": 0,
  1366. "label": "Boba Fett",
  1367. "label_display": "center",
  1368. "px": 323.16676573566724,
  1369. "py": 167.97124691269096,
  1370. "shape": "circle",
  1371. "shape_attrs": {
  1372. "r": 15
  1373. },
  1374. "value": null,
  1375. "weight": 6,
  1376. "x": 323.16605595132245,
  1377. "y": 167.8402364449951
  1378. },
  1379. "target": {
  1380. "fixed": 0,
  1381. "index": 6,
  1382. "label": "Mon Mothma",
  1383. "label_display": "center",
  1384. "px": 263.41098078743124,
  1385. "py": 223.844828624078,
  1386. "shape": "circle",
  1387. "shape_attrs": {
  1388. "r": 15
  1389. },
  1390. "value": null,
  1391. "weight": 5,
  1392. "x": 263.41098078743124,
  1393. "y": 223.844828624078
  1394. },
  1395. "value": 1
  1396. },
  1397. {
  1398. "source": {
  1399. "fixed": 0,
  1400. "index": 1,
  1401. "label": "Yoda",
  1402. "label_display": "center",
  1403. "px": 356.4458508265521,
  1404. "py": 303.8873963063289,
  1405. "shape": "circle",
  1406. "shape_attrs": {
  1407. "r": 15
  1408. },
  1409. "value": null,
  1410. "weight": 6,
  1411. "x": 356.4458508265521,
  1412. "y": 303.8873963063289
  1413. },
  1414. "target": {
  1415. "index": 2,
  1416. "label": "Jabba Desilijic Tiure",
  1417. "label_display": "center",
  1418. "px": 397.0629806211808,
  1419. "py": 256.53951554271566,
  1420. "shape": "circle",
  1421. "shape_attrs": {
  1422. "r": 15
  1423. },
  1424. "value": null,
  1425. "weight": 6,
  1426. "x": 397.1817904844187,
  1427. "y": 256.57990026031894
  1428. },
  1429. "value": 2
  1430. },
  1431. {
  1432. "source": {
  1433. "fixed": 0,
  1434. "index": 1,
  1435. "label": "Yoda",
  1436. "label_display": "center",
  1437. "px": 356.4458508265521,
  1438. "py": 303.8873963063289,
  1439. "shape": "circle",
  1440. "shape_attrs": {
  1441. "r": 15
  1442. },
  1443. "value": null,
  1444. "weight": 6,
  1445. "x": 356.4458508265521,
  1446. "y": 303.8873963063289
  1447. },
  1448. "target": {
  1449. "index": 3,
  1450. "label": "Darth Vader",
  1451. "label_display": "center",
  1452. "px": 384.1377692888981,
  1453. "py": 194.44514046365657,
  1454. "shape": "circle",
  1455. "shape_attrs": {
  1456. "r": 15
  1457. },
  1458. "value": null,
  1459. "weight": 6,
  1460. "x": 384.24698738950525,
  1461. "y": 194.36455374817675
  1462. },
  1463. "value": 3
  1464. },
  1465. {
  1466. "source": {
  1467. "fixed": 0,
  1468. "index": 1,
  1469. "label": "Yoda",
  1470. "label_display": "center",
  1471. "px": 356.4458508265521,
  1472. "py": 303.8873963063289,
  1473. "shape": "circle",
  1474. "shape_attrs": {
  1475. "r": 15
  1476. },
  1477. "value": null,
  1478. "weight": 6,
  1479. "x": 356.4458508265521,
  1480. "y": 303.8873963063289
  1481. },
  1482. "target": {
  1483. "fixed": 0,
  1484. "index": 4,
  1485. "label": "Obi-Wan Kenobi",
  1486. "label_display": "center",
  1487. "px": 290.1259246400829,
  1488. "py": 301.72828232132366,
  1489. "shape": "circle",
  1490. "shape_attrs": {
  1491. "r": 15
  1492. },
  1493. "value": null,
  1494. "weight": 6,
  1495. "x": 290.1259246400829,
  1496. "y": 301.72828232132366
  1497. },
  1498. "value": 5
  1499. },
  1500. {
  1501. "source": {
  1502. "fixed": 0,
  1503. "index": 1,
  1504. "label": "Yoda",
  1505. "label_display": "center",
  1506. "px": 356.4458508265521,
  1507. "py": 303.8873963063289,
  1508. "shape": "circle",
  1509. "shape_attrs": {
  1510. "r": 15
  1511. },
  1512. "value": null,
  1513. "weight": 6,
  1514. "x": 356.4458508265521,
  1515. "y": 303.8873963063289
  1516. },
  1517. "target": {
  1518. "index": 5,
  1519. "label": "Beru Whitesun lars",
  1520. "label_display": "center",
  1521. "px": 291.4497424204467,
  1522. "py": 230.79050107064577,
  1523. "shape": "circle",
  1524. "shape_attrs": {
  1525. "r": 15
  1526. },
  1527. "value": null,
  1528. "weight": 5,
  1529. "x": 291.45080752695907,
  1530. "y": 230.78845468525188
  1531. },
  1532. "value": 2
  1533. },
  1534. {
  1535. "source": {
  1536. "fixed": 0,
  1537. "index": 1,
  1538. "label": "Yoda",
  1539. "label_display": "center",
  1540. "px": 356.4458508265521,
  1541. "py": 303.8873963063289,
  1542. "shape": "circle",
  1543. "shape_attrs": {
  1544. "r": 15
  1545. },
  1546. "value": null,
  1547. "weight": 6,
  1548. "x": 356.4458508265521,
  1549. "y": 303.8873963063289
  1550. },
  1551. "target": {
  1552. "fixed": 0,
  1553. "index": 6,
  1554. "label": "Mon Mothma",
  1555. "label_display": "center",
  1556. "px": 263.41098078743124,
  1557. "py": 223.844828624078,
  1558. "shape": "circle",
  1559. "shape_attrs": {
  1560. "r": 15
  1561. },
  1562. "value": null,
  1563. "weight": 5,
  1564. "x": 263.41098078743124,
  1565. "y": 223.844828624078
  1566. },
  1567. "value": 1
  1568. },
  1569. {
  1570. "source": {
  1571. "index": 2,
  1572. "label": "Jabba Desilijic Tiure",
  1573. "label_display": "center",
  1574. "px": 397.0629806211808,
  1575. "py": 256.53951554271566,
  1576. "shape": "circle",
  1577. "shape_attrs": {
  1578. "r": 15
  1579. },
  1580. "value": null,
  1581. "weight": 6,
  1582. "x": 397.1817904844187,
  1583. "y": 256.57990026031894
  1584. },
  1585. "target": {
  1586. "index": 3,
  1587. "label": "Darth Vader",
  1588. "label_display": "center",
  1589. "px": 384.1377692888981,
  1590. "py": 194.44514046365657,
  1591. "shape": "circle",
  1592. "shape_attrs": {
  1593. "r": 15
  1594. },
  1595. "value": null,
  1596. "weight": 6,
  1597. "x": 384.24698738950525,
  1598. "y": 194.36455374817675
  1599. },
  1600. "value": 2
  1601. },
  1602. {
  1603. "source": {
  1604. "index": 2,
  1605. "label": "Jabba Desilijic Tiure",
  1606. "label_display": "center",
  1607. "px": 397.0629806211808,
  1608. "py": 256.53951554271566,
  1609. "shape": "circle",
  1610. "shape_attrs": {
  1611. "r": 15
  1612. },
  1613. "value": null,
  1614. "weight": 6,
  1615. "x": 397.1817904844187,
  1616. "y": 256.57990026031894
  1617. },
  1618. "target": {
  1619. "fixed": 0,
  1620. "index": 4,
  1621. "label": "Obi-Wan Kenobi",
  1622. "label_display": "center",
  1623. "px": 290.1259246400829,
  1624. "py": 301.72828232132366,
  1625. "shape": "circle",
  1626. "shape_attrs": {
  1627. "r": 15
  1628. },
  1629. "value": null,
  1630. "weight": 6,
  1631. "x": 290.1259246400829,
  1632. "y": 301.72828232132366
  1633. },
  1634. "value": 3
  1635. },
  1636. {
  1637. "source": {
  1638. "index": 2,
  1639. "label": "Jabba Desilijic Tiure",
  1640. "label_display": "center",
  1641. "px": 397.0629806211808,
  1642. "py": 256.53951554271566,
  1643. "shape": "circle",
  1644. "shape_attrs": {
  1645. "r": 15
  1646. },
  1647. "value": null,
  1648. "weight": 6,
  1649. "x": 397.1817904844187,
  1650. "y": 256.57990026031894
  1651. },
  1652. "target": {
  1653. "index": 5,
  1654. "label": "Beru Whitesun lars",
  1655. "label_display": "center",
  1656. "px": 291.4497424204467,
  1657. "py": 230.79050107064577,
  1658. "shape": "circle",
  1659. "shape_attrs": {
  1660. "r": 15
  1661. },
  1662. "value": null,
  1663. "weight": 5,
  1664. "x": 291.45080752695907,
  1665. "y": 230.78845468525188
  1666. },
  1667. "value": 1
  1668. },
  1669. {
  1670. "source": {
  1671. "index": 2,
  1672. "label": "Jabba Desilijic Tiure",
  1673. "label_display": "center",
  1674. "px": 397.0629806211808,
  1675. "py": 256.53951554271566,
  1676. "shape": "circle",
  1677. "shape_attrs": {
  1678. "r": 15
  1679. },
  1680. "value": null,
  1681. "weight": 6,
  1682. "x": 397.1817904844187,
  1683. "y": 256.57990026031894
  1684. },
  1685. "target": {
  1686. "fixed": 0,
  1687. "index": 6,
  1688. "label": "Mon Mothma",
  1689. "label_display": "center",
  1690. "px": 263.41098078743124,
  1691. "py": 223.844828624078,
  1692. "shape": "circle",
  1693. "shape_attrs": {
  1694. "r": 15
  1695. },
  1696. "value": null,
  1697. "weight": 5,
  1698. "x": 263.41098078743124,
  1699. "y": 223.844828624078
  1700. },
  1701. "value": 1
  1702. },
  1703. {
  1704. "source": {
  1705. "index": 3,
  1706. "label": "Darth Vader",
  1707. "label_display": "center",
  1708. "px": 384.1377692888981,
  1709. "py": 194.44514046365657,
  1710. "shape": "circle",
  1711. "shape_attrs": {
  1712. "r": 15
  1713. },
  1714. "value": null,
  1715. "weight": 6,
  1716. "x": 384.24698738950525,
  1717. "y": 194.36455374817675
  1718. },
  1719. "target": {
  1720. "fixed": 0,
  1721. "index": 4,
  1722. "label": "Obi-Wan Kenobi",
  1723. "label_display": "center",
  1724. "px": 290.1259246400829,
  1725. "py": 301.72828232132366,
  1726. "shape": "circle",
  1727. "shape_attrs": {
  1728. "r": 15
  1729. },
  1730. "value": null,
  1731. "weight": 6,
  1732. "x": 290.1259246400829,
  1733. "y": 301.72828232132366
  1734. },
  1735. "value": 4
  1736. },
  1737. {
  1738. "source": {
  1739. "index": 3,
  1740. "label": "Darth Vader",
  1741. "label_display": "center",
  1742. "px": 384.1377692888981,
  1743. "py": 194.44514046365657,
  1744. "shape": "circle",
  1745. "shape_attrs": {
  1746. "r": 15
  1747. },
  1748. "value": null,
  1749. "weight": 6,
  1750. "x": 384.24698738950525,
  1751. "y": 194.36455374817675
  1752. },
  1753. "target": {
  1754. "index": 5,
  1755. "label": "Beru Whitesun lars",
  1756. "label_display": "center",
  1757. "px": 291.4497424204467,
  1758. "py": 230.79050107064577,
  1759. "shape": "circle",
  1760. "shape_attrs": {
  1761. "r": 15
  1762. },
  1763. "value": null,
  1764. "weight": 5,
  1765. "x": 291.45080752695907,
  1766. "y": 230.78845468525188
  1767. },
  1768. "value": 2
  1769. },
  1770. {
  1771. "source": {
  1772. "index": 3,
  1773. "label": "Darth Vader",
  1774. "label_display": "center",
  1775. "px": 384.1377692888981,
  1776. "py": 194.44514046365657,
  1777. "shape": "circle",
  1778. "shape_attrs": {
  1779. "r": 15
  1780. },
  1781. "value": null,
  1782. "weight": 6,
  1783. "x": 384.24698738950525,
  1784. "y": 194.36455374817675
  1785. },
  1786. "target": {
  1787. "fixed": 0,
  1788. "index": 6,
  1789. "label": "Mon Mothma",
  1790. "label_display": "center",
  1791. "px": 263.41098078743124,
  1792. "py": 223.844828624078,
  1793. "shape": "circle",
  1794. "shape_attrs": {
  1795. "r": 15
  1796. },
  1797. "value": null,
  1798. "weight": 5,
  1799. "x": 263.41098078743124,
  1800. "y": 223.844828624078
  1801. },
  1802. "value": 1
  1803. },
  1804. {
  1805. "source": {
  1806. "fixed": 0,
  1807. "index": 4,
  1808. "label": "Obi-Wan Kenobi",
  1809. "label_display": "center",
  1810. "px": 290.1259246400829,
  1811. "py": 301.72828232132366,
  1812. "shape": "circle",
  1813. "shape_attrs": {
  1814. "r": 15
  1815. },
  1816. "value": null,
  1817. "weight": 6,
  1818. "x": 290.1259246400829,
  1819. "y": 301.72828232132366
  1820. },
  1821. "target": {
  1822. "index": 5,
  1823. "label": "Beru Whitesun lars",
  1824. "label_display": "center",
  1825. "px": 291.4497424204467,
  1826. "py": 230.79050107064577,
  1827. "shape": "circle",
  1828. "shape_attrs": {
  1829. "r": 15
  1830. },
  1831. "value": null,
  1832. "weight": 5,
  1833. "x": 291.45080752695907,
  1834. "y": 230.78845468525188
  1835. },
  1836. "value": 3
  1837. },
  1838. {
  1839. "source": {
  1840. "fixed": 0,
  1841. "index": 4,
  1842. "label": "Obi-Wan Kenobi",
  1843. "label_display": "center",
  1844. "px": 290.1259246400829,
  1845. "py": 301.72828232132366,
  1846. "shape": "circle",
  1847. "shape_attrs": {
  1848. "r": 15
  1849. },
  1850. "value": null,
  1851. "weight": 6,
  1852. "x": 290.1259246400829,
  1853. "y": 301.72828232132366
  1854. },
  1855. "target": {
  1856. "fixed": 0,
  1857. "index": 6,
  1858. "label": "Mon Mothma",
  1859. "label_display": "center",
  1860. "px": 263.41098078743124,
  1861. "py": 223.844828624078,
  1862. "shape": "circle",
  1863. "shape_attrs": {
  1864. "r": 15
  1865. },
  1866. "value": null,
  1867. "weight": 5,
  1868. "x": 263.41098078743124,
  1869. "y": 223.844828624078
  1870. },
  1871. "value": 1
  1872. }
  1873. ],
  1874. "link_distance": 100,
  1875. "link_matrix": {
  1876. "type": "float",
  1877. "values": []
  1878. },
  1879. "link_type": "arc",
  1880. "node_data": [
  1881. "Boba Fett",
  1882. "Yoda",
  1883. "Jabba Desilijic Tiure",
  1884. "Darth Vader",
  1885. "Obi-Wan Kenobi",
  1886. "Beru Whitesun lars",
  1887. "Mon Mothma"
  1888. ],
  1889. "preserve_domain": {},
  1890. "scales": {},
  1891. "scales_metadata": {
  1892. "color": {
  1893. "dimension": "color"
  1894. },
  1895. "link_color": {
  1896. "dimension": "link_color"
  1897. },
  1898. "x": {
  1899. "dimension": "x",
  1900. "orientation": "horizontal"
  1901. },
  1902. "y": {
  1903. "dimension": "y",
  1904. "orientation": "vertical"
  1905. }
  1906. },
  1907. "selected": [
  1908. 6
  1909. ],
  1910. "selected_style": {},
  1911. "tooltip": "IPY_MODEL_6645f39f0deb4496ab5efede284a8c76",
  1912. "tooltip_location": "mouse",
  1913. "tooltip_style": {
  1914. "opacity": 0.9
  1915. },
  1916. "unhovered_style": {},
  1917. "unselected_style": {},
  1918. "visible": true,
  1919. "x": {
  1920. "type": "float",
  1921. "values": []
  1922. },
  1923. "y": {
  1924. "type": "float",
  1925. "values": []
  1926. }
  1927. }
  1928. },
  1929. "28350a7120e4464693802db4d880952b": {
  1930. "model_module": "bqplot",
  1931. "model_module_version": "^0.4.1",
  1932. "model_name": "TooltipModel",
  1933. "state": {
  1934. "_model_module_version": "^0.4.1",
  1935. "_view_module_version": "^0.4.1",
  1936. "fields": [
  1937. "label"
  1938. ],
  1939. "layout": "IPY_MODEL_51d3a0c37fbd4a6b916e42fb08cc5a36"
  1940. }
  1941. },
  1942. "29e6ddb100254eca92f88ca05a3d00af": {
  1943. "model_module": "bqplot",
  1944. "model_module_version": "^0.4.1",
  1945. "model_name": "GraphModel",
  1946. "state": {
  1947. "_model_module": "bqplot",
  1948. "_model_module_version": "^0.4.1",
  1949. "_view_count": null,
  1950. "_view_module": "bqplot",
  1951. "_view_module_version": "^0.4.1",
  1952. "apply_clip": true,
  1953. "charge": -600,
  1954. "color": {
  1955. "type": null,
  1956. "values": null
  1957. },
  1958. "colors": [
  1959. "#1f77b4",
  1960. "#ff7f0e",
  1961. "#2ca02c",
  1962. "#d62728",
  1963. "#9467bd",
  1964. "#8c564b",
  1965. "#e377c2",
  1966. "#7f7f7f",
  1967. "#bcbd22",
  1968. "#17becf"
  1969. ],
  1970. "directed": true,
  1971. "display_legend": false,
  1972. "enable_hover": true,
  1973. "highlight_links": true,
  1974. "hovered_style": {},
  1975. "interactions": {
  1976. "click": "select",
  1977. "hover": "tooltip"
  1978. },
  1979. "labels": [],
  1980. "link_color": {
  1981. "type": "float",
  1982. "values": []
  1983. },
  1984. "link_data": [
  1985. {
  1986. "source": {
  1987. "index": 0,
  1988. "label": "Boba Fett",
  1989. "label_display": "center",
  1990. "px": 397.56754062458566,
  1991. "py": 240.0367158763121,
  1992. "shape": "circle",
  1993. "shape_attrs": {
  1994. "r": 15
  1995. },
  1996. "value": null,
  1997. "weight": 6,
  1998. "x": 397.7005088210767,
  1999. "y": 240.03555805699233
  2000. },
  2001. "target": {
  2002. "fixed": 0,
  2003. "index": 1,
  2004. "label": "Yoda",
  2005. "label_display": "center",
  2006. "px": 307.79679795323716,
  2007. "py": 171.19676759666476,
  2008. "shape": "circle",
  2009. "shape_attrs": {
  2010. "r": 15
  2011. },
  2012. "value": null,
  2013. "weight": 6,
  2014. "x": 307.79679795323716,
  2015. "y": 171.19676759666476
  2016. },
  2017. "value": 3
  2018. },
  2019. {
  2020. "source": {
  2021. "index": 0,
  2022. "label": "Boba Fett",
  2023. "label_display": "center",
  2024. "px": 397.56754062458566,
  2025. "py": 240.0367158763121,
  2026. "shape": "circle",
  2027. "shape_attrs": {
  2028. "r": 15
  2029. },
  2030. "value": null,
  2031. "weight": 6,
  2032. "x": 397.7005088210767,
  2033. "y": 240.03555805699233
  2034. },
  2035. "target": {
  2036. "index": 2,
  2037. "label": "Jabba Desilijic Tiure",
  2038. "label_display": "center",
  2039. "px": 368.8846107573026,
  2040. "py": 293.8014677948334,
  2041. "shape": "circle",
  2042. "shape_attrs": {
  2043. "r": 15
  2044. },
  2045. "value": null,
  2046. "weight": 6,
  2047. "x": 368.9589763939335,
  2048. "y": 293.8978448652864
  2049. },
  2050. "value": 1
  2051. },
  2052. {
  2053. "source": {
  2054. "index": 0,
  2055. "label": "Boba Fett",
  2056. "label_display": "center",
  2057. "px": 397.56754062458566,
  2058. "py": 240.0367158763121,
  2059. "shape": "circle",
  2060. "shape_attrs": {
  2061. "r": 15
  2062. },
  2063. "value": null,
  2064. "weight": 6,
  2065. "x": 397.7005088210767,
  2066. "y": 240.03555805699233
  2067. },
  2068. "target": {
  2069. "fixed": 0,
  2070. "index": 3,
  2071. "label": "Darth Vader",
  2072. "label_display": "center",
  2073. "px": 307.9198377949116,
  2074. "py": 308.87889625208084,
  2075. "shape": "circle",
  2076. "shape_attrs": {
  2077. "r": 15
  2078. },
  2079. "value": null,
  2080. "weight": 6,
  2081. "x": 307.9198377949116,
  2082. "y": 308.87889625208084
  2083. },
  2084. "value": 2
  2085. },
  2086. {
  2087. "source": {
  2088. "index": 0,
  2089. "label": "Boba Fett",
  2090. "label_display": "center",
  2091. "px": 397.56754062458566,
  2092. "py": 240.0367158763121,
  2093. "shape": "circle",
  2094. "shape_attrs": {
  2095. "r": 15
  2096. },
  2097. "value": null,
  2098. "weight": 6,
  2099. "x": 397.7005088210767,
  2100. "y": 240.03555805699233
  2101. },
  2102. "target": {
  2103. "fixed": 0,
  2104. "index": 4,
  2105. "label": "Obi-Wan Kenobi",
  2106. "label_display": "center",
  2107. "px": 368.85628919116306,
  2108. "py": 186.15447440986452,
  2109. "shape": "circle",
  2110. "shape_attrs": {
  2111. "r": 15
  2112. },
  2113. "value": null,
  2114. "weight": 6,
  2115. "x": 368.9296953962794,
  2116. "y": 186.05673616107325
  2117. },
  2118. "value": 3
  2119. },
  2120. {
  2121. "source": {
  2122. "index": 0,
  2123. "label": "Boba Fett",
  2124. "label_display": "center",
  2125. "px": 397.56754062458566,
  2126. "py": 240.0367158763121,
  2127. "shape": "circle",
  2128. "shape_attrs": {
  2129. "r": 15
  2130. },
  2131. "value": null,
  2132. "weight": 6,
  2133. "x": 397.7005088210767,
  2134. "y": 240.03555805699233
  2135. },
  2136. "target": {
  2137. "index": 5,
  2138. "label": "Beru Whitesun lars",
  2139. "label_display": "center",
  2140. "px": 270.0754984630882,
  2141. "py": 225.64733843091426,
  2142. "shape": "circle",
  2143. "shape_attrs": {
  2144. "r": 15
  2145. },
  2146. "value": null,
  2147. "weight": 5,
  2148. "x": 269.9761341133411,
  2149. "y": 225.55229962235617
  2150. },
  2151. "value": 1
  2152. },
  2153. {
  2154. "source": {
  2155. "index": 0,
  2156. "label": "Boba Fett",
  2157. "label_display": "center",
  2158. "px": 397.56754062458566,
  2159. "py": 240.0367158763121,
  2160. "shape": "circle",
  2161. "shape_attrs": {
  2162. "r": 15
  2163. },
  2164. "value": null,
  2165. "weight": 6,
  2166. "x": 397.7005088210767,
  2167. "y": 240.03555805699233
  2168. },
  2169. "target": {
  2170. "index": 6,
  2171. "label": "Mon Mothma",
  2172. "label_display": "center",
  2173. "px": 269.800160689168,
  2174. "py": 254.40788917945866,
  2175. "shape": "circle",
  2176. "shape_attrs": {
  2177. "r": 15
  2178. },
  2179. "value": null,
  2180. "weight": 5,
  2181. "x": 269.70041007882014,
  2182. "y": 254.5017158542371
  2183. },
  2184. "value": 1
  2185. },
  2186. {
  2187. "source": {
  2188. "fixed": 0,
  2189. "index": 1,
  2190. "label": "Yoda",
  2191. "label_display": "center",
  2192. "px": 307.79679795323716,
  2193. "py": 171.19676759666476,
  2194. "shape": "circle",
  2195. "shape_attrs": {
  2196. "r": 15
  2197. },
  2198. "value": null,
  2199. "weight": 6,
  2200. "x": 307.79679795323716,
  2201. "y": 171.19676759666476
  2202. },
  2203. "target": {
  2204. "index": 2,
  2205. "label": "Jabba Desilijic Tiure",
  2206. "label_display": "center",
  2207. "px": 368.8846107573026,
  2208. "py": 293.8014677948334,
  2209. "shape": "circle",
  2210. "shape_attrs": {
  2211. "r": 15
  2212. },
  2213. "value": null,
  2214. "weight": 6,
  2215. "x": 368.9589763939335,
  2216. "y": 293.8978448652864
  2217. },
  2218. "value": 2
  2219. },
  2220. {
  2221. "source": {
  2222. "fixed": 0,
  2223. "index": 1,
  2224. "label": "Yoda",
  2225. "label_display": "center",
  2226. "px": 307.79679795323716,
  2227. "py": 171.19676759666476,
  2228. "shape": "circle",
  2229. "shape_attrs": {
  2230. "r": 15
  2231. },
  2232. "value": null,
  2233. "weight": 6,
  2234. "x": 307.79679795323716,
  2235. "y": 171.19676759666476
  2236. },
  2237. "target": {
  2238. "fixed": 0,
  2239. "index": 3,
  2240. "label": "Darth Vader",
  2241. "label_display": "center",
  2242. "px": 307.9198377949116,
  2243. "py": 308.87889625208084,
  2244. "shape": "circle",
  2245. "shape_attrs": {
  2246. "r": 15
  2247. },
  2248. "value": null,
  2249. "weight": 6,
  2250. "x": 307.9198377949116,
  2251. "y": 308.87889625208084
  2252. },
  2253. "value": 3
  2254. },
  2255. {
  2256. "source": {
  2257. "fixed": 0,
  2258. "index": 1,
  2259. "label": "Yoda",
  2260. "label_display": "center",
  2261. "px": 307.79679795323716,
  2262. "py": 171.19676759666476,
  2263. "shape": "circle",
  2264. "shape_attrs": {
  2265. "r": 15
  2266. },
  2267. "value": null,
  2268. "weight": 6,
  2269. "x": 307.79679795323716,
  2270. "y": 171.19676759666476
  2271. },
  2272. "target": {
  2273. "fixed": 0,
  2274. "index": 4,
  2275. "label": "Obi-Wan Kenobi",
  2276. "label_display": "center",
  2277. "px": 368.85628919116306,
  2278. "py": 186.15447440986452,
  2279. "shape": "circle",
  2280. "shape_attrs": {
  2281. "r": 15
  2282. },
  2283. "value": null,
  2284. "weight": 6,
  2285. "x": 368.9296953962794,
  2286. "y": 186.05673616107325
  2287. },
  2288. "value": 5
  2289. },
  2290. {
  2291. "source": {
  2292. "fixed": 0,
  2293. "index": 1,
  2294. "label": "Yoda",
  2295. "label_display": "center",
  2296. "px": 307.79679795323716,
  2297. "py": 171.19676759666476,
  2298. "shape": "circle",
  2299. "shape_attrs": {
  2300. "r": 15
  2301. },
  2302. "value": null,
  2303. "weight": 6,
  2304. "x": 307.79679795323716,
  2305. "y": 171.19676759666476
  2306. },
  2307. "target": {
  2308. "index": 5,
  2309. "label": "Beru Whitesun lars",
  2310. "label_display": "center",
  2311. "px": 270.0754984630882,
  2312. "py": 225.64733843091426,
  2313. "shape": "circle",
  2314. "shape_attrs": {
  2315. "r": 15
  2316. },
  2317. "value": null,
  2318. "weight": 5,
  2319. "x": 269.9761341133411,
  2320. "y": 225.55229962235617
  2321. },
  2322. "value": 2
  2323. },
  2324. {
  2325. "source": {
  2326. "fixed": 0,
  2327. "index": 1,
  2328. "label": "Yoda",
  2329. "label_display": "center",
  2330. "px": 307.79679795323716,
  2331. "py": 171.19676759666476,
  2332. "shape": "circle",
  2333. "shape_attrs": {
  2334. "r": 15
  2335. },
  2336. "value": null,
  2337. "weight": 6,
  2338. "x": 307.79679795323716,
  2339. "y": 171.19676759666476
  2340. },
  2341. "target": {
  2342. "index": 6,
  2343. "label": "Mon Mothma",
  2344. "label_display": "center",
  2345. "px": 269.800160689168,
  2346. "py": 254.40788917945866,
  2347. "shape": "circle",
  2348. "shape_attrs": {
  2349. "r": 15
  2350. },
  2351. "value": null,
  2352. "weight": 5,
  2353. "x": 269.70041007882014,
  2354. "y": 254.5017158542371
  2355. },
  2356. "value": 1
  2357. },
  2358. {
  2359. "source": {
  2360. "index": 2,
  2361. "label": "Jabba Desilijic Tiure",
  2362. "label_display": "center",
  2363. "px": 368.8846107573026,
  2364. "py": 293.8014677948334,
  2365. "shape": "circle",
  2366. "shape_attrs": {
  2367. "r": 15
  2368. },
  2369. "value": null,
  2370. "weight": 6,
  2371. "x": 368.9589763939335,
  2372. "y": 293.8978448652864
  2373. },
  2374. "target": {
  2375. "fixed": 0,
  2376. "index": 3,
  2377. "label": "Darth Vader",
  2378. "label_display": "center",
  2379. "px": 307.9198377949116,
  2380. "py": 308.87889625208084,
  2381. "shape": "circle",
  2382. "shape_attrs": {
  2383. "r": 15
  2384. },
  2385. "value": null,
  2386. "weight": 6,
  2387. "x": 307.9198377949116,
  2388. "y": 308.87889625208084
  2389. },
  2390. "value": 2
  2391. },
  2392. {
  2393. "source": {
  2394. "index": 2,
  2395. "label": "Jabba Desilijic Tiure",
  2396. "label_display": "center",
  2397. "px": 368.8846107573026,
  2398. "py": 293.8014677948334,
  2399. "shape": "circle",
  2400. "shape_attrs": {
  2401. "r": 15
  2402. },
  2403. "value": null,
  2404. "weight": 6,
  2405. "x": 368.9589763939335,
  2406. "y": 293.8978448652864
  2407. },
  2408. "target": {
  2409. "fixed": 0,
  2410. "index": 4,
  2411. "label": "Obi-Wan Kenobi",
  2412. "label_display": "center",
  2413. "px": 368.85628919116306,
  2414. "py": 186.15447440986452,
  2415. "shape": "circle",
  2416. "shape_attrs": {
  2417. "r": 15
  2418. },
  2419. "value": null,
  2420. "weight": 6,
  2421. "x": 368.9296953962794,
  2422. "y": 186.05673616107325
  2423. },
  2424. "value": 3
  2425. },
  2426. {
  2427. "source": {
  2428. "index": 2,
  2429. "label": "Jabba Desilijic Tiure",
  2430. "label_display": "center",
  2431. "px": 368.8846107573026,
  2432. "py": 293.8014677948334,
  2433. "shape": "circle",
  2434. "shape_attrs": {
  2435. "r": 15
  2436. },
  2437. "value": null,
  2438. "weight": 6,
  2439. "x": 368.9589763939335,
  2440. "y": 293.8978448652864
  2441. },
  2442. "target": {
  2443. "index": 5,
  2444. "label": "Beru Whitesun lars",
  2445. "label_display": "center",
  2446. "px": 270.0754984630882,
  2447. "py": 225.64733843091426,
  2448. "shape": "circle",
  2449. "shape_attrs": {
  2450. "r": 15
  2451. },
  2452. "value": null,
  2453. "weight": 5,
  2454. "x": 269.9761341133411,
  2455. "y": 225.55229962235617
  2456. },
  2457. "value": 1
  2458. },
  2459. {
  2460. "source": {
  2461. "index": 2,
  2462. "label": "Jabba Desilijic Tiure",
  2463. "label_display": "center",
  2464. "px": 368.8846107573026,
  2465. "py": 293.8014677948334,
  2466. "shape": "circle",
  2467. "shape_attrs": {
  2468. "r": 15
  2469. },
  2470. "value": null,
  2471. "weight": 6,
  2472. "x": 368.9589763939335,
  2473. "y": 293.8978448652864
  2474. },
  2475. "target": {
  2476. "index": 6,
  2477. "label": "Mon Mothma",
  2478. "label_display": "center",
  2479. "px": 269.800160689168,
  2480. "py": 254.40788917945866,
  2481. "shape": "circle",
  2482. "shape_attrs": {
  2483. "r": 15
  2484. },
  2485. "value": null,
  2486. "weight": 5,
  2487. "x": 269.70041007882014,
  2488. "y": 254.5017158542371
  2489. },
  2490. "value": 1
  2491. },
  2492. {
  2493. "source": {
  2494. "fixed": 0,
  2495. "index": 3,
  2496. "label": "Darth Vader",
  2497. "label_display": "center",
  2498. "px": 307.9198377949116,
  2499. "py": 308.87889625208084,
  2500. "shape": "circle",
  2501. "shape_attrs": {
  2502. "r": 15
  2503. },
  2504. "value": null,
  2505. "weight": 6,
  2506. "x": 307.9198377949116,
  2507. "y": 308.87889625208084
  2508. },
  2509. "target": {
  2510. "fixed": 0,
  2511. "index": 4,
  2512. "label": "Obi-Wan Kenobi",
  2513. "label_display": "center",
  2514. "px": 368.85628919116306,
  2515. "py": 186.15447440986452,
  2516. "shape": "circle",
  2517. "shape_attrs": {
  2518. "r": 15
  2519. },
  2520. "value": null,
  2521. "weight": 6,
  2522. "x": 368.9296953962794,
  2523. "y": 186.05673616107325
  2524. },
  2525. "value": 4
  2526. },
  2527. {
  2528. "source": {
  2529. "fixed": 0,
  2530. "index": 3,
  2531. "label": "Darth Vader",
  2532. "label_display": "center",
  2533. "px": 307.9198377949116,
  2534. "py": 308.87889625208084,
  2535. "shape": "circle",
  2536. "shape_attrs": {
  2537. "r": 15
  2538. },
  2539. "value": null,
  2540. "weight": 6,
  2541. "x": 307.9198377949116,
  2542. "y": 308.87889625208084
  2543. },
  2544. "target": {
  2545. "index": 5,
  2546. "label": "Beru Whitesun lars",
  2547. "label_display": "center",
  2548. "px": 270.0754984630882,
  2549. "py": 225.64733843091426,
  2550. "shape": "circle",
  2551. "shape_attrs": {
  2552. "r": 15
  2553. },
  2554. "value": null,
  2555. "weight": 5,
  2556. "x": 269.9761341133411,
  2557. "y": 225.55229962235617
  2558. },
  2559. "value": 2
  2560. },
  2561. {
  2562. "source": {
  2563. "fixed": 0,
  2564. "index": 3,
  2565. "label": "Darth Vader",
  2566. "label_display": "center",
  2567. "px": 307.9198377949116,
  2568. "py": 308.87889625208084,
  2569. "shape": "circle",
  2570. "shape_attrs": {
  2571. "r": 15
  2572. },
  2573. "value": null,
  2574. "weight": 6,
  2575. "x": 307.9198377949116,
  2576. "y": 308.87889625208084
  2577. },
  2578. "target": {
  2579. "index": 6,
  2580. "label": "Mon Mothma",
  2581. "label_display": "center",
  2582. "px": 269.800160689168,
  2583. "py": 254.40788917945866,
  2584. "shape": "circle",
  2585. "shape_attrs": {
  2586. "r": 15
  2587. },
  2588. "value": null,
  2589. "weight": 5,
  2590. "x": 269.70041007882014,
  2591. "y": 254.5017158542371
  2592. },
  2593. "value": 1
  2594. },
  2595. {
  2596. "source": {
  2597. "fixed": 0,
  2598. "index": 4,
  2599. "label": "Obi-Wan Kenobi",
  2600. "label_display": "center",
  2601. "px": 368.85628919116306,
  2602. "py": 186.15447440986452,
  2603. "shape": "circle",
  2604. "shape_attrs": {
  2605. "r": 15
  2606. },
  2607. "value": null,
  2608. "weight": 6,
  2609. "x": 368.9296953962794,
  2610. "y": 186.05673616107325
  2611. },
  2612. "target": {
  2613. "index": 5,
  2614. "label": "Beru Whitesun lars",
  2615. "label_display": "center",
  2616. "px": 270.0754984630882,
  2617. "py": 225.64733843091426,
  2618. "shape": "circle",
  2619. "shape_attrs": {
  2620. "r": 15
  2621. },
  2622. "value": null,
  2623. "weight": 5,
  2624. "x": 269.9761341133411,
  2625. "y": 225.55229962235617
  2626. },
  2627. "value": 3
  2628. },
  2629. {
  2630. "source": {
  2631. "fixed": 0,
  2632. "index": 4,
  2633. "label": "Obi-Wan Kenobi",
  2634. "label_display": "center",
  2635. "px": 368.85628919116306,
  2636. "py": 186.15447440986452,
  2637. "shape": "circle",
  2638. "shape_attrs": {
  2639. "r": 15
  2640. },
  2641. "value": null,
  2642. "weight": 6,
  2643. "x": 368.9296953962794,
  2644. "y": 186.05673616107325
  2645. },
  2646. "target": {
  2647. "index": 6,
  2648. "label": "Mon Mothma",
  2649. "label_display": "center",
  2650. "px": 269.800160689168,
  2651. "py": 254.40788917945866,
  2652. "shape": "circle",
  2653. "shape_attrs": {
  2654. "r": 15
  2655. },
  2656. "value": null,
  2657. "weight": 5,
  2658. "x": 269.70041007882014,
  2659. "y": 254.5017158542371
  2660. },
  2661. "value": 1
  2662. }
  2663. ],
  2664. "link_distance": 100,
  2665. "link_matrix": {
  2666. "type": "float",
  2667. "values": []
  2668. },
  2669. "link_type": "arc",
  2670. "node_data": [
  2671. "Boba Fett",
  2672. "Yoda",
  2673. "Jabba Desilijic Tiure",
  2674. "Darth Vader",
  2675. "Obi-Wan Kenobi",
  2676. "Beru Whitesun lars",
  2677. "Mon Mothma"
  2678. ],
  2679. "preserve_domain": {},
  2680. "scales": {},
  2681. "scales_metadata": {
  2682. "color": {
  2683. "dimension": "color"
  2684. },
  2685. "link_color": {
  2686. "dimension": "link_color"
  2687. },
  2688. "x": {
  2689. "dimension": "x",
  2690. "orientation": "horizontal"
  2691. },
  2692. "y": {
  2693. "dimension": "y",
  2694. "orientation": "vertical"
  2695. }
  2696. },
  2697. "selected": [
  2698. 4
  2699. ],
  2700. "selected_style": {},
  2701. "tooltip": "IPY_MODEL_fd3e381aab9a449cb9f015502973168f",
  2702. "tooltip_location": "mouse",
  2703. "tooltip_style": {
  2704. "opacity": 0.9
  2705. },
  2706. "unhovered_style": {},
  2707. "unselected_style": {},
  2708. "visible": true,
  2709. "x": {
  2710. "type": "float",
  2711. "values": []
  2712. },
  2713. "y": {
  2714. "type": "float",
  2715. "values": []
  2716. }
  2717. }
  2718. },
  2719. "2a4a6cc4f95a4bdeb3d75bc60ed05a22": {
  2720. "model_module": "bqplot",
  2721. "model_module_version": "^0.4.1",
  2722. "model_name": "GraphModel",
  2723. "state": {
  2724. "_model_module": "bqplot",
  2725. "_model_module_version": "^0.4.1",
  2726. "_view_count": null,
  2727. "_view_module": "bqplot",
  2728. "_view_module_version": "^0.4.1",
  2729. "apply_clip": true,
  2730. "charge": -600,
  2731. "color": {
  2732. "type": null,
  2733. "values": null
  2734. },
  2735. "colors": [
  2736. "#1f77b4",
  2737. "#ff7f0e",
  2738. "#2ca02c",
  2739. "#d62728",
  2740. "#9467bd",
  2741. "#8c564b",
  2742. "#e377c2",
  2743. "#7f7f7f",
  2744. "#bcbd22",
  2745. "#17becf"
  2746. ],
  2747. "directed": true,
  2748. "display_legend": false,
  2749. "enable_hover": true,
  2750. "highlight_links": true,
  2751. "hovered_style": {},
  2752. "interactions": {
  2753. "click": "select",
  2754. "hover": "tooltip"
  2755. },
  2756. "labels": [],
  2757. "link_color": {
  2758. "type": "float",
  2759. "values": []
  2760. },
  2761. "link_data": [
  2762. {
  2763. "source": {
  2764. "index": 0,
  2765. "label": "Boba Fett",
  2766. "label_display": "center",
  2767. "px": 252.91212946136625,
  2768. "py": 246.31555347273357,
  2769. "shape": "circle",
  2770. "shape_attrs": {
  2771. "r": 15
  2772. },
  2773. "value": null,
  2774. "weight": 6,
  2775. "x": 252.86085195519527,
  2776. "y": 246.37683843443702
  2777. },
  2778. "target": {
  2779. "index": 1,
  2780. "label": "Yoda",
  2781. "label_display": "center",
  2782. "px": 319.45156860541397,
  2783. "py": 199.94818430639026,
  2784. "shape": "circle",
  2785. "shape_attrs": {
  2786. "r": 15
  2787. },
  2788. "value": null,
  2789. "weight": 6,
  2790. "x": 319.4485654378334,
  2791. "y": 199.6481410127564
  2792. },
  2793. "value": 3
  2794. },
  2795. {
  2796. "source": {
  2797. "index": 0,
  2798. "label": "Boba Fett",
  2799. "label_display": "center",
  2800. "px": 252.91212946136625,
  2801. "py": 246.31555347273357,
  2802. "shape": "circle",
  2803. "shape_attrs": {
  2804. "r": 15
  2805. },
  2806. "value": null,
  2807. "weight": 6,
  2808. "x": 252.86085195519527,
  2809. "y": 246.37683843443702
  2810. },
  2811. "target": {
  2812. "index": 2,
  2813. "label": "Jabba Desilijic Tiure",
  2814. "label_display": "center",
  2815. "px": 335.30535142673415,
  2816. "py": 291.19171393971834,
  2817. "shape": "circle",
  2818. "shape_attrs": {
  2819. "r": 15
  2820. },
  2821. "value": null,
  2822. "weight": 6,
  2823. "x": 335.36080237308056,
  2824. "y": 291.1720500055729
  2825. },
  2826. "value": 1
  2827. },
  2828. {
  2829. "source": {
  2830. "index": 0,
  2831. "label": "Boba Fett",
  2832. "label_display": "center",
  2833. "px": 252.91212946136625,
  2834. "py": 246.31555347273357,
  2835. "shape": "circle",
  2836. "shape_attrs": {
  2837. "r": 15
  2838. },
  2839. "value": null,
  2840. "weight": 6,
  2841. "x": 252.86085195519527,
  2842. "y": 246.37683843443702
  2843. },
  2844. "target": {
  2845. "index": 3,
  2846. "label": "Darth Vader",
  2847. "label_display": "center",
  2848. "px": 277.90330266542463,
  2849. "py": 304.27355810835166,
  2850. "shape": "circle",
  2851. "shape_attrs": {
  2852. "r": 15
  2853. },
  2854. "value": null,
  2855. "weight": 6,
  2856. "x": 277.88891681674687,
  2857. "y": 304.41702856205075
  2858. },
  2859. "value": 2
  2860. },
  2861. {
  2862. "source": {
  2863. "index": 0,
  2864. "label": "Boba Fett",
  2865. "label_display": "center",
  2866. "px": 252.91212946136625,
  2867. "py": 246.31555347273357,
  2868. "shape": "circle",
  2869. "shape_attrs": {
  2870. "r": 15
  2871. },
  2872. "value": null,
  2873. "weight": 6,
  2874. "x": 252.86085195519527,
  2875. "y": 246.37683843443702
  2876. },
  2877. "target": {
  2878. "index": 4,
  2879. "label": "Obi-Wan Kenobi",
  2880. "label_display": "center",
  2881. "px": 374.7718563206217,
  2882. "py": 199.74810254203888,
  2883. "shape": "circle",
  2884. "shape_attrs": {
  2885. "r": 15
  2886. },
  2887. "value": null,
  2888. "weight": 6,
  2889. "x": 374.9004806959537,
  2890. "y": 199.74787672029134
  2891. },
  2892. "value": 3
  2893. },
  2894. {
  2895. "source": {
  2896. "index": 0,
  2897. "label": "Boba Fett",
  2898. "label_display": "center",
  2899. "px": 252.91212946136625,
  2900. "py": 246.31555347273357,
  2901. "shape": "circle",
  2902. "shape_attrs": {
  2903. "r": 15
  2904. },
  2905. "value": null,
  2906. "weight": 6,
  2907. "x": 252.86085195519527,
  2908. "y": 246.37683843443702
  2909. },
  2910. "target": {
  2911. "index": 5,
  2912. "label": "Beru Whitesun lars",
  2913. "label_display": "center",
  2914. "px": 394.92039294174685,
  2915. "py": 284.5297664048261,
  2916. "shape": "circle",
  2917. "shape_attrs": {
  2918. "r": 15
  2919. },
  2920. "value": null,
  2921. "weight": 5,
  2922. "x": 395.0667110074624,
  2923. "y": 284.5832965915823
  2924. },
  2925. "value": 1
  2926. },
  2927. {
  2928. "source": {
  2929. "index": 0,
  2930. "label": "Boba Fett",
  2931. "label_display": "center",
  2932. "px": 252.91212946136625,
  2933. "py": 246.31555347273357,
  2934. "shape": "circle",
  2935. "shape_attrs": {
  2936. "r": 15
  2937. },
  2938. "value": null,
  2939. "weight": 6,
  2940. "x": 252.86085195519527,
  2941. "y": 246.37683843443702
  2942. },
  2943. "target": {
  2944. "index": 6,
  2945. "label": "Mon Mothma",
  2946. "label_display": "center",
  2947. "px": 258.23983399949907,
  2948. "py": 174.4828350648153,
  2949. "shape": "circle",
  2950. "shape_attrs": {
  2951. "r": 15
  2952. },
  2953. "value": null,
  2954. "weight": 5,
  2955. "x": 258.0575243186628,
  2956. "y": 174.45759406054893
  2957. },
  2958. "value": 1
  2959. },
  2960. {
  2961. "source": {
  2962. "index": 1,
  2963. "label": "Yoda",
  2964. "label_display": "center",
  2965. "px": 319.45156860541397,
  2966. "py": 199.94818430639026,
  2967. "shape": "circle",
  2968. "shape_attrs": {
  2969. "r": 15
  2970. },
  2971. "value": null,
  2972. "weight": 6,
  2973. "x": 319.4485654378334,
  2974. "y": 199.6481410127564
  2975. },
  2976. "target": {
  2977. "index": 2,
  2978. "label": "Jabba Desilijic Tiure",
  2979. "label_display": "center",
  2980. "px": 335.30535142673415,
  2981. "py": 291.19171393971834,
  2982. "shape": "circle",
  2983. "shape_attrs": {
  2984. "r": 15
  2985. },
  2986. "value": null,
  2987. "weight": 6,
  2988. "x": 335.36080237308056,
  2989. "y": 291.1720500055729
  2990. },
  2991. "value": 2
  2992. },
  2993. {
  2994. "source": {
  2995. "index": 1,
  2996. "label": "Yoda",
  2997. "label_display": "center",
  2998. "px": 319.45156860541397,
  2999. "py": 199.94818430639026,
  3000. "shape": "circle",
  3001. "shape_attrs": {
  3002. "r": 15
  3003. },
  3004. "value": null,
  3005. "weight": 6,
  3006. "x": 319.4485654378334,
  3007. "y": 199.6481410127564
  3008. },
  3009. "target": {
  3010. "index": 3,
  3011. "label": "Darth Vader",
  3012. "label_display": "center",
  3013. "px": 277.90330266542463,
  3014. "py": 304.27355810835166,
  3015. "shape": "circle",
  3016. "shape_attrs": {
  3017. "r": 15
  3018. },
  3019. "value": null,
  3020. "weight": 6,
  3021. "x": 277.88891681674687,
  3022. "y": 304.41702856205075
  3023. },
  3024. "value": 3
  3025. },
  3026. {
  3027. "source": {
  3028. "index": 1,
  3029. "label": "Yoda",
  3030. "label_display": "center",
  3031. "px": 319.45156860541397,
  3032. "py": 199.94818430639026,
  3033. "shape": "circle",
  3034. "shape_attrs": {
  3035. "r": 15
  3036. },
  3037. "value": null,
  3038. "weight": 6,
  3039. "x": 319.4485654378334,
  3040. "y": 199.6481410127564
  3041. },
  3042. "target": {
  3043. "index": 4,
  3044. "label": "Obi-Wan Kenobi",
  3045. "label_display": "center",
  3046. "px": 374.7718563206217,
  3047. "py": 199.74810254203888,
  3048. "shape": "circle",
  3049. "shape_attrs": {
  3050. "r": 15
  3051. },
  3052. "value": null,
  3053. "weight": 6,
  3054. "x": 374.9004806959537,
  3055. "y": 199.74787672029134
  3056. },
  3057. "value": 5
  3058. },
  3059. {
  3060. "source": {
  3061. "index": 1,
  3062. "label": "Yoda",
  3063. "label_display": "center",
  3064. "px": 319.45156860541397,
  3065. "py": 199.94818430639026,
  3066. "shape": "circle",
  3067. "shape_attrs": {
  3068. "r": 15
  3069. },
  3070. "value": null,
  3071. "weight": 6,
  3072. "x": 319.4485654378334,
  3073. "y": 199.6481410127564
  3074. },
  3075. "target": {
  3076. "index": 5,
  3077. "label": "Beru Whitesun lars",
  3078. "label_display": "center",
  3079. "px": 394.92039294174685,
  3080. "py": 284.5297664048261,
  3081. "shape": "circle",
  3082. "shape_attrs": {
  3083. "r": 15
  3084. },
  3085. "value": null,
  3086. "weight": 5,
  3087. "x": 395.0667110074624,
  3088. "y": 284.5832965915823
  3089. },
  3090. "value": 2
  3091. },
  3092. {
  3093. "source": {
  3094. "index": 1,
  3095. "label": "Yoda",
  3096. "label_display": "center",
  3097. "px": 319.45156860541397,
  3098. "py": 199.94818430639026,
  3099. "shape": "circle",
  3100. "shape_attrs": {
  3101. "r": 15
  3102. },
  3103. "value": null,
  3104. "weight": 6,
  3105. "x": 319.4485654378334,
  3106. "y": 199.6481410127564
  3107. },
  3108. "target": {
  3109. "index": 6,
  3110. "label": "Mon Mothma",
  3111. "label_display": "center",
  3112. "px": 258.23983399949907,
  3113. "py": 174.4828350648153,
  3114. "shape": "circle",
  3115. "shape_attrs": {
  3116. "r": 15
  3117. },
  3118. "value": null,
  3119. "weight": 5,
  3120. "x": 258.0575243186628,
  3121. "y": 174.45759406054893
  3122. },
  3123. "value": 1
  3124. },
  3125. {
  3126. "source": {
  3127. "index": 2,
  3128. "label": "Jabba Desilijic Tiure",
  3129. "label_display": "center",
  3130. "px": 335.30535142673415,
  3131. "py": 291.19171393971834,
  3132. "shape": "circle",
  3133. "shape_attrs": {
  3134. "r": 15
  3135. },
  3136. "value": null,
  3137. "weight": 6,
  3138. "x": 335.36080237308056,
  3139. "y": 291.1720500055729
  3140. },
  3141. "target": {
  3142. "index": 3,
  3143. "label": "Darth Vader",
  3144. "label_display": "center",
  3145. "px": 277.90330266542463,
  3146. "py": 304.27355810835166,
  3147. "shape": "circle",
  3148. "shape_attrs": {
  3149. "r": 15
  3150. },
  3151. "value": null,
  3152. "weight": 6,
  3153. "x": 277.88891681674687,
  3154. "y": 304.41702856205075
  3155. },
  3156. "value": 2
  3157. },
  3158. {
  3159. "source": {
  3160. "index": 2,
  3161. "label": "Jabba Desilijic Tiure",
  3162. "label_display": "center",
  3163. "px": 335.30535142673415,
  3164. "py": 291.19171393971834,
  3165. "shape": "circle",
  3166. "shape_attrs": {
  3167. "r": 15
  3168. },
  3169. "value": null,
  3170. "weight": 6,
  3171. "x": 335.36080237308056,
  3172. "y": 291.1720500055729
  3173. },
  3174. "target": {
  3175. "index": 4,
  3176. "label": "Obi-Wan Kenobi",
  3177. "label_display": "center",
  3178. "px": 374.7718563206217,
  3179. "py": 199.74810254203888,
  3180. "shape": "circle",
  3181. "shape_attrs": {
  3182. "r": 15
  3183. },
  3184. "value": null,
  3185. "weight": 6,
  3186. "x": 374.9004806959537,
  3187. "y": 199.74787672029134
  3188. },
  3189. "value": 3
  3190. },
  3191. {
  3192. "source": {
  3193. "index": 2,
  3194. "label": "Jabba Desilijic Tiure",
  3195. "label_display": "center",
  3196. "px": 335.30535142673415,
  3197. "py": 291.19171393971834,
  3198. "shape": "circle",
  3199. "shape_attrs": {
  3200. "r": 15
  3201. },
  3202. "value": null,
  3203. "weight": 6,
  3204. "x": 335.36080237308056,
  3205. "y": 291.1720500055729
  3206. },
  3207. "target": {
  3208. "index": 5,
  3209. "label": "Beru Whitesun lars",
  3210. "label_display": "center",
  3211. "px": 394.92039294174685,
  3212. "py": 284.5297664048261,
  3213. "shape": "circle",
  3214. "shape_attrs": {
  3215. "r": 15
  3216. },
  3217. "value": null,
  3218. "weight": 5,
  3219. "x": 395.0667110074624,
  3220. "y": 284.5832965915823
  3221. },
  3222. "value": 1
  3223. },
  3224. {
  3225. "source": {
  3226. "index": 2,
  3227. "label": "Jabba Desilijic Tiure",
  3228. "label_display": "center",
  3229. "px": 335.30535142673415,
  3230. "py": 291.19171393971834,
  3231. "shape": "circle",
  3232. "shape_attrs": {
  3233. "r": 15
  3234. },
  3235. "value": null,
  3236. "weight": 6,
  3237. "x": 335.36080237308056,
  3238. "y": 291.1720500055729
  3239. },
  3240. "target": {
  3241. "index": 6,
  3242. "label": "Mon Mothma",
  3243. "label_display": "center",
  3244. "px": 258.23983399949907,
  3245. "py": 174.4828350648153,
  3246. "shape": "circle",
  3247. "shape_attrs": {
  3248. "r": 15
  3249. },
  3250. "value": null,
  3251. "weight": 5,
  3252. "x": 258.0575243186628,
  3253. "y": 174.45759406054893
  3254. },
  3255. "value": 1
  3256. },
  3257. {
  3258. "source": {
  3259. "index": 3,
  3260. "label": "Darth Vader",
  3261. "label_display": "center",
  3262. "px": 277.90330266542463,
  3263. "py": 304.27355810835166,
  3264. "shape": "circle",
  3265. "shape_attrs": {
  3266. "r": 15
  3267. },
  3268. "value": null,
  3269. "weight": 6,
  3270. "x": 277.88891681674687,
  3271. "y": 304.41702856205075
  3272. },
  3273. "target": {
  3274. "index": 4,
  3275. "label": "Obi-Wan Kenobi",
  3276. "label_display": "center",
  3277. "px": 374.7718563206217,
  3278. "py": 199.74810254203888,
  3279. "shape": "circle",
  3280. "shape_attrs": {
  3281. "r": 15
  3282. },
  3283. "value": null,
  3284. "weight": 6,
  3285. "x": 374.9004806959537,
  3286. "y": 199.74787672029134
  3287. },
  3288. "value": 4
  3289. },
  3290. {
  3291. "source": {
  3292. "index": 3,
  3293. "label": "Darth Vader",
  3294. "label_display": "center",
  3295. "px": 277.90330266542463,
  3296. "py": 304.27355810835166,
  3297. "shape": "circle",
  3298. "shape_attrs": {
  3299. "r": 15
  3300. },
  3301. "value": null,
  3302. "weight": 6,
  3303. "x": 277.88891681674687,
  3304. "y": 304.41702856205075
  3305. },
  3306. "target": {
  3307. "index": 5,
  3308. "label": "Beru Whitesun lars",
  3309. "label_display": "center",
  3310. "px": 394.92039294174685,
  3311. "py": 284.5297664048261,
  3312. "shape": "circle",
  3313. "shape_attrs": {
  3314. "r": 15
  3315. },
  3316. "value": null,
  3317. "weight": 5,
  3318. "x": 395.0667110074624,
  3319. "y": 284.5832965915823
  3320. },
  3321. "value": 2
  3322. },
  3323. {
  3324. "source": {
  3325. "index": 3,
  3326. "label": "Darth Vader",
  3327. "label_display": "center",
  3328. "px": 277.90330266542463,
  3329. "py": 304.27355810835166,
  3330. "shape": "circle",
  3331. "shape_attrs": {
  3332. "r": 15
  3333. },
  3334. "value": null,
  3335. "weight": 6,
  3336. "x": 277.88891681674687,
  3337. "y": 304.41702856205075
  3338. },
  3339. "target": {
  3340. "index": 6,
  3341. "label": "Mon Mothma",
  3342. "label_display": "center",
  3343. "px": 258.23983399949907,
  3344. "py": 174.4828350648153,
  3345. "shape": "circle",
  3346. "shape_attrs": {
  3347. "r": 15
  3348. },
  3349. "value": null,
  3350. "weight": 5,
  3351. "x": 258.0575243186628,
  3352. "y": 174.45759406054893
  3353. },
  3354. "value": 1
  3355. },
  3356. {
  3357. "source": {
  3358. "index": 4,
  3359. "label": "Obi-Wan Kenobi",
  3360. "label_display": "center",
  3361. "px": 374.7718563206217,
  3362. "py": 199.74810254203888,
  3363. "shape": "circle",
  3364. "shape_attrs": {
  3365. "r": 15
  3366. },
  3367. "value": null,
  3368. "weight": 6,
  3369. "x": 374.9004806959537,
  3370. "y": 199.74787672029134
  3371. },
  3372. "target": {
  3373. "index": 5,
  3374. "label": "Beru Whitesun lars",
  3375. "label_display": "center",
  3376. "px": 394.92039294174685,
  3377. "py": 284.5297664048261,
  3378. "shape": "circle",
  3379. "shape_attrs": {
  3380. "r": 15
  3381. },
  3382. "value": null,
  3383. "weight": 5,
  3384. "x": 395.0667110074624,
  3385. "y": 284.5832965915823
  3386. },
  3387. "value": 3
  3388. },
  3389. {
  3390. "source": {
  3391. "index": 4,
  3392. "label": "Obi-Wan Kenobi",
  3393. "label_display": "center",
  3394. "px": 374.7718563206217,
  3395. "py": 199.74810254203888,
  3396. "shape": "circle",
  3397. "shape_attrs": {
  3398. "r": 15
  3399. },
  3400. "value": null,
  3401. "weight": 6,
  3402. "x": 374.9004806959537,
  3403. "y": 199.74787672029134
  3404. },
  3405. "target": {
  3406. "index": 6,
  3407. "label": "Mon Mothma",
  3408. "label_display": "center",
  3409. "px": 258.23983399949907,
  3410. "py": 174.4828350648153,
  3411. "shape": "circle",
  3412. "shape_attrs": {
  3413. "r": 15
  3414. },
  3415. "value": null,
  3416. "weight": 5,
  3417. "x": 258.0575243186628,
  3418. "y": 174.45759406054893
  3419. },
  3420. "value": 1
  3421. }
  3422. ],
  3423. "link_distance": 100,
  3424. "link_matrix": {
  3425. "type": "float",
  3426. "values": []
  3427. },
  3428. "link_type": "arc",
  3429. "node_data": [
  3430. "Boba Fett",
  3431. "Yoda",
  3432. "Jabba Desilijic Tiure",
  3433. "Darth Vader",
  3434. "Obi-Wan Kenobi",
  3435. "Beru Whitesun lars",
  3436. "Mon Mothma"
  3437. ],
  3438. "preserve_domain": {},
  3439. "scales": {},
  3440. "scales_metadata": {
  3441. "color": {
  3442. "dimension": "color"
  3443. },
  3444. "link_color": {
  3445. "dimension": "link_color"
  3446. },
  3447. "x": {
  3448. "dimension": "x",
  3449. "orientation": "horizontal"
  3450. },
  3451. "y": {
  3452. "dimension": "y",
  3453. "orientation": "vertical"
  3454. }
  3455. },
  3456. "selected": [],
  3457. "selected_style": {},
  3458. "tooltip": "IPY_MODEL_ba64d40b9e1449e6bed759a3790e124a",
  3459. "tooltip_location": "mouse",
  3460. "tooltip_style": {
  3461. "opacity": 0.9
  3462. },
  3463. "unhovered_style": {},
  3464. "unselected_style": {},
  3465. "visible": true,
  3466. "x": {
  3467. "type": "float",
  3468. "values": []
  3469. },
  3470. "y": {
  3471. "type": "float",
  3472. "values": []
  3473. }
  3474. }
  3475. },
  3476. "2ac0758fc81a40129f188059fe4174f0": {
  3477. "model_module": "@jupyter-widgets/base",
  3478. "model_module_version": "1.1.0",
  3479. "model_name": "LayoutModel",
  3480. "state": {
  3481. "min_width": "125px"
  3482. }
  3483. },
  3484. "2cda5bf8fce64905abf9c9124eba8a0f": {
  3485. "model_module": "bqplot",
  3486. "model_module_version": "^0.4.1",
  3487. "model_name": "FigureModel",
  3488. "state": {
  3489. "_dom_classes": [],
  3490. "_model_module_version": "^0.4.1",
  3491. "_view_module_version": "^0.4.1",
  3492. "layout": "IPY_MODEL_8264ec1aa51f42208e886ce32a59895b",
  3493. "marks": [
  3494. "IPY_MODEL_3e0440e7497f49e0bbda9feeac7fb920"
  3495. ],
  3496. "scale_x": "IPY_MODEL_60ac2f0a25d448d1a70ca60294d42aec",
  3497. "scale_y": "IPY_MODEL_f563665150cc42e3bf55f4b02fd6a92a"
  3498. }
  3499. },
  3500. "2e07abb5c33c417985871851e7aa22f3": {
  3501. "model_module": "bqplot",
  3502. "model_module_version": "^0.4.1",
  3503. "model_name": "GraphModel",
  3504. "state": {
  3505. "_model_module": "bqplot",
  3506. "_model_module_version": "^0.4.1",
  3507. "_view_count": null,
  3508. "_view_module": "bqplot",
  3509. "_view_module_version": "^0.4.1",
  3510. "apply_clip": true,
  3511. "charge": -600,
  3512. "color": {
  3513. "type": null,
  3514. "values": null
  3515. },
  3516. "colors": [
  3517. "#1f77b4",
  3518. "#ff7f0e",
  3519. "#2ca02c",
  3520. "#d62728",
  3521. "#9467bd",
  3522. "#8c564b",
  3523. "#e377c2",
  3524. "#7f7f7f",
  3525. "#bcbd22",
  3526. "#17becf"
  3527. ],
  3528. "directed": true,
  3529. "display_legend": false,
  3530. "enable_hover": true,
  3531. "highlight_links": true,
  3532. "hovered_style": {},
  3533. "interactions": {
  3534. "click": "select",
  3535. "hover": "tooltip"
  3536. },
  3537. "labels": [],
  3538. "link_color": {
  3539. "type": "float",
  3540. "values": []
  3541. },
  3542. "link_data": [
  3543. {
  3544. "source": 3,
  3545. "target": 6,
  3546. "value": 1
  3547. }
  3548. ],
  3549. "link_distance": 100,
  3550. "link_matrix": {
  3551. "type": "float",
  3552. "values": []
  3553. },
  3554. "link_type": "arc",
  3555. "node_data": [
  3556. "Boba Fett",
  3557. "Yoda",
  3558. "Jabba Desilijic Tiure",
  3559. "Darth Vader",
  3560. "Obi-Wan Kenobi",
  3561. "Beru Whitesun lars",
  3562. "Mon Mothma"
  3563. ],
  3564. "preserve_domain": {},
  3565. "scales": {},
  3566. "scales_metadata": {
  3567. "color": {
  3568. "dimension": "color"
  3569. },
  3570. "link_color": {
  3571. "dimension": "link_color"
  3572. },
  3573. "x": {
  3574. "dimension": "x",
  3575. "orientation": "horizontal"
  3576. },
  3577. "y": {
  3578. "dimension": "y",
  3579. "orientation": "vertical"
  3580. }
  3581. },
  3582. "selected": [],
  3583. "selected_style": {},
  3584. "tooltip": "IPY_MODEL_fd3e381aab9a449cb9f015502973168f",
  3585. "tooltip_location": "mouse",
  3586. "tooltip_style": {
  3587. "opacity": 0.9
  3588. },
  3589. "unhovered_style": {},
  3590. "unselected_style": {},
  3591. "visible": true,
  3592. "x": {
  3593. "type": "float",
  3594. "values": []
  3595. },
  3596. "y": {
  3597. "type": "float",
  3598. "values": []
  3599. }
  3600. }
  3601. },
  3602. "2fa4e6dc7ddf44baae1397ab9145f5ff": {
  3603. "model_module": "bqplot",
  3604. "model_module_version": "^0.4.1",
  3605. "model_name": "LinearScaleModel",
  3606. "state": {
  3607. "_model_module_version": "^0.4.1",
  3608. "_view_module_version": "^0.4.1",
  3609. "allow_padding": false,
  3610. "max": 1,
  3611. "min": 0,
  3612. "stabilized": false
  3613. }
  3614. },
  3615. "305bdac221a840a1bf72d7fcfd1b9bd6": {
  3616. "model_module": "bqplot",
  3617. "model_module_version": "^0.4.1",
  3618. "model_name": "LinearScaleModel",
  3619. "state": {
  3620. "_model_module_version": "^0.4.1",
  3621. "_view_module_version": "^0.4.1",
  3622. "allow_padding": false,
  3623. "max": 1,
  3624. "min": 0,
  3625. "stabilized": false
  3626. }
  3627. },
  3628. "321f812904774f9a8d69f2a94e76c774": {
  3629. "model_module": "bqplot",
  3630. "model_module_version": "^0.4.1",
  3631. "model_name": "LinearScaleModel",
  3632. "state": {
  3633. "_model_module_version": "^0.4.1",
  3634. "_view_module_version": "^0.4.1",
  3635. "allow_padding": false,
  3636. "max": 1,
  3637. "min": 0,
  3638. "stabilized": false
  3639. }
  3640. },
  3641. "3286f5cd7fa7426094f410ab83b3938e": {
  3642. "model_module": "bqplot",
  3643. "model_module_version": "^0.4.1",
  3644. "model_name": "LinearScaleModel",
  3645. "state": {
  3646. "_model_module_version": "^0.4.1",
  3647. "_view_module_version": "^0.4.1",
  3648. "allow_padding": false,
  3649. "max": 1,
  3650. "min": 0,
  3651. "stabilized": false
  3652. }
  3653. },
  3654. "33a4b92c256f422f94387f5f3c85b114": {
  3655. "model_module": "bqplot",
  3656. "model_module_version": "^0.4.1",
  3657. "model_name": "LinearScaleModel",
  3658. "state": {
  3659. "_model_module_version": "^0.4.1",
  3660. "_view_module_version": "^0.4.1",
  3661. "allow_padding": false,
  3662. "max": 1,
  3663. "min": 0,
  3664. "stabilized": false
  3665. }
  3666. },
  3667. "37041841a62a471897deda81138d06c6": {
  3668. "model_module": "bqplot",
  3669. "model_module_version": "^0.4.1",
  3670. "model_name": "FigureModel",
  3671. "state": {
  3672. "_dom_classes": [],
  3673. "_model_module_version": "^0.4.1",
  3674. "_view_module_version": "^0.4.1",
  3675. "layout": "IPY_MODEL_b297f9245c5f4d3da01cbef72820bee4",
  3676. "marks": [
  3677. "IPY_MODEL_3f6ba11dc37d499a98118f8faa8320cd"
  3678. ],
  3679. "scale_x": "IPY_MODEL_a304b439a0194efaa2a7ee4c1c1768a3",
  3680. "scale_y": "IPY_MODEL_830b975f1fd44f23901a28f12df32826"
  3681. }
  3682. },
  3683. "370ce0b99e95418a9f2232fc7ff09450": {
  3684. "model_module": "bqplot",
  3685. "model_module_version": "^0.4.1",
  3686. "model_name": "FigureModel",
  3687. "state": {
  3688. "_dom_classes": [],
  3689. "_model_module_version": "^0.4.1",
  3690. "_view_module_version": "^0.4.1",
  3691. "layout": "IPY_MODEL_2ac0758fc81a40129f188059fe4174f0",
  3692. "marks": [
  3693. "IPY_MODEL_f56384a1c7b84e4eb89674aa1efe99e6"
  3694. ],
  3695. "scale_x": "IPY_MODEL_9523fcd5668e4cf29fec9e4e4ccafc08",
  3696. "scale_y": "IPY_MODEL_24028eb27090499cad3f5aa6f4b09c8c"
  3697. }
  3698. },
  3699. "388c388729024409b15e47426bebd361": {
  3700. "model_module": "@jupyter-widgets/base",
  3701. "model_module_version": "1.1.0",
  3702. "model_name": "LayoutModel",
  3703. "state": {
  3704. "min_width": "125px"
  3705. }
  3706. },
  3707. "3907290c381a4ffb8541f0535c4395ee": {
  3708. "model_module": "bqplot",
  3709. "model_module_version": "^0.4.1",
  3710. "model_name": "GraphModel",
  3711. "state": {
  3712. "_model_module": "bqplot",
  3713. "_model_module_version": "^0.4.1",
  3714. "_view_count": null,
  3715. "_view_module": "bqplot",
  3716. "_view_module_version": "^0.4.1",
  3717. "apply_clip": true,
  3718. "charge": -600,
  3719. "color": {
  3720. "type": null,
  3721. "values": null
  3722. },
  3723. "colors": [
  3724. "#1f77b4",
  3725. "#ff7f0e",
  3726. "#2ca02c",
  3727. "#d62728",
  3728. "#9467bd",
  3729. "#8c564b",
  3730. "#e377c2",
  3731. "#7f7f7f",
  3732. "#bcbd22",
  3733. "#17becf"
  3734. ],
  3735. "directed": true,
  3736. "display_legend": false,
  3737. "enable_hover": true,
  3738. "highlight_links": true,
  3739. "hovered_style": {},
  3740. "interactions": {
  3741. "click": "select",
  3742. "hover": "tooltip"
  3743. },
  3744. "labels": [],
  3745. "link_color": {
  3746. "type": "float",
  3747. "values": []
  3748. },
  3749. "link_data": [
  3750. {
  3751. "source": {
  3752. "fixed": 0,
  3753. "index": 0,
  3754. "label": "Boba Fett",
  3755. "label_display": "center",
  3756. "px": 368.0173617719461,
  3757. "py": 287.54468462360063,
  3758. "shape": "circle",
  3759. "shape_attrs": {
  3760. "r": 15
  3761. },
  3762. "value": null,
  3763. "weight": 6,
  3764. "x": 368.1045878411821,
  3765. "y": 287.6249501109923
  3766. },
  3767. "target": {
  3768. "fixed": 0,
  3769. "index": 1,
  3770. "label": "Yoda",
  3771. "label_display": "center",
  3772. "px": 314.43570072046424,
  3773. "py": 241.11570202358362,
  3774. "shape": "circle",
  3775. "shape_attrs": {
  3776. "r": 15
  3777. },
  3778. "value": null,
  3779. "weight": 6,
  3780. "x": 314.4282499746672,
  3781. "y": 241.11626940404904
  3782. },
  3783. "value": 3
  3784. },
  3785. {
  3786. "source": {
  3787. "fixed": 0,
  3788. "index": 0,
  3789. "label": "Boba Fett",
  3790. "label_display": "center",
  3791. "px": 368.0173617719461,
  3792. "py": 287.54468462360063,
  3793. "shape": "circle",
  3794. "shape_attrs": {
  3795. "r": 15
  3796. },
  3797. "value": null,
  3798. "weight": 6,
  3799. "x": 368.1045878411821,
  3800. "y": 287.6249501109923
  3801. },
  3802. "target": {
  3803. "fixed": 0,
  3804. "index": 2,
  3805. "label": "Jabba Desilijic Tiure",
  3806. "label_display": "center",
  3807. "px": 341.32379051815803,
  3808. "py": 174.36905899363762,
  3809. "shape": "circle",
  3810. "shape_attrs": {
  3811. "r": 15
  3812. },
  3813. "value": null,
  3814. "weight": 6,
  3815. "x": 341.3626007094885,
  3816. "y": 174.2514100204191
  3817. },
  3818. "value": 1
  3819. },
  3820. {
  3821. "source": {
  3822. "fixed": 0,
  3823. "index": 0,
  3824. "label": "Boba Fett",
  3825. "label_display": "center",
  3826. "px": 368.0173617719461,
  3827. "py": 287.54468462360063,
  3828. "shape": "circle",
  3829. "shape_attrs": {
  3830. "r": 15
  3831. },
  3832. "value": null,
  3833. "weight": 6,
  3834. "x": 368.1045878411821,
  3835. "y": 287.6249501109923
  3836. },
  3837. "target": {
  3838. "fixed": 0,
  3839. "index": 3,
  3840. "label": "Darth Vader",
  3841. "label_display": "center",
  3842. "px": 272.42530431017616,
  3843. "py": 186.80370403839026,
  3844. "shape": "circle",
  3845. "shape_attrs": {
  3846. "r": 15
  3847. },
  3848. "value": null,
  3849. "weight": 6,
  3850. "x": 272.338920437008,
  3851. "y": 186.71042446091946
  3852. },
  3853. "value": 2
  3854. },
  3855. {
  3856. "source": {
  3857. "fixed": 0,
  3858. "index": 0,
  3859. "label": "Boba Fett",
  3860. "label_display": "center",
  3861. "px": 368.0173617719461,
  3862. "py": 287.54468462360063,
  3863. "shape": "circle",
  3864. "shape_attrs": {
  3865. "r": 15
  3866. },
  3867. "value": null,
  3868. "weight": 6,
  3869. "x": 368.1045878411821,
  3870. "y": 287.6249501109923
  3871. },
  3872. "target": {
  3873. "fixed": 0,
  3874. "index": 4,
  3875. "label": "Obi-Wan Kenobi",
  3876. "label_display": "center",
  3877. "px": 300.04314014727055,
  3878. "py": 308.02777479549343,
  3879. "shape": "circle",
  3880. "shape_attrs": {
  3881. "r": 15
  3882. },
  3883. "value": null,
  3884. "weight": 6,
  3885. "x": 300.005741530927,
  3886. "y": 308.1515454355964
  3887. },
  3888. "value": 3
  3889. },
  3890. {
  3891. "source": {
  3892. "fixed": 0,
  3893. "index": 0,
  3894. "label": "Boba Fett",
  3895. "label_display": "center",
  3896. "px": 368.0173617719461,
  3897. "py": 287.54468462360063,
  3898. "shape": "circle",
  3899. "shape_attrs": {
  3900. "r": 15
  3901. },
  3902. "value": null,
  3903. "weight": 6,
  3904. "x": 368.1045878411821,
  3905. "y": 287.6249501109923
  3906. },
  3907. "target": {
  3908. "index": 5,
  3909. "label": "Beru Whitesun lars",
  3910. "label_display": "center",
  3911. "px": 404.981259297056,
  3912. "py": 219.65013460526086,
  3913. "shape": "circle",
  3914. "shape_attrs": {
  3915. "r": 15
  3916. },
  3917. "value": null,
  3918. "weight": 5,
  3919. "x": 405.10236704175554,
  3920. "y": 219.6210392162826
  3921. },
  3922. "value": 1
  3923. },
  3924. {
  3925. "source": {
  3926. "fixed": 0,
  3927. "index": 0,
  3928. "label": "Boba Fett",
  3929. "label_display": "center",
  3930. "px": 368.0173617719461,
  3931. "py": 287.54468462360063,
  3932. "shape": "circle",
  3933. "shape_attrs": {
  3934. "r": 15
  3935. },
  3936. "value": null,
  3937. "weight": 6,
  3938. "x": 368.1045878411821,
  3939. "y": 287.6249501109923
  3940. },
  3941. "target": {
  3942. "fixed": 0,
  3943. "index": 6,
  3944. "label": "Mon Mothma",
  3945. "label_display": "center",
  3946. "px": 232.54980727428972,
  3947. "py": 259.04494459434966,
  3948. "shape": "circle",
  3949. "shape_attrs": {
  3950. "r": 15
  3951. },
  3952. "value": null,
  3953. "weight": 5,
  3954. "x": 232.42419257867925,
  3955. "y": 259.07163482045314
  3956. },
  3957. "value": 1
  3958. },
  3959. {
  3960. "source": {
  3961. "fixed": 0,
  3962. "index": 1,
  3963. "label": "Yoda",
  3964. "label_display": "center",
  3965. "px": 314.43570072046424,
  3966. "py": 241.11570202358362,
  3967. "shape": "circle",
  3968. "shape_attrs": {
  3969. "r": 15
  3970. },
  3971. "value": null,
  3972. "weight": 6,
  3973. "x": 314.4282499746672,
  3974. "y": 241.11626940404904
  3975. },
  3976. "target": {
  3977. "fixed": 0,
  3978. "index": 2,
  3979. "label": "Jabba Desilijic Tiure",
  3980. "label_display": "center",
  3981. "px": 341.32379051815803,
  3982. "py": 174.36905899363762,
  3983. "shape": "circle",
  3984. "shape_attrs": {
  3985. "r": 15
  3986. },
  3987. "value": null,
  3988. "weight": 6,
  3989. "x": 341.3626007094885,
  3990. "y": 174.2514100204191
  3991. },
  3992. "value": 2
  3993. },
  3994. {
  3995. "source": {
  3996. "fixed": 0,
  3997. "index": 1,
  3998. "label": "Yoda",
  3999. "label_display": "center",
  4000. "px": 314.43570072046424,
  4001. "py": 241.11570202358362,
  4002. "shape": "circle",
  4003. "shape_attrs": {
  4004. "r": 15
  4005. },
  4006. "value": null,
  4007. "weight": 6,
  4008. "x": 314.4282499746672,
  4009. "y": 241.11626940404904
  4010. },
  4011. "target": {
  4012. "fixed": 0,
  4013. "index": 3,
  4014. "label": "Darth Vader",
  4015. "label_display": "center",
  4016. "px": 272.42530431017616,
  4017. "py": 186.80370403839026,
  4018. "shape": "circle",
  4019. "shape_attrs": {
  4020. "r": 15
  4021. },
  4022. "value": null,
  4023. "weight": 6,
  4024. "x": 272.338920437008,
  4025. "y": 186.71042446091946
  4026. },
  4027. "value": 3
  4028. },
  4029. {
  4030. "source": {
  4031. "fixed": 0,
  4032. "index": 1,
  4033. "label": "Yoda",
  4034. "label_display": "center",
  4035. "px": 314.43570072046424,
  4036. "py": 241.11570202358362,
  4037. "shape": "circle",
  4038. "shape_attrs": {
  4039. "r": 15
  4040. },
  4041. "value": null,
  4042. "weight": 6,
  4043. "x": 314.4282499746672,
  4044. "y": 241.11626940404904
  4045. },
  4046. "target": {
  4047. "fixed": 0,
  4048. "index": 4,
  4049. "label": "Obi-Wan Kenobi",
  4050. "label_display": "center",
  4051. "px": 300.04314014727055,
  4052. "py": 308.02777479549343,
  4053. "shape": "circle",
  4054. "shape_attrs": {
  4055. "r": 15
  4056. },
  4057. "value": null,
  4058. "weight": 6,
  4059. "x": 300.005741530927,
  4060. "y": 308.1515454355964
  4061. },
  4062. "value": 5
  4063. },
  4064. {
  4065. "source": {
  4066. "fixed": 0,
  4067. "index": 1,
  4068. "label": "Yoda",
  4069. "label_display": "center",
  4070. "px": 314.43570072046424,
  4071. "py": 241.11570202358362,
  4072. "shape": "circle",
  4073. "shape_attrs": {
  4074. "r": 15
  4075. },
  4076. "value": null,
  4077. "weight": 6,
  4078. "x": 314.4282499746672,
  4079. "y": 241.11626940404904
  4080. },
  4081. "target": {
  4082. "index": 5,
  4083. "label": "Beru Whitesun lars",
  4084. "label_display": "center",
  4085. "px": 404.981259297056,
  4086. "py": 219.65013460526086,
  4087. "shape": "circle",
  4088. "shape_attrs": {
  4089. "r": 15
  4090. },
  4091. "value": null,
  4092. "weight": 5,
  4093. "x": 405.10236704175554,
  4094. "y": 219.6210392162826
  4095. },
  4096. "value": 2
  4097. },
  4098. {
  4099. "source": {
  4100. "fixed": 0,
  4101. "index": 1,
  4102. "label": "Yoda",
  4103. "label_display": "center",
  4104. "px": 314.43570072046424,
  4105. "py": 241.11570202358362,
  4106. "shape": "circle",
  4107. "shape_attrs": {
  4108. "r": 15
  4109. },
  4110. "value": null,
  4111. "weight": 6,
  4112. "x": 314.4282499746672,
  4113. "y": 241.11626940404904
  4114. },
  4115. "target": {
  4116. "fixed": 0,
  4117. "index": 6,
  4118. "label": "Mon Mothma",
  4119. "label_display": "center",
  4120. "px": 232.54980727428972,
  4121. "py": 259.04494459434966,
  4122. "shape": "circle",
  4123. "shape_attrs": {
  4124. "r": 15
  4125. },
  4126. "value": null,
  4127. "weight": 5,
  4128. "x": 232.42419257867925,
  4129. "y": 259.07163482045314
  4130. },
  4131. "value": 1
  4132. },
  4133. {
  4134. "source": {
  4135. "fixed": 0,
  4136. "index": 2,
  4137. "label": "Jabba Desilijic Tiure",
  4138. "label_display": "center",
  4139. "px": 341.32379051815803,
  4140. "py": 174.36905899363762,
  4141. "shape": "circle",
  4142. "shape_attrs": {
  4143. "r": 15
  4144. },
  4145. "value": null,
  4146. "weight": 6,
  4147. "x": 341.3626007094885,
  4148. "y": 174.2514100204191
  4149. },
  4150. "target": {
  4151. "fixed": 0,
  4152. "index": 3,
  4153. "label": "Darth Vader",
  4154. "label_display": "center",
  4155. "px": 272.42530431017616,
  4156. "py": 186.80370403839026,
  4157. "shape": "circle",
  4158. "shape_attrs": {
  4159. "r": 15
  4160. },
  4161. "value": null,
  4162. "weight": 6,
  4163. "x": 272.338920437008,
  4164. "y": 186.71042446091946
  4165. },
  4166. "value": 2
  4167. },
  4168. {
  4169. "source": {
  4170. "fixed": 0,
  4171. "index": 2,
  4172. "label": "Jabba Desilijic Tiure",
  4173. "label_display": "center",
  4174. "px": 341.32379051815803,
  4175. "py": 174.36905899363762,
  4176. "shape": "circle",
  4177. "shape_attrs": {
  4178. "r": 15
  4179. },
  4180. "value": null,
  4181. "weight": 6,
  4182. "x": 341.3626007094885,
  4183. "y": 174.2514100204191
  4184. },
  4185. "target": {
  4186. "fixed": 0,
  4187. "index": 4,
  4188. "label": "Obi-Wan Kenobi",
  4189. "label_display": "center",
  4190. "px": 300.04314014727055,
  4191. "py": 308.02777479549343,
  4192. "shape": "circle",
  4193. "shape_attrs": {
  4194. "r": 15
  4195. },
  4196. "value": null,
  4197. "weight": 6,
  4198. "x": 300.005741530927,
  4199. "y": 308.1515454355964
  4200. },
  4201. "value": 3
  4202. },
  4203. {
  4204. "source": {
  4205. "fixed": 0,
  4206. "index": 2,
  4207. "label": "Jabba Desilijic Tiure",
  4208. "label_display": "center",
  4209. "px": 341.32379051815803,
  4210. "py": 174.36905899363762,
  4211. "shape": "circle",
  4212. "shape_attrs": {
  4213. "r": 15
  4214. },
  4215. "value": null,
  4216. "weight": 6,
  4217. "x": 341.3626007094885,
  4218. "y": 174.2514100204191
  4219. },
  4220. "target": {
  4221. "index": 5,
  4222. "label": "Beru Whitesun lars",
  4223. "label_display": "center",
  4224. "px": 404.981259297056,
  4225. "py": 219.65013460526086,
  4226. "shape": "circle",
  4227. "shape_attrs": {
  4228. "r": 15
  4229. },
  4230. "value": null,
  4231. "weight": 5,
  4232. "x": 405.10236704175554,
  4233. "y": 219.6210392162826
  4234. },
  4235. "value": 1
  4236. },
  4237. {
  4238. "source": {
  4239. "fixed": 0,
  4240. "index": 2,
  4241. "label": "Jabba Desilijic Tiure",
  4242. "label_display": "center",
  4243. "px": 341.32379051815803,
  4244. "py": 174.36905899363762,
  4245. "shape": "circle",
  4246. "shape_attrs": {
  4247. "r": 15
  4248. },
  4249. "value": null,
  4250. "weight": 6,
  4251. "x": 341.3626007094885,
  4252. "y": 174.2514100204191
  4253. },
  4254. "target": {
  4255. "fixed": 0,
  4256. "index": 6,
  4257. "label": "Mon Mothma",
  4258. "label_display": "center",
  4259. "px": 232.54980727428972,
  4260. "py": 259.04494459434966,
  4261. "shape": "circle",
  4262. "shape_attrs": {
  4263. "r": 15
  4264. },
  4265. "value": null,
  4266. "weight": 5,
  4267. "x": 232.42419257867925,
  4268. "y": 259.07163482045314
  4269. },
  4270. "value": 1
  4271. },
  4272. {
  4273. "source": {
  4274. "fixed": 0,
  4275. "index": 3,
  4276. "label": "Darth Vader",
  4277. "label_display": "center",
  4278. "px": 272.42530431017616,
  4279. "py": 186.80370403839026,
  4280. "shape": "circle",
  4281. "shape_attrs": {
  4282. "r": 15
  4283. },
  4284. "value": null,
  4285. "weight": 6,
  4286. "x": 272.338920437008,
  4287. "y": 186.71042446091946
  4288. },
  4289. "target": {
  4290. "fixed": 0,
  4291. "index": 4,
  4292. "label": "Obi-Wan Kenobi",
  4293. "label_display": "center",
  4294. "px": 300.04314014727055,
  4295. "py": 308.02777479549343,
  4296. "shape": "circle",
  4297. "shape_attrs": {
  4298. "r": 15
  4299. },
  4300. "value": null,
  4301. "weight": 6,
  4302. "x": 300.005741530927,
  4303. "y": 308.1515454355964
  4304. },
  4305. "value": 4
  4306. },
  4307. {
  4308. "source": {
  4309. "fixed": 0,
  4310. "index": 3,
  4311. "label": "Darth Vader",
  4312. "label_display": "center",
  4313. "px": 272.42530431017616,
  4314. "py": 186.80370403839026,
  4315. "shape": "circle",
  4316. "shape_attrs": {
  4317. "r": 15
  4318. },
  4319. "value": null,
  4320. "weight": 6,
  4321. "x": 272.338920437008,
  4322. "y": 186.71042446091946
  4323. },
  4324. "target": {
  4325. "index": 5,
  4326. "label": "Beru Whitesun lars",
  4327. "label_display": "center",
  4328. "px": 404.981259297056,
  4329. "py": 219.65013460526086,
  4330. "shape": "circle",
  4331. "shape_attrs": {
  4332. "r": 15
  4333. },
  4334. "value": null,
  4335. "weight": 5,
  4336. "x": 405.10236704175554,
  4337. "y": 219.6210392162826
  4338. },
  4339. "value": 2
  4340. },
  4341. {
  4342. "source": {
  4343. "fixed": 0,
  4344. "index": 3,
  4345. "label": "Darth Vader",
  4346. "label_display": "center",
  4347. "px": 272.42530431017616,
  4348. "py": 186.80370403839026,
  4349. "shape": "circle",
  4350. "shape_attrs": {
  4351. "r": 15
  4352. },
  4353. "value": null,
  4354. "weight": 6,
  4355. "x": 272.338920437008,
  4356. "y": 186.71042446091946
  4357. },
  4358. "target": {
  4359. "fixed": 0,
  4360. "index": 6,
  4361. "label": "Mon Mothma",
  4362. "label_display": "center",
  4363. "px": 232.54980727428972,
  4364. "py": 259.04494459434966,
  4365. "shape": "circle",
  4366. "shape_attrs": {
  4367. "r": 15
  4368. },
  4369. "value": null,
  4370. "weight": 5,
  4371. "x": 232.42419257867925,
  4372. "y": 259.07163482045314
  4373. },
  4374. "value": 1
  4375. },
  4376. {
  4377. "source": {
  4378. "fixed": 0,
  4379. "index": 4,
  4380. "label": "Obi-Wan Kenobi",
  4381. "label_display": "center",
  4382. "px": 300.04314014727055,
  4383. "py": 308.02777479549343,
  4384. "shape": "circle",
  4385. "shape_attrs": {
  4386. "r": 15
  4387. },
  4388. "value": null,
  4389. "weight": 6,
  4390. "x": 300.005741530927,
  4391. "y": 308.1515454355964
  4392. },
  4393. "target": {
  4394. "index": 5,
  4395. "label": "Beru Whitesun lars",
  4396. "label_display": "center",
  4397. "px": 404.981259297056,
  4398. "py": 219.65013460526086,
  4399. "shape": "circle",
  4400. "shape_attrs": {
  4401. "r": 15
  4402. },
  4403. "value": null,
  4404. "weight": 5,
  4405. "x": 405.10236704175554,
  4406. "y": 219.6210392162826
  4407. },
  4408. "value": 3
  4409. },
  4410. {
  4411. "source": {
  4412. "fixed": 0,
  4413. "index": 4,
  4414. "label": "Obi-Wan Kenobi",
  4415. "label_display": "center",
  4416. "px": 300.04314014727055,
  4417. "py": 308.02777479549343,
  4418. "shape": "circle",
  4419. "shape_attrs": {
  4420. "r": 15
  4421. },
  4422. "value": null,
  4423. "weight": 6,
  4424. "x": 300.005741530927,
  4425. "y": 308.1515454355964
  4426. },
  4427. "target": {
  4428. "fixed": 0,
  4429. "index": 6,
  4430. "label": "Mon Mothma",
  4431. "label_display": "center",
  4432. "px": 232.54980727428972,
  4433. "py": 259.04494459434966,
  4434. "shape": "circle",
  4435. "shape_attrs": {
  4436. "r": 15
  4437. },
  4438. "value": null,
  4439. "weight": 5,
  4440. "x": 232.42419257867925,
  4441. "y": 259.07163482045314
  4442. },
  4443. "value": 1
  4444. }
  4445. ],
  4446. "link_distance": 100,
  4447. "link_matrix": {
  4448. "type": "float",
  4449. "values": []
  4450. },
  4451. "link_type": "arc",
  4452. "node_data": [
  4453. "Boba Fett",
  4454. "Yoda",
  4455. "Jabba Desilijic Tiure",
  4456. "Darth Vader",
  4457. "Obi-Wan Kenobi",
  4458. "Beru Whitesun lars",
  4459. "Mon Mothma"
  4460. ],
  4461. "preserve_domain": {},
  4462. "scales": {},
  4463. "scales_metadata": {
  4464. "color": {
  4465. "dimension": "color"
  4466. },
  4467. "link_color": {
  4468. "dimension": "link_color"
  4469. },
  4470. "x": {
  4471. "dimension": "x",
  4472. "orientation": "horizontal"
  4473. },
  4474. "y": {
  4475. "dimension": "y",
  4476. "orientation": "vertical"
  4477. }
  4478. },
  4479. "selected": [
  4480. 3
  4481. ],
  4482. "selected_style": {},
  4483. "tooltip": "IPY_MODEL_a47ce31f4f4f4d42b6b76c2d85b6044f",
  4484. "tooltip_location": "mouse",
  4485. "tooltip_style": {
  4486. "opacity": 0.9
  4487. },
  4488. "unhovered_style": {},
  4489. "unselected_style": {},
  4490. "visible": true,
  4491. "x": {
  4492. "type": "float",
  4493. "values": []
  4494. },
  4495. "y": {
  4496. "type": "float",
  4497. "values": []
  4498. }
  4499. }
  4500. },
  4501. "39eeb4e07ed3484f8c5ebf4b4aaa7ab8": {
  4502. "model_module": "@jupyter-widgets/base",
  4503. "model_module_version": "1.1.0",
  4504. "model_name": "LayoutModel",
  4505. "state": {}
  4506. },
  4507. "3d78c68a5ce3493fa06a4a780779c92b": {
  4508. "model_module": "@jupyter-widgets/base",
  4509. "model_module_version": "1.1.0",
  4510. "model_name": "LayoutModel",
  4511. "state": {}
  4512. },
  4513. "3e0440e7497f49e0bbda9feeac7fb920": {
  4514. "model_module": "bqplot",
  4515. "model_module_version": "^0.4.1",
  4516. "model_name": "GraphModel",
  4517. "state": {
  4518. "_model_module": "bqplot",
  4519. "_model_module_version": "^0.4.1",
  4520. "_view_count": null,
  4521. "_view_module": "bqplot",
  4522. "_view_module_version": "^0.4.1",
  4523. "apply_clip": true,
  4524. "charge": -600,
  4525. "color": {
  4526. "type": null,
  4527. "values": null
  4528. },
  4529. "colors": [
  4530. "#1f77b4",
  4531. "#ff7f0e",
  4532. "#2ca02c",
  4533. "#d62728",
  4534. "#9467bd",
  4535. "#8c564b",
  4536. "#e377c2",
  4537. "#7f7f7f",
  4538. "#bcbd22",
  4539. "#17becf"
  4540. ],
  4541. "directed": true,
  4542. "display_legend": false,
  4543. "enable_hover": true,
  4544. "highlight_links": true,
  4545. "hovered_style": {},
  4546. "interactions": {
  4547. "click": "select",
  4548. "hover": "tooltip"
  4549. },
  4550. "labels": [],
  4551. "link_color": {
  4552. "type": "float",
  4553. "values": []
  4554. },
  4555. "link_data": [
  4556. {
  4557. "source": {
  4558. "fixed": 0,
  4559. "index": 0,
  4560. "label": "Boba Fett",
  4561. "label_display": "center",
  4562. "px": 385.4597231777448,
  4563. "py": 212.17860325660521,
  4564. "shape": "circle",
  4565. "shape_attrs": {
  4566. "r": 15
  4567. },
  4568. "value": null,
  4569. "weight": 6,
  4570. "x": 385.5770604884096,
  4571. "y": 212.12468207660694
  4572. },
  4573. "target": {
  4574. "fixed": 0,
  4575. "index": 1,
  4576. "label": "Yoda",
  4577. "label_display": "center",
  4578. "px": 258.14532503380707,
  4579. "py": 269.95363664156224,
  4580. "shape": "circle",
  4581. "shape_attrs": {
  4582. "r": 15
  4583. },
  4584. "value": null,
  4585. "weight": 6,
  4586. "x": 258.0341765960323,
  4587. "y": 270.006856712423
  4588. },
  4589. "value": 3
  4590. },
  4591. {
  4592. "source": {
  4593. "fixed": 0,
  4594. "index": 0,
  4595. "label": "Boba Fett",
  4596. "label_display": "center",
  4597. "px": 385.4597231777448,
  4598. "py": 212.17860325660521,
  4599. "shape": "circle",
  4600. "shape_attrs": {
  4601. "r": 15
  4602. },
  4603. "value": null,
  4604. "weight": 6,
  4605. "x": 385.5770604884096,
  4606. "y": 212.12468207660694
  4607. },
  4608. "target": {
  4609. "fixed": 0,
  4610. "index": 2,
  4611. "label": "Jabba Desilijic Tiure",
  4612. "label_display": "center",
  4613. "px": 260.4955970041657,
  4614. "py": 199.93242810718192,
  4615. "shape": "circle",
  4616. "shape_attrs": {
  4617. "r": 15
  4618. },
  4619. "value": null,
  4620. "weight": 6,
  4621. "x": 260.4955970041657,
  4622. "y": 199.93242810718192
  4623. },
  4624. "value": 1
  4625. },
  4626. {
  4627. "source": {
  4628. "fixed": 0,
  4629. "index": 0,
  4630. "label": "Boba Fett",
  4631. "label_display": "center",
  4632. "px": 385.4597231777448,
  4633. "py": 212.17860325660521,
  4634. "shape": "circle",
  4635. "shape_attrs": {
  4636. "r": 15
  4637. },
  4638. "value": null,
  4639. "weight": 6,
  4640. "x": 385.5770604884096,
  4641. "y": 212.12468207660694
  4642. },
  4643. "target": {
  4644. "fixed": 0,
  4645. "index": 3,
  4646. "label": "Darth Vader",
  4647. "label_display": "center",
  4648. "px": 320.3960782856451,
  4649. "py": 232.6173139019875,
  4650. "shape": "circle",
  4651. "shape_attrs": {
  4652. "r": 15
  4653. },
  4654. "value": null,
  4655. "weight": 6,
  4656. "x": 320.3969978822114,
  4657. "y": 232.61412889502265
  4658. },
  4659. "value": 2
  4660. },
  4661. {
  4662. "source": {
  4663. "fixed": 0,
  4664. "index": 0,
  4665. "label": "Boba Fett",
  4666. "label_display": "center",
  4667. "px": 385.4597231777448,
  4668. "py": 212.17860325660521,
  4669. "shape": "circle",
  4670. "shape_attrs": {
  4671. "r": 15
  4672. },
  4673. "value": null,
  4674. "weight": 6,
  4675. "x": 385.5770604884096,
  4676. "y": 212.12468207660694
  4677. },
  4678. "target": {
  4679. "fixed": 0,
  4680. "index": 4,
  4681. "label": "Obi-Wan Kenobi",
  4682. "label_display": "center",
  4683. "px": 372.7482525040577,
  4684. "py": 281.731573473287,
  4685. "shape": "circle",
  4686. "shape_attrs": {
  4687. "r": 15
  4688. },
  4689. "value": null,
  4690. "weight": 6,
  4691. "x": 372.84066998678117,
  4692. "y": 281.8074237683878
  4693. },
  4694. "value": 3
  4695. },
  4696. {
  4697. "source": {
  4698. "fixed": 0,
  4699. "index": 0,
  4700. "label": "Boba Fett",
  4701. "label_display": "center",
  4702. "px": 385.4597231777448,
  4703. "py": 212.17860325660521,
  4704. "shape": "circle",
  4705. "shape_attrs": {
  4706. "r": 15
  4707. },
  4708. "value": null,
  4709. "weight": 6,
  4710. "x": 385.5770604884096,
  4711. "y": 212.12468207660694
  4712. },
  4713. "target": {
  4714. "fixed": 0,
  4715. "index": 5,
  4716. "label": "Beru Whitesun lars",
  4717. "label_display": "center",
  4718. "px": 327.92363220934436,
  4719. "py": 150.75356198450808,
  4720. "shape": "circle",
  4721. "shape_attrs": {
  4722. "r": 15
  4723. },
  4724. "value": null,
  4725. "weight": 5,
  4726. "x": 327.93326906837837,
  4727. "y": 150.6256161415704
  4728. },
  4729. "value": 1
  4730. },
  4731. {
  4732. "source": {
  4733. "fixed": 0,
  4734. "index": 0,
  4735. "label": "Boba Fett",
  4736. "label_display": "center",
  4737. "px": 385.4597231777448,
  4738. "py": 212.17860325660521,
  4739. "shape": "circle",
  4740. "shape_attrs": {
  4741. "r": 15
  4742. },
  4743. "value": null,
  4744. "weight": 6,
  4745. "x": 385.5770604884096,
  4746. "y": 212.12468207660694
  4747. },
  4748. "target": {
  4749. "fixed": 0,
  4750. "index": 6,
  4751. "label": "Mon Mothma",
  4752. "label_display": "center",
  4753. "px": 310.66264837578063,
  4754. "py": 326.9407559218271,
  4755. "shape": "circle",
  4756. "shape_attrs": {
  4757. "r": 15
  4758. },
  4759. "value": null,
  4760. "weight": 5,
  4761. "x": 310.6504262890668,
  4762. "y": 327.0646436307964
  4763. },
  4764. "value": 1
  4765. },
  4766. {
  4767. "source": {
  4768. "fixed": 0,
  4769. "index": 1,
  4770. "label": "Yoda",
  4771. "label_display": "center",
  4772. "px": 258.14532503380707,
  4773. "py": 269.95363664156224,
  4774. "shape": "circle",
  4775. "shape_attrs": {
  4776. "r": 15
  4777. },
  4778. "value": null,
  4779. "weight": 6,
  4780. "x": 258.0341765960323,
  4781. "y": 270.006856712423
  4782. },
  4783. "target": {
  4784. "fixed": 0,
  4785. "index": 2,
  4786. "label": "Jabba Desilijic Tiure",
  4787. "label_display": "center",
  4788. "px": 260.4955970041657,
  4789. "py": 199.93242810718192,
  4790. "shape": "circle",
  4791. "shape_attrs": {
  4792. "r": 15
  4793. },
  4794. "value": null,
  4795. "weight": 6,
  4796. "x": 260.4955970041657,
  4797. "y": 199.93242810718192
  4798. },
  4799. "value": 2
  4800. },
  4801. {
  4802. "source": {
  4803. "fixed": 0,
  4804. "index": 1,
  4805. "label": "Yoda",
  4806. "label_display": "center",
  4807. "px": 258.14532503380707,
  4808. "py": 269.95363664156224,
  4809. "shape": "circle",
  4810. "shape_attrs": {
  4811. "r": 15
  4812. },
  4813. "value": null,
  4814. "weight": 6,
  4815. "x": 258.0341765960323,
  4816. "y": 270.006856712423
  4817. },
  4818. "target": {
  4819. "fixed": 0,
  4820. "index": 3,
  4821. "label": "Darth Vader",
  4822. "label_display": "center",
  4823. "px": 320.3960782856451,
  4824. "py": 232.6173139019875,
  4825. "shape": "circle",
  4826. "shape_attrs": {
  4827. "r": 15
  4828. },
  4829. "value": null,
  4830. "weight": 6,
  4831. "x": 320.3969978822114,
  4832. "y": 232.61412889502265
  4833. },
  4834. "value": 3
  4835. },
  4836. {
  4837. "source": {
  4838. "fixed": 0,
  4839. "index": 1,
  4840. "label": "Yoda",
  4841. "label_display": "center",
  4842. "px": 258.14532503380707,
  4843. "py": 269.95363664156224,
  4844. "shape": "circle",
  4845. "shape_attrs": {
  4846. "r": 15
  4847. },
  4848. "value": null,
  4849. "weight": 6,
  4850. "x": 258.0341765960323,
  4851. "y": 270.006856712423
  4852. },
  4853. "target": {
  4854. "fixed": 0,
  4855. "index": 4,
  4856. "label": "Obi-Wan Kenobi",
  4857. "label_display": "center",
  4858. "px": 372.7482525040577,
  4859. "py": 281.731573473287,
  4860. "shape": "circle",
  4861. "shape_attrs": {
  4862. "r": 15
  4863. },
  4864. "value": null,
  4865. "weight": 6,
  4866. "x": 372.84066998678117,
  4867. "y": 281.8074237683878
  4868. },
  4869. "value": 5
  4870. },
  4871. {
  4872. "source": {
  4873. "fixed": 0,
  4874. "index": 1,
  4875. "label": "Yoda",
  4876. "label_display": "center",
  4877. "px": 258.14532503380707,
  4878. "py": 269.95363664156224,
  4879. "shape": "circle",
  4880. "shape_attrs": {
  4881. "r": 15
  4882. },
  4883. "value": null,
  4884. "weight": 6,
  4885. "x": 258.0341765960323,
  4886. "y": 270.006856712423
  4887. },
  4888. "target": {
  4889. "fixed": 0,
  4890. "index": 5,
  4891. "label": "Beru Whitesun lars",
  4892. "label_display": "center",
  4893. "px": 327.92363220934436,
  4894. "py": 150.75356198450808,
  4895. "shape": "circle",
  4896. "shape_attrs": {
  4897. "r": 15
  4898. },
  4899. "value": null,
  4900. "weight": 5,
  4901. "x": 327.93326906837837,
  4902. "y": 150.6256161415704
  4903. },
  4904. "value": 2
  4905. },
  4906. {
  4907. "source": {
  4908. "fixed": 0,
  4909. "index": 1,
  4910. "label": "Yoda",
  4911. "label_display": "center",
  4912. "px": 258.14532503380707,
  4913. "py": 269.95363664156224,
  4914. "shape": "circle",
  4915. "shape_attrs": {
  4916. "r": 15
  4917. },
  4918. "value": null,
  4919. "weight": 6,
  4920. "x": 258.0341765960323,
  4921. "y": 270.006856712423
  4922. },
  4923. "target": {
  4924. "fixed": 0,
  4925. "index": 6,
  4926. "label": "Mon Mothma",
  4927. "label_display": "center",
  4928. "px": 310.66264837578063,
  4929. "py": 326.9407559218271,
  4930. "shape": "circle",
  4931. "shape_attrs": {
  4932. "r": 15
  4933. },
  4934. "value": null,
  4935. "weight": 5,
  4936. "x": 310.6504262890668,
  4937. "y": 327.0646436307964
  4938. },
  4939. "value": 1
  4940. },
  4941. {
  4942. "source": {
  4943. "fixed": 0,
  4944. "index": 2,
  4945. "label": "Jabba Desilijic Tiure",
  4946. "label_display": "center",
  4947. "px": 260.4955970041657,
  4948. "py": 199.93242810718192,
  4949. "shape": "circle",
  4950. "shape_attrs": {
  4951. "r": 15
  4952. },
  4953. "value": null,
  4954. "weight": 6,
  4955. "x": 260.4955970041657,
  4956. "y": 199.93242810718192
  4957. },
  4958. "target": {
  4959. "fixed": 0,
  4960. "index": 3,
  4961. "label": "Darth Vader",
  4962. "label_display": "center",
  4963. "px": 320.3960782856451,
  4964. "py": 232.6173139019875,
  4965. "shape": "circle",
  4966. "shape_attrs": {
  4967. "r": 15
  4968. },
  4969. "value": null,
  4970. "weight": 6,
  4971. "x": 320.3969978822114,
  4972. "y": 232.61412889502265
  4973. },
  4974. "value": 2
  4975. },
  4976. {
  4977. "source": {
  4978. "fixed": 0,
  4979. "index": 2,
  4980. "label": "Jabba Desilijic Tiure",
  4981. "label_display": "center",
  4982. "px": 260.4955970041657,
  4983. "py": 199.93242810718192,
  4984. "shape": "circle",
  4985. "shape_attrs": {
  4986. "r": 15
  4987. },
  4988. "value": null,
  4989. "weight": 6,
  4990. "x": 260.4955970041657,
  4991. "y": 199.93242810718192
  4992. },
  4993. "target": {
  4994. "fixed": 0,
  4995. "index": 4,
  4996. "label": "Obi-Wan Kenobi",
  4997. "label_display": "center",
  4998. "px": 372.7482525040577,
  4999. "py": 281.731573473287,
  5000. "shape": "circle",
  5001. "shape_attrs": {
  5002. "r": 15
  5003. },
  5004. "value": null,
  5005. "weight": 6,
  5006. "x": 372.84066998678117,
  5007. "y": 281.8074237683878
  5008. },
  5009. "value": 3
  5010. },
  5011. {
  5012. "source": {
  5013. "fixed": 0,
  5014. "index": 2,
  5015. "label": "Jabba Desilijic Tiure",
  5016. "label_display": "center",
  5017. "px": 260.4955970041657,
  5018. "py": 199.93242810718192,
  5019. "shape": "circle",
  5020. "shape_attrs": {
  5021. "r": 15
  5022. },
  5023. "value": null,
  5024. "weight": 6,
  5025. "x": 260.4955970041657,
  5026. "y": 199.93242810718192
  5027. },
  5028. "target": {
  5029. "fixed": 0,
  5030. "index": 5,
  5031. "label": "Beru Whitesun lars",
  5032. "label_display": "center",
  5033. "px": 327.92363220934436,
  5034. "py": 150.75356198450808,
  5035. "shape": "circle",
  5036. "shape_attrs": {
  5037. "r": 15
  5038. },
  5039. "value": null,
  5040. "weight": 5,
  5041. "x": 327.93326906837837,
  5042. "y": 150.6256161415704
  5043. },
  5044. "value": 1
  5045. },
  5046. {
  5047. "source": {
  5048. "fixed": 0,
  5049. "index": 2,
  5050. "label": "Jabba Desilijic Tiure",
  5051. "label_display": "center",
  5052. "px": 260.4955970041657,
  5053. "py": 199.93242810718192,
  5054. "shape": "circle",
  5055. "shape_attrs": {
  5056. "r": 15
  5057. },
  5058. "value": null,
  5059. "weight": 6,
  5060. "x": 260.4955970041657,
  5061. "y": 199.93242810718192
  5062. },
  5063. "target": {
  5064. "fixed": 0,
  5065. "index": 6,
  5066. "label": "Mon Mothma",
  5067. "label_display": "center",
  5068. "px": 310.66264837578063,
  5069. "py": 326.9407559218271,
  5070. "shape": "circle",
  5071. "shape_attrs": {
  5072. "r": 15
  5073. },
  5074. "value": null,
  5075. "weight": 5,
  5076. "x": 310.6504262890668,
  5077. "y": 327.0646436307964
  5078. },
  5079. "value": 1
  5080. },
  5081. {
  5082. "source": {
  5083. "fixed": 0,
  5084. "index": 3,
  5085. "label": "Darth Vader",
  5086. "label_display": "center",
  5087. "px": 320.3960782856451,
  5088. "py": 232.6173139019875,
  5089. "shape": "circle",
  5090. "shape_attrs": {
  5091. "r": 15
  5092. },
  5093. "value": null,
  5094. "weight": 6,
  5095. "x": 320.3969978822114,
  5096. "y": 232.61412889502265
  5097. },
  5098. "target": {
  5099. "fixed": 0,
  5100. "index": 4,
  5101. "label": "Obi-Wan Kenobi",
  5102. "label_display": "center",
  5103. "px": 372.7482525040577,
  5104. "py": 281.731573473287,
  5105. "shape": "circle",
  5106. "shape_attrs": {
  5107. "r": 15
  5108. },
  5109. "value": null,
  5110. "weight": 6,
  5111. "x": 372.84066998678117,
  5112. "y": 281.8074237683878
  5113. },
  5114. "value": 4
  5115. },
  5116. {
  5117. "source": {
  5118. "fixed": 0,
  5119. "index": 3,
  5120. "label": "Darth Vader",
  5121. "label_display": "center",
  5122. "px": 320.3960782856451,
  5123. "py": 232.6173139019875,
  5124. "shape": "circle",
  5125. "shape_attrs": {
  5126. "r": 15
  5127. },
  5128. "value": null,
  5129. "weight": 6,
  5130. "x": 320.3969978822114,
  5131. "y": 232.61412889502265
  5132. },
  5133. "target": {
  5134. "fixed": 0,
  5135. "index": 5,
  5136. "label": "Beru Whitesun lars",
  5137. "label_display": "center",
  5138. "px": 327.92363220934436,
  5139. "py": 150.75356198450808,
  5140. "shape": "circle",
  5141. "shape_attrs": {
  5142. "r": 15
  5143. },
  5144. "value": null,
  5145. "weight": 5,
  5146. "x": 327.93326906837837,
  5147. "y": 150.6256161415704
  5148. },
  5149. "value": 2
  5150. },
  5151. {
  5152. "source": {
  5153. "fixed": 0,
  5154. "index": 3,
  5155. "label": "Darth Vader",
  5156. "label_display": "center",
  5157. "px": 320.3960782856451,
  5158. "py": 232.6173139019875,
  5159. "shape": "circle",
  5160. "shape_attrs": {
  5161. "r": 15
  5162. },
  5163. "value": null,
  5164. "weight": 6,
  5165. "x": 320.3969978822114,
  5166. "y": 232.61412889502265
  5167. },
  5168. "target": {
  5169. "fixed": 0,
  5170. "index": 6,
  5171. "label": "Mon Mothma",
  5172. "label_display": "center",
  5173. "px": 310.66264837578063,
  5174. "py": 326.9407559218271,
  5175. "shape": "circle",
  5176. "shape_attrs": {
  5177. "r": 15
  5178. },
  5179. "value": null,
  5180. "weight": 5,
  5181. "x": 310.6504262890668,
  5182. "y": 327.0646436307964
  5183. },
  5184. "value": 1
  5185. },
  5186. {
  5187. "source": {
  5188. "fixed": 0,
  5189. "index": 4,
  5190. "label": "Obi-Wan Kenobi",
  5191. "label_display": "center",
  5192. "px": 372.7482525040577,
  5193. "py": 281.731573473287,
  5194. "shape": "circle",
  5195. "shape_attrs": {
  5196. "r": 15
  5197. },
  5198. "value": null,
  5199. "weight": 6,
  5200. "x": 372.84066998678117,
  5201. "y": 281.8074237683878
  5202. },
  5203. "target": {
  5204. "fixed": 0,
  5205. "index": 5,
  5206. "label": "Beru Whitesun lars",
  5207. "label_display": "center",
  5208. "px": 327.92363220934436,
  5209. "py": 150.75356198450808,
  5210. "shape": "circle",
  5211. "shape_attrs": {
  5212. "r": 15
  5213. },
  5214. "value": null,
  5215. "weight": 5,
  5216. "x": 327.93326906837837,
  5217. "y": 150.6256161415704
  5218. },
  5219. "value": 3
  5220. },
  5221. {
  5222. "source": {
  5223. "fixed": 0,
  5224. "index": 4,
  5225. "label": "Obi-Wan Kenobi",
  5226. "label_display": "center",
  5227. "px": 372.7482525040577,
  5228. "py": 281.731573473287,
  5229. "shape": "circle",
  5230. "shape_attrs": {
  5231. "r": 15
  5232. },
  5233. "value": null,
  5234. "weight": 6,
  5235. "x": 372.84066998678117,
  5236. "y": 281.8074237683878
  5237. },
  5238. "target": {
  5239. "fixed": 0,
  5240. "index": 6,
  5241. "label": "Mon Mothma",
  5242. "label_display": "center",
  5243. "px": 310.66264837578063,
  5244. "py": 326.9407559218271,
  5245. "shape": "circle",
  5246. "shape_attrs": {
  5247. "r": 15
  5248. },
  5249. "value": null,
  5250. "weight": 5,
  5251. "x": 310.6504262890668,
  5252. "y": 327.0646436307964
  5253. },
  5254. "value": 1
  5255. }
  5256. ],
  5257. "link_distance": 100,
  5258. "link_matrix": {
  5259. "type": "float",
  5260. "values": []
  5261. },
  5262. "link_type": "arc",
  5263. "node_data": [
  5264. "Boba Fett",
  5265. "Yoda",
  5266. "Jabba Desilijic Tiure",
  5267. "Darth Vader",
  5268. "Obi-Wan Kenobi",
  5269. "Beru Whitesun lars",
  5270. "Mon Mothma"
  5271. ],
  5272. "preserve_domain": {},
  5273. "scales": {},
  5274. "scales_metadata": {
  5275. "color": {
  5276. "dimension": "color"
  5277. },
  5278. "link_color": {
  5279. "dimension": "link_color"
  5280. },
  5281. "x": {
  5282. "dimension": "x",
  5283. "orientation": "horizontal"
  5284. },
  5285. "y": {
  5286. "dimension": "y",
  5287. "orientation": "vertical"
  5288. }
  5289. },
  5290. "selected": [
  5291. 2
  5292. ],
  5293. "selected_style": {},
  5294. "tooltip": "IPY_MODEL_984ab9e97e4744a9b5102ae849835a40",
  5295. "tooltip_location": "mouse",
  5296. "tooltip_style": {
  5297. "opacity": 0.9
  5298. },
  5299. "unhovered_style": {},
  5300. "unselected_style": {},
  5301. "visible": true,
  5302. "x": {
  5303. "type": "float",
  5304. "values": []
  5305. },
  5306. "y": {
  5307. "type": "float",
  5308. "values": []
  5309. }
  5310. }
  5311. },
  5312. "3ed4d67af74b4f0da38d30c1ec11cd67": {
  5313. "model_module": "bqplot",
  5314. "model_module_version": "^0.4.1",
  5315. "model_name": "LinearScaleModel",
  5316. "state": {
  5317. "_model_module_version": "^0.4.1",
  5318. "_view_module_version": "^0.4.1",
  5319. "allow_padding": false,
  5320. "max": 1,
  5321. "min": 0,
  5322. "stabilized": false
  5323. }
  5324. },
  5325. "3f6ba11dc37d499a98118f8faa8320cd": {
  5326. "model_module": "bqplot",
  5327. "model_module_version": "^0.4.1",
  5328. "model_name": "GraphModel",
  5329. "state": {
  5330. "_model_module": "bqplot",
  5331. "_model_module_version": "^0.4.1",
  5332. "_view_count": null,
  5333. "_view_module": "bqplot",
  5334. "_view_module_version": "^0.4.1",
  5335. "apply_clip": true,
  5336. "charge": -600,
  5337. "color": {
  5338. "type": null,
  5339. "values": null
  5340. },
  5341. "colors": [
  5342. "#1f77b4",
  5343. "#ff7f0e",
  5344. "#2ca02c",
  5345. "#d62728",
  5346. "#9467bd",
  5347. "#8c564b",
  5348. "#e377c2",
  5349. "#7f7f7f",
  5350. "#bcbd22",
  5351. "#17becf"
  5352. ],
  5353. "directed": true,
  5354. "display_legend": false,
  5355. "enable_hover": true,
  5356. "highlight_links": true,
  5357. "hovered_style": {},
  5358. "interactions": {
  5359. "click": "select",
  5360. "hover": "tooltip"
  5361. },
  5362. "labels": [],
  5363. "link_color": {
  5364. "type": "float",
  5365. "values": []
  5366. },
  5367. "link_data": [
  5368. {
  5369. "source": {
  5370. "index": 0,
  5371. "label": "Boba Fett",
  5372. "label_display": "center",
  5373. "px": 387.57918448127435,
  5374. "py": 238.41674833496265,
  5375. "shape": "circle",
  5376. "shape_attrs": {
  5377. "r": 15
  5378. },
  5379. "value": null,
  5380. "weight": 6,
  5381. "x": 387.71398650846163,
  5382. "y": 238.44016170533433
  5383. },
  5384. "target": {
  5385. "index": 1,
  5386. "label": "Yoda",
  5387. "label_display": "center",
  5388. "px": 252.94144722292083,
  5389. "py": 265.79183351443004,
  5390. "shape": "circle",
  5391. "shape_attrs": {
  5392. "r": 15
  5393. },
  5394. "value": null,
  5395. "weight": 6,
  5396. "x": 252.8184796824126,
  5397. "y": 265.8371546858069
  5398. },
  5399. "value": 3
  5400. },
  5401. {
  5402. "source": {
  5403. "index": 0,
  5404. "label": "Boba Fett",
  5405. "label_display": "center",
  5406. "px": 387.57918448127435,
  5407. "py": 238.41674833496265,
  5408. "shape": "circle",
  5409. "shape_attrs": {
  5410. "r": 15
  5411. },
  5412. "value": null,
  5413. "weight": 6,
  5414. "x": 387.71398650846163,
  5415. "y": 238.44016170533433
  5416. },
  5417. "target": {
  5418. "index": 2,
  5419. "label": "Jabba Desilijic Tiure",
  5420. "label_display": "center",
  5421. "px": 360.88046507632896,
  5422. "py": 181.42071800676266,
  5423. "shape": "circle",
  5424. "shape_attrs": {
  5425. "r": 15
  5426. },
  5427. "value": null,
  5428. "weight": 6,
  5429. "x": 360.97286244775887,
  5430. "y": 181.33605554410047
  5431. },
  5432. "value": 1
  5433. },
  5434. {
  5435. "source": {
  5436. "index": 0,
  5437. "label": "Boba Fett",
  5438. "label_display": "center",
  5439. "px": 387.57918448127435,
  5440. "py": 238.41674833496265,
  5441. "shape": "circle",
  5442. "shape_attrs": {
  5443. "r": 15
  5444. },
  5445. "value": null,
  5446. "weight": 6,
  5447. "x": 387.71398650846163,
  5448. "y": 238.44016170533433
  5449. },
  5450. "target": {
  5451. "index": 3,
  5452. "label": "Darth Vader",
  5453. "label_display": "center",
  5454. "px": 255.37452649127783,
  5455. "py": 203.4716276158449,
  5456. "shape": "circle",
  5457. "shape_attrs": {
  5458. "r": 15
  5459. },
  5460. "value": null,
  5461. "weight": 6,
  5462. "x": 255.2740850942802,
  5463. "y": 203.40710861457913
  5464. },
  5465. "value": 2
  5466. },
  5467. {
  5468. "source": {
  5469. "index": 0,
  5470. "label": "Boba Fett",
  5471. "label_display": "center",
  5472. "px": 387.57918448127435,
  5473. "py": 238.41674833496265,
  5474. "shape": "circle",
  5475. "shape_attrs": {
  5476. "r": 15
  5477. },
  5478. "value": null,
  5479. "weight": 6,
  5480. "x": 387.71398650846163,
  5481. "y": 238.44016170533433
  5482. },
  5483. "target": {
  5484. "index": 4,
  5485. "label": "Obi-Wan Kenobi",
  5486. "label_display": "center",
  5487. "px": 302.10863391228025,
  5488. "py": 164.09028430179106,
  5489. "shape": "circle",
  5490. "shape_attrs": {
  5491. "r": 15
  5492. },
  5493. "value": null,
  5494. "weight": 6,
  5495. "x": 302.0981277368569,
  5496. "y": 163.95965637359805
  5497. },
  5498. "value": 3
  5499. },
  5500. {
  5501. "source": {
  5502. "index": 0,
  5503. "label": "Boba Fett",
  5504. "label_display": "center",
  5505. "px": 387.57918448127435,
  5506. "py": 238.41674833496265,
  5507. "shape": "circle",
  5508. "shape_attrs": {
  5509. "r": 15
  5510. },
  5511. "value": null,
  5512. "weight": 6,
  5513. "x": 387.71398650846163,
  5514. "y": 238.44016170533433
  5515. },
  5516. "target": {
  5517. "index": 5,
  5518. "label": "Beru Whitesun lars",
  5519. "label_display": "center",
  5520. "px": 313.9582318057522,
  5521. "py": 292.1527693616418,
  5522. "shape": "circle",
  5523. "shape_attrs": {
  5524. "r": 15
  5525. },
  5526. "value": null,
  5527. "weight": 5,
  5528. "x": 313.8783280014674,
  5529. "y": 292.2710626413109
  5530. },
  5531. "value": 1
  5532. },
  5533. {
  5534. "source": {
  5535. "index": 0,
  5536. "label": "Boba Fett",
  5537. "label_display": "center",
  5538. "px": 387.57918448127435,
  5539. "py": 238.41674833496265,
  5540. "shape": "circle",
  5541. "shape_attrs": {
  5542. "r": 15
  5543. },
  5544. "value": null,
  5545. "weight": 6,
  5546. "x": 387.71398650846163,
  5547. "y": 238.44016170533433
  5548. },
  5549. "target": {
  5550. "index": 6,
  5551. "label": "Mon Mothma",
  5552. "label_display": "center",
  5553. "px": 342.0762857432212,
  5554. "py": 286.1725063850798,
  5555. "shape": "circle",
  5556. "shape_attrs": {
  5557. "r": 15
  5558. },
  5559. "value": null,
  5560. "weight": 5,
  5561. "x": 342.18203084750974,
  5562. "y": 286.2555288096596
  5563. },
  5564. "value": 1
  5565. },
  5566. {
  5567. "source": {
  5568. "index": 1,
  5569. "label": "Yoda",
  5570. "label_display": "center",
  5571. "px": 252.94144722292083,
  5572. "py": 265.79183351443004,
  5573. "shape": "circle",
  5574. "shape_attrs": {
  5575. "r": 15
  5576. },
  5577. "value": null,
  5578. "weight": 6,
  5579. "x": 252.8184796824126,
  5580. "y": 265.8371546858069
  5581. },
  5582. "target": {
  5583. "index": 2,
  5584. "label": "Jabba Desilijic Tiure",
  5585. "label_display": "center",
  5586. "px": 360.88046507632896,
  5587. "py": 181.42071800676266,
  5588. "shape": "circle",
  5589. "shape_attrs": {
  5590. "r": 15
  5591. },
  5592. "value": null,
  5593. "weight": 6,
  5594. "x": 360.97286244775887,
  5595. "y": 181.33605554410047
  5596. },
  5597. "value": 2
  5598. },
  5599. {
  5600. "source": {
  5601. "index": 1,
  5602. "label": "Yoda",
  5603. "label_display": "center",
  5604. "px": 252.94144722292083,
  5605. "py": 265.79183351443004,
  5606. "shape": "circle",
  5607. "shape_attrs": {
  5608. "r": 15
  5609. },
  5610. "value": null,
  5611. "weight": 6,
  5612. "x": 252.8184796824126,
  5613. "y": 265.8371546858069
  5614. },
  5615. "target": {
  5616. "index": 3,
  5617. "label": "Darth Vader",
  5618. "label_display": "center",
  5619. "px": 255.37452649127783,
  5620. "py": 203.4716276158449,
  5621. "shape": "circle",
  5622. "shape_attrs": {
  5623. "r": 15
  5624. },
  5625. "value": null,
  5626. "weight": 6,
  5627. "x": 255.2740850942802,
  5628. "y": 203.40710861457913
  5629. },
  5630. "value": 3
  5631. },
  5632. {
  5633. "source": {
  5634. "index": 1,
  5635. "label": "Yoda",
  5636. "label_display": "center",
  5637. "px": 252.94144722292083,
  5638. "py": 265.79183351443004,
  5639. "shape": "circle",
  5640. "shape_attrs": {
  5641. "r": 15
  5642. },
  5643. "value": null,
  5644. "weight": 6,
  5645. "x": 252.8184796824126,
  5646. "y": 265.8371546858069
  5647. },
  5648. "target": {
  5649. "index": 4,
  5650. "label": "Obi-Wan Kenobi",
  5651. "label_display": "center",
  5652. "px": 302.10863391228025,
  5653. "py": 164.09028430179106,
  5654. "shape": "circle",
  5655. "shape_attrs": {
  5656. "r": 15
  5657. },
  5658. "value": null,
  5659. "weight": 6,
  5660. "x": 302.0981277368569,
  5661. "y": 163.95965637359805
  5662. },
  5663. "value": 5
  5664. },
  5665. {
  5666. "source": {
  5667. "index": 1,
  5668. "label": "Yoda",
  5669. "label_display": "center",
  5670. "px": 252.94144722292083,
  5671. "py": 265.79183351443004,
  5672. "shape": "circle",
  5673. "shape_attrs": {
  5674. "r": 15
  5675. },
  5676. "value": null,
  5677. "weight": 6,
  5678. "x": 252.8184796824126,
  5679. "y": 265.8371546858069
  5680. },
  5681. "target": {
  5682. "index": 5,
  5683. "label": "Beru Whitesun lars",
  5684. "label_display": "center",
  5685. "px": 313.9582318057522,
  5686. "py": 292.1527693616418,
  5687. "shape": "circle",
  5688. "shape_attrs": {
  5689. "r": 15
  5690. },
  5691. "value": null,
  5692. "weight": 5,
  5693. "x": 313.8783280014674,
  5694. "y": 292.2710626413109
  5695. },
  5696. "value": 2
  5697. },
  5698. {
  5699. "source": {
  5700. "index": 1,
  5701. "label": "Yoda",
  5702. "label_display": "center",
  5703. "px": 252.94144722292083,
  5704. "py": 265.79183351443004,
  5705. "shape": "circle",
  5706. "shape_attrs": {
  5707. "r": 15
  5708. },
  5709. "value": null,
  5710. "weight": 6,
  5711. "x": 252.8184796824126,
  5712. "y": 265.8371546858069
  5713. },
  5714. "target": {
  5715. "index": 6,
  5716. "label": "Mon Mothma",
  5717. "label_display": "center",
  5718. "px": 342.0762857432212,
  5719. "py": 286.1725063850798,
  5720. "shape": "circle",
  5721. "shape_attrs": {
  5722. "r": 15
  5723. },
  5724. "value": null,
  5725. "weight": 5,
  5726. "x": 342.18203084750974,
  5727. "y": 286.2555288096596
  5728. },
  5729. "value": 1
  5730. },
  5731. {
  5732. "source": {
  5733. "index": 2,
  5734. "label": "Jabba Desilijic Tiure",
  5735. "label_display": "center",
  5736. "px": 360.88046507632896,
  5737. "py": 181.42071800676266,
  5738. "shape": "circle",
  5739. "shape_attrs": {
  5740. "r": 15
  5741. },
  5742. "value": null,
  5743. "weight": 6,
  5744. "x": 360.97286244775887,
  5745. "y": 181.33605554410047
  5746. },
  5747. "target": {
  5748. "index": 3,
  5749. "label": "Darth Vader",
  5750. "label_display": "center",
  5751. "px": 255.37452649127783,
  5752. "py": 203.4716276158449,
  5753. "shape": "circle",
  5754. "shape_attrs": {
  5755. "r": 15
  5756. },
  5757. "value": null,
  5758. "weight": 6,
  5759. "x": 255.2740850942802,
  5760. "y": 203.40710861457913
  5761. },
  5762. "value": 2
  5763. },
  5764. {
  5765. "source": {
  5766. "index": 2,
  5767. "label": "Jabba Desilijic Tiure",
  5768. "label_display": "center",
  5769. "px": 360.88046507632896,
  5770. "py": 181.42071800676266,
  5771. "shape": "circle",
  5772. "shape_attrs": {
  5773. "r": 15
  5774. },
  5775. "value": null,
  5776. "weight": 6,
  5777. "x": 360.97286244775887,
  5778. "y": 181.33605554410047
  5779. },
  5780. "target": {
  5781. "index": 4,
  5782. "label": "Obi-Wan Kenobi",
  5783. "label_display": "center",
  5784. "px": 302.10863391228025,
  5785. "py": 164.09028430179106,
  5786. "shape": "circle",
  5787. "shape_attrs": {
  5788. "r": 15
  5789. },
  5790. "value": null,
  5791. "weight": 6,
  5792. "x": 302.0981277368569,
  5793. "y": 163.95965637359805
  5794. },
  5795. "value": 3
  5796. },
  5797. {
  5798. "source": {
  5799. "index": 2,
  5800. "label": "Jabba Desilijic Tiure",
  5801. "label_display": "center",
  5802. "px": 360.88046507632896,
  5803. "py": 181.42071800676266,
  5804. "shape": "circle",
  5805. "shape_attrs": {
  5806. "r": 15
  5807. },
  5808. "value": null,
  5809. "weight": 6,
  5810. "x": 360.97286244775887,
  5811. "y": 181.33605554410047
  5812. },
  5813. "target": {
  5814. "index": 5,
  5815. "label": "Beru Whitesun lars",
  5816. "label_display": "center",
  5817. "px": 313.9582318057522,
  5818. "py": 292.1527693616418,
  5819. "shape": "circle",
  5820. "shape_attrs": {
  5821. "r": 15
  5822. },
  5823. "value": null,
  5824. "weight": 5,
  5825. "x": 313.8783280014674,
  5826. "y": 292.2710626413109
  5827. },
  5828. "value": 1
  5829. },
  5830. {
  5831. "source": {
  5832. "index": 2,
  5833. "label": "Jabba Desilijic Tiure",
  5834. "label_display": "center",
  5835. "px": 360.88046507632896,
  5836. "py": 181.42071800676266,
  5837. "shape": "circle",
  5838. "shape_attrs": {
  5839. "r": 15
  5840. },
  5841. "value": null,
  5842. "weight": 6,
  5843. "x": 360.97286244775887,
  5844. "y": 181.33605554410047
  5845. },
  5846. "target": {
  5847. "index": 6,
  5848. "label": "Mon Mothma",
  5849. "label_display": "center",
  5850. "px": 342.0762857432212,
  5851. "py": 286.1725063850798,
  5852. "shape": "circle",
  5853. "shape_attrs": {
  5854. "r": 15
  5855. },
  5856. "value": null,
  5857. "weight": 5,
  5858. "x": 342.18203084750974,
  5859. "y": 286.2555288096596
  5860. },
  5861. "value": 1
  5862. },
  5863. {
  5864. "source": {
  5865. "index": 3,
  5866. "label": "Darth Vader",
  5867. "label_display": "center",
  5868. "px": 255.37452649127783,
  5869. "py": 203.4716276158449,
  5870. "shape": "circle",
  5871. "shape_attrs": {
  5872. "r": 15
  5873. },
  5874. "value": null,
  5875. "weight": 6,
  5876. "x": 255.2740850942802,
  5877. "y": 203.40710861457913
  5878. },
  5879. "target": {
  5880. "index": 4,
  5881. "label": "Obi-Wan Kenobi",
  5882. "label_display": "center",
  5883. "px": 302.10863391228025,
  5884. "py": 164.09028430179106,
  5885. "shape": "circle",
  5886. "shape_attrs": {
  5887. "r": 15
  5888. },
  5889. "value": null,
  5890. "weight": 6,
  5891. "x": 302.0981277368569,
  5892. "y": 163.95965637359805
  5893. },
  5894. "value": 4
  5895. },
  5896. {
  5897. "source": {
  5898. "index": 3,
  5899. "label": "Darth Vader",
  5900. "label_display": "center",
  5901. "px": 255.37452649127783,
  5902. "py": 203.4716276158449,
  5903. "shape": "circle",
  5904. "shape_attrs": {
  5905. "r": 15
  5906. },
  5907. "value": null,
  5908. "weight": 6,
  5909. "x": 255.2740850942802,
  5910. "y": 203.40710861457913
  5911. },
  5912. "target": {
  5913. "index": 5,
  5914. "label": "Beru Whitesun lars",
  5915. "label_display": "center",
  5916. "px": 313.9582318057522,
  5917. "py": 292.1527693616418,
  5918. "shape": "circle",
  5919. "shape_attrs": {
  5920. "r": 15
  5921. },
  5922. "value": null,
  5923. "weight": 5,
  5924. "x": 313.8783280014674,
  5925. "y": 292.2710626413109
  5926. },
  5927. "value": 2
  5928. },
  5929. {
  5930. "source": {
  5931. "index": 3,
  5932. "label": "Darth Vader",
  5933. "label_display": "center",
  5934. "px": 255.37452649127783,
  5935. "py": 203.4716276158449,
  5936. "shape": "circle",
  5937. "shape_attrs": {
  5938. "r": 15
  5939. },
  5940. "value": null,
  5941. "weight": 6,
  5942. "x": 255.2740850942802,
  5943. "y": 203.40710861457913
  5944. },
  5945. "target": {
  5946. "index": 6,
  5947. "label": "Mon Mothma",
  5948. "label_display": "center",
  5949. "px": 342.0762857432212,
  5950. "py": 286.1725063850798,
  5951. "shape": "circle",
  5952. "shape_attrs": {
  5953. "r": 15
  5954. },
  5955. "value": null,
  5956. "weight": 5,
  5957. "x": 342.18203084750974,
  5958. "y": 286.2555288096596
  5959. },
  5960. "value": 1
  5961. },
  5962. {
  5963. "source": {
  5964. "index": 4,
  5965. "label": "Obi-Wan Kenobi",
  5966. "label_display": "center",
  5967. "px": 302.10863391228025,
  5968. "py": 164.09028430179106,
  5969. "shape": "circle",
  5970. "shape_attrs": {
  5971. "r": 15
  5972. },
  5973. "value": null,
  5974. "weight": 6,
  5975. "x": 302.0981277368569,
  5976. "y": 163.95965637359805
  5977. },
  5978. "target": {
  5979. "index": 5,
  5980. "label": "Beru Whitesun lars",
  5981. "label_display": "center",
  5982. "px": 313.9582318057522,
  5983. "py": 292.1527693616418,
  5984. "shape": "circle",
  5985. "shape_attrs": {
  5986. "r": 15
  5987. },
  5988. "value": null,
  5989. "weight": 5,
  5990. "x": 313.8783280014674,
  5991. "y": 292.2710626413109
  5992. },
  5993. "value": 3
  5994. },
  5995. {
  5996. "source": {
  5997. "index": 4,
  5998. "label": "Obi-Wan Kenobi",
  5999. "label_display": "center",
  6000. "px": 302.10863391228025,
  6001. "py": 164.09028430179106,
  6002. "shape": "circle",
  6003. "shape_attrs": {
  6004. "r": 15
  6005. },
  6006. "value": null,
  6007. "weight": 6,
  6008. "x": 302.0981277368569,
  6009. "y": 163.95965637359805
  6010. },
  6011. "target": {
  6012. "index": 6,
  6013. "label": "Mon Mothma",
  6014. "label_display": "center",
  6015. "px": 342.0762857432212,
  6016. "py": 286.1725063850798,
  6017. "shape": "circle",
  6018. "shape_attrs": {
  6019. "r": 15
  6020. },
  6021. "value": null,
  6022. "weight": 5,
  6023. "x": 342.18203084750974,
  6024. "y": 286.2555288096596
  6025. },
  6026. "value": 1
  6027. }
  6028. ],
  6029. "link_distance": 100,
  6030. "link_matrix": {
  6031. "type": "float",
  6032. "values": []
  6033. },
  6034. "link_type": "arc",
  6035. "node_data": [
  6036. "Boba Fett",
  6037. "Yoda",
  6038. "Jabba Desilijic Tiure",
  6039. "Darth Vader",
  6040. "Obi-Wan Kenobi",
  6041. "Beru Whitesun lars",
  6042. "Mon Mothma"
  6043. ],
  6044. "preserve_domain": {},
  6045. "scales": {},
  6046. "scales_metadata": {
  6047. "color": {
  6048. "dimension": "color"
  6049. },
  6050. "link_color": {
  6051. "dimension": "link_color"
  6052. },
  6053. "x": {
  6054. "dimension": "x",
  6055. "orientation": "horizontal"
  6056. },
  6057. "y": {
  6058. "dimension": "y",
  6059. "orientation": "vertical"
  6060. }
  6061. },
  6062. "selected": [],
  6063. "selected_style": {},
  6064. "tooltip": "IPY_MODEL_0c886c3e4b0a4741909055149e7549d7",
  6065. "tooltip_location": "mouse",
  6066. "tooltip_style": {
  6067. "opacity": 0.9
  6068. },
  6069. "unhovered_style": {},
  6070. "unselected_style": {},
  6071. "visible": true,
  6072. "x": {
  6073. "type": "float",
  6074. "values": []
  6075. },
  6076. "y": {
  6077. "type": "float",
  6078. "values": []
  6079. }
  6080. }
  6081. },
  6082. "42165b6d23464c9c95efe781953eca99": {
  6083. "model_module": "@jupyter-widgets/base",
  6084. "model_module_version": "1.1.0",
  6085. "model_name": "LayoutModel",
  6086. "state": {
  6087. "min_width": "125px"
  6088. }
  6089. },
  6090. "42e926bfc1f341e69cf8a84ca77ac012": {
  6091. "model_module": "bqplot",
  6092. "model_module_version": "^0.4.1",
  6093. "model_name": "LinearScaleModel",
  6094. "state": {
  6095. "_model_module_version": "^0.4.1",
  6096. "_view_module_version": "^0.4.1",
  6097. "allow_padding": false,
  6098. "max": 1,
  6099. "min": 0,
  6100. "stabilized": false
  6101. }
  6102. },
  6103. "454291541061489ba9c9c75308b7be82": {
  6104. "model_module": "bqplot",
  6105. "model_module_version": "^0.4.1",
  6106. "model_name": "GraphModel",
  6107. "state": {
  6108. "_model_module": "bqplot",
  6109. "_model_module_version": "^0.4.1",
  6110. "_view_count": null,
  6111. "_view_module": "bqplot",
  6112. "_view_module_version": "^0.4.1",
  6113. "apply_clip": true,
  6114. "charge": -600,
  6115. "color": {
  6116. "type": null,
  6117. "values": null
  6118. },
  6119. "colors": [
  6120. "#1f77b4",
  6121. "#ff7f0e",
  6122. "#2ca02c",
  6123. "#d62728",
  6124. "#9467bd",
  6125. "#8c564b",
  6126. "#e377c2",
  6127. "#7f7f7f",
  6128. "#bcbd22",
  6129. "#17becf"
  6130. ],
  6131. "directed": true,
  6132. "display_legend": false,
  6133. "enable_hover": true,
  6134. "highlight_links": true,
  6135. "hovered_style": {},
  6136. "interactions": {
  6137. "click": "select",
  6138. "hover": "tooltip"
  6139. },
  6140. "labels": [],
  6141. "link_color": {
  6142. "type": "float",
  6143. "values": []
  6144. },
  6145. "link_data": [
  6146. {
  6147. "source": {
  6148. "index": 0,
  6149. "label": "Boba Fett",
  6150. "label_display": "center",
  6151. "px": 338.3213864566125,
  6152. "py": 309.0322015062565,
  6153. "shape": "circle",
  6154. "shape_attrs": {
  6155. "r": 15
  6156. },
  6157. "value": null,
  6158. "weight": 6,
  6159. "x": 338.37321138706324,
  6160. "y": 309.1508766670054
  6161. },
  6162. "target": {
  6163. "fixed": 0,
  6164. "index": 1,
  6165. "label": "Yoda",
  6166. "label_display": "center",
  6167. "px": 368.77972627663644,
  6168. "py": 190.58258667499476,
  6169. "shape": "circle",
  6170. "shape_attrs": {
  6171. "r": 15
  6172. },
  6173. "value": null,
  6174. "weight": 6,
  6175. "x": 368.77972627663644,
  6176. "y": 190.58258667499476
  6177. },
  6178. "value": 3
  6179. },
  6180. {
  6181. "source": {
  6182. "index": 0,
  6183. "label": "Boba Fett",
  6184. "label_display": "center",
  6185. "px": 338.3213864566125,
  6186. "py": 309.0322015062565,
  6187. "shape": "circle",
  6188. "shape_attrs": {
  6189. "r": 15
  6190. },
  6191. "value": null,
  6192. "weight": 6,
  6193. "x": 338.37321138706324,
  6194. "y": 309.1508766670054
  6195. },
  6196. "target": {
  6197. "index": 2,
  6198. "label": "Jabba Desilijic Tiure",
  6199. "label_display": "center",
  6200. "px": 322.12508511325086,
  6201. "py": 241.2281566035273,
  6202. "shape": "circle",
  6203. "shape_attrs": {
  6204. "r": 15
  6205. },
  6206. "value": null,
  6207. "weight": 6,
  6208. "x": 322.12139484474335,
  6209. "y": 241.22653638845165
  6210. },
  6211. "value": 1
  6212. },
  6213. {
  6214. "source": {
  6215. "index": 0,
  6216. "label": "Boba Fett",
  6217. "label_display": "center",
  6218. "px": 338.3213864566125,
  6219. "py": 309.0322015062565,
  6220. "shape": "circle",
  6221. "shape_attrs": {
  6222. "r": 15
  6223. },
  6224. "value": null,
  6225. "weight": 6,
  6226. "x": 338.37321138706324,
  6227. "y": 309.1508766670054
  6228. },
  6229. "target": {
  6230. "fixed": 0,
  6231. "index": 3,
  6232. "label": "Darth Vader",
  6233. "label_display": "center",
  6234. "px": 299.72572881672596,
  6235. "py": 173.89019862142086,
  6236. "shape": "circle",
  6237. "shape_attrs": {
  6238. "r": 15
  6239. },
  6240. "value": null,
  6241. "weight": 6,
  6242. "x": 299.72572881672596,
  6243. "y": 173.89019862142086
  6244. },
  6245. "value": 2
  6246. },
  6247. {
  6248. "source": {
  6249. "index": 0,
  6250. "label": "Boba Fett",
  6251. "label_display": "center",
  6252. "px": 338.3213864566125,
  6253. "py": 309.0322015062565,
  6254. "shape": "circle",
  6255. "shape_attrs": {
  6256. "r": 15
  6257. },
  6258. "value": null,
  6259. "weight": 6,
  6260. "x": 338.37321138706324,
  6261. "y": 309.1508766670054
  6262. },
  6263. "target": {
  6264. "index": 4,
  6265. "label": "Obi-Wan Kenobi",
  6266. "label_display": "center",
  6267. "px": 270.6534651171608,
  6268. "py": 289.5295727473032,
  6269. "shape": "circle",
  6270. "shape_attrs": {
  6271. "r": 15
  6272. },
  6273. "value": null,
  6274. "weight": 6,
  6275. "x": 270.5761578960631,
  6276. "y": 289.6289479390178
  6277. },
  6278. "value": 3
  6279. },
  6280. {
  6281. "source": {
  6282. "index": 0,
  6283. "label": "Boba Fett",
  6284. "label_display": "center",
  6285. "px": 338.3213864566125,
  6286. "py": 309.0322015062565,
  6287. "shape": "circle",
  6288. "shape_attrs": {
  6289. "r": 15
  6290. },
  6291. "value": null,
  6292. "weight": 6,
  6293. "x": 338.37321138706324,
  6294. "y": 309.1508766670054
  6295. },
  6296. "target": {
  6297. "fixed": 0,
  6298. "index": 5,
  6299. "label": "Beru Whitesun lars",
  6300. "label_display": "center",
  6301. "px": 233.96025291668414,
  6302. "py": 220.072173881644,
  6303. "shape": "circle",
  6304. "shape_attrs": {
  6305. "r": 15
  6306. },
  6307. "value": null,
  6308. "weight": 5,
  6309. "x": 233.96025291668414,
  6310. "y": 220.072173881644
  6311. },
  6312. "value": 1
  6313. },
  6314. {
  6315. "source": {
  6316. "index": 0,
  6317. "label": "Boba Fett",
  6318. "label_display": "center",
  6319. "px": 338.3213864566125,
  6320. "py": 309.0322015062565,
  6321. "shape": "circle",
  6322. "shape_attrs": {
  6323. "r": 15
  6324. },
  6325. "value": null,
  6326. "weight": 6,
  6327. "x": 338.37321138706324,
  6328. "y": 309.1508766670054
  6329. },
  6330. "target": {
  6331. "index": 6,
  6332. "label": "Mon Mothma",
  6333. "label_display": "center",
  6334. "px": 405.6806104368615,
  6335. "py": 262.86068270154635,
  6336. "shape": "circle",
  6337. "shape_attrs": {
  6338. "r": 15
  6339. },
  6340. "value": null,
  6341. "weight": 5,
  6342. "x": 405.80920828944704,
  6343. "y": 262.87320784952044
  6344. },
  6345. "value": 1
  6346. },
  6347. {
  6348. "source": {
  6349. "fixed": 0,
  6350. "index": 1,
  6351. "label": "Yoda",
  6352. "label_display": "center",
  6353. "px": 368.77972627663644,
  6354. "py": 190.58258667499476,
  6355. "shape": "circle",
  6356. "shape_attrs": {
  6357. "r": 15
  6358. },
  6359. "value": null,
  6360. "weight": 6,
  6361. "x": 368.77972627663644,
  6362. "y": 190.58258667499476
  6363. },
  6364. "target": {
  6365. "index": 2,
  6366. "label": "Jabba Desilijic Tiure",
  6367. "label_display": "center",
  6368. "px": 322.12508511325086,
  6369. "py": 241.2281566035273,
  6370. "shape": "circle",
  6371. "shape_attrs": {
  6372. "r": 15
  6373. },
  6374. "value": null,
  6375. "weight": 6,
  6376. "x": 322.12139484474335,
  6377. "y": 241.22653638845165
  6378. },
  6379. "value": 2
  6380. },
  6381. {
  6382. "source": {
  6383. "fixed": 0,
  6384. "index": 1,
  6385. "label": "Yoda",
  6386. "label_display": "center",
  6387. "px": 368.77972627663644,
  6388. "py": 190.58258667499476,
  6389. "shape": "circle",
  6390. "shape_attrs": {
  6391. "r": 15
  6392. },
  6393. "value": null,
  6394. "weight": 6,
  6395. "x": 368.77972627663644,
  6396. "y": 190.58258667499476
  6397. },
  6398. "target": {
  6399. "fixed": 0,
  6400. "index": 3,
  6401. "label": "Darth Vader",
  6402. "label_display": "center",
  6403. "px": 299.72572881672596,
  6404. "py": 173.89019862142086,
  6405. "shape": "circle",
  6406. "shape_attrs": {
  6407. "r": 15
  6408. },
  6409. "value": null,
  6410. "weight": 6,
  6411. "x": 299.72572881672596,
  6412. "y": 173.89019862142086
  6413. },
  6414. "value": 3
  6415. },
  6416. {
  6417. "source": {
  6418. "fixed": 0,
  6419. "index": 1,
  6420. "label": "Yoda",
  6421. "label_display": "center",
  6422. "px": 368.77972627663644,
  6423. "py": 190.58258667499476,
  6424. "shape": "circle",
  6425. "shape_attrs": {
  6426. "r": 15
  6427. },
  6428. "value": null,
  6429. "weight": 6,
  6430. "x": 368.77972627663644,
  6431. "y": 190.58258667499476
  6432. },
  6433. "target": {
  6434. "index": 4,
  6435. "label": "Obi-Wan Kenobi",
  6436. "label_display": "center",
  6437. "px": 270.6534651171608,
  6438. "py": 289.5295727473032,
  6439. "shape": "circle",
  6440. "shape_attrs": {
  6441. "r": 15
  6442. },
  6443. "value": null,
  6444. "weight": 6,
  6445. "x": 270.5761578960631,
  6446. "y": 289.6289479390178
  6447. },
  6448. "value": 5
  6449. },
  6450. {
  6451. "source": {
  6452. "fixed": 0,
  6453. "index": 1,
  6454. "label": "Yoda",
  6455. "label_display": "center",
  6456. "px": 368.77972627663644,
  6457. "py": 190.58258667499476,
  6458. "shape": "circle",
  6459. "shape_attrs": {
  6460. "r": 15
  6461. },
  6462. "value": null,
  6463. "weight": 6,
  6464. "x": 368.77972627663644,
  6465. "y": 190.58258667499476
  6466. },
  6467. "target": {
  6468. "fixed": 0,
  6469. "index": 5,
  6470. "label": "Beru Whitesun lars",
  6471. "label_display": "center",
  6472. "px": 233.96025291668414,
  6473. "py": 220.072173881644,
  6474. "shape": "circle",
  6475. "shape_attrs": {
  6476. "r": 15
  6477. },
  6478. "value": null,
  6479. "weight": 5,
  6480. "x": 233.96025291668414,
  6481. "y": 220.072173881644
  6482. },
  6483. "value": 2
  6484. },
  6485. {
  6486. "source": {
  6487. "fixed": 0,
  6488. "index": 1,
  6489. "label": "Yoda",
  6490. "label_display": "center",
  6491. "px": 368.77972627663644,
  6492. "py": 190.58258667499476,
  6493. "shape": "circle",
  6494. "shape_attrs": {
  6495. "r": 15
  6496. },
  6497. "value": null,
  6498. "weight": 6,
  6499. "x": 368.77972627663644,
  6500. "y": 190.58258667499476
  6501. },
  6502. "target": {
  6503. "index": 6,
  6504. "label": "Mon Mothma",
  6505. "label_display": "center",
  6506. "px": 405.6806104368615,
  6507. "py": 262.86068270154635,
  6508. "shape": "circle",
  6509. "shape_attrs": {
  6510. "r": 15
  6511. },
  6512. "value": null,
  6513. "weight": 5,
  6514. "x": 405.80920828944704,
  6515. "y": 262.87320784952044
  6516. },
  6517. "value": 1
  6518. },
  6519. {
  6520. "source": {
  6521. "index": 2,
  6522. "label": "Jabba Desilijic Tiure",
  6523. "label_display": "center",
  6524. "px": 322.12508511325086,
  6525. "py": 241.2281566035273,
  6526. "shape": "circle",
  6527. "shape_attrs": {
  6528. "r": 15
  6529. },
  6530. "value": null,
  6531. "weight": 6,
  6532. "x": 322.12139484474335,
  6533. "y": 241.22653638845165
  6534. },
  6535. "target": {
  6536. "fixed": 0,
  6537. "index": 3,
  6538. "label": "Darth Vader",
  6539. "label_display": "center",
  6540. "px": 299.72572881672596,
  6541. "py": 173.89019862142086,
  6542. "shape": "circle",
  6543. "shape_attrs": {
  6544. "r": 15
  6545. },
  6546. "value": null,
  6547. "weight": 6,
  6548. "x": 299.72572881672596,
  6549. "y": 173.89019862142086
  6550. },
  6551. "value": 2
  6552. },
  6553. {
  6554. "source": {
  6555. "index": 2,
  6556. "label": "Jabba Desilijic Tiure",
  6557. "label_display": "center",
  6558. "px": 322.12508511325086,
  6559. "py": 241.2281566035273,
  6560. "shape": "circle",
  6561. "shape_attrs": {
  6562. "r": 15
  6563. },
  6564. "value": null,
  6565. "weight": 6,
  6566. "x": 322.12139484474335,
  6567. "y": 241.22653638845165
  6568. },
  6569. "target": {
  6570. "index": 4,
  6571. "label": "Obi-Wan Kenobi",
  6572. "label_display": "center",
  6573. "px": 270.6534651171608,
  6574. "py": 289.5295727473032,
  6575. "shape": "circle",
  6576. "shape_attrs": {
  6577. "r": 15
  6578. },
  6579. "value": null,
  6580. "weight": 6,
  6581. "x": 270.5761578960631,
  6582. "y": 289.6289479390178
  6583. },
  6584. "value": 3
  6585. },
  6586. {
  6587. "source": {
  6588. "index": 2,
  6589. "label": "Jabba Desilijic Tiure",
  6590. "label_display": "center",
  6591. "px": 322.12508511325086,
  6592. "py": 241.2281566035273,
  6593. "shape": "circle",
  6594. "shape_attrs": {
  6595. "r": 15
  6596. },
  6597. "value": null,
  6598. "weight": 6,
  6599. "x": 322.12139484474335,
  6600. "y": 241.22653638845165
  6601. },
  6602. "target": {
  6603. "fixed": 0,
  6604. "index": 5,
  6605. "label": "Beru Whitesun lars",
  6606. "label_display": "center",
  6607. "px": 233.96025291668414,
  6608. "py": 220.072173881644,
  6609. "shape": "circle",
  6610. "shape_attrs": {
  6611. "r": 15
  6612. },
  6613. "value": null,
  6614. "weight": 5,
  6615. "x": 233.96025291668414,
  6616. "y": 220.072173881644
  6617. },
  6618. "value": 1
  6619. },
  6620. {
  6621. "source": {
  6622. "index": 2,
  6623. "label": "Jabba Desilijic Tiure",
  6624. "label_display": "center",
  6625. "px": 322.12508511325086,
  6626. "py": 241.2281566035273,
  6627. "shape": "circle",
  6628. "shape_attrs": {
  6629. "r": 15
  6630. },
  6631. "value": null,
  6632. "weight": 6,
  6633. "x": 322.12139484474335,
  6634. "y": 241.22653638845165
  6635. },
  6636. "target": {
  6637. "index": 6,
  6638. "label": "Mon Mothma",
  6639. "label_display": "center",
  6640. "px": 405.6806104368615,
  6641. "py": 262.86068270154635,
  6642. "shape": "circle",
  6643. "shape_attrs": {
  6644. "r": 15
  6645. },
  6646. "value": null,
  6647. "weight": 5,
  6648. "x": 405.80920828944704,
  6649. "y": 262.87320784952044
  6650. },
  6651. "value": 1
  6652. },
  6653. {
  6654. "source": {
  6655. "fixed": 0,
  6656. "index": 3,
  6657. "label": "Darth Vader",
  6658. "label_display": "center",
  6659. "px": 299.72572881672596,
  6660. "py": 173.89019862142086,
  6661. "shape": "circle",
  6662. "shape_attrs": {
  6663. "r": 15
  6664. },
  6665. "value": null,
  6666. "weight": 6,
  6667. "x": 299.72572881672596,
  6668. "y": 173.89019862142086
  6669. },
  6670. "target": {
  6671. "index": 4,
  6672. "label": "Obi-Wan Kenobi",
  6673. "label_display": "center",
  6674. "px": 270.6534651171608,
  6675. "py": 289.5295727473032,
  6676. "shape": "circle",
  6677. "shape_attrs": {
  6678. "r": 15
  6679. },
  6680. "value": null,
  6681. "weight": 6,
  6682. "x": 270.5761578960631,
  6683. "y": 289.6289479390178
  6684. },
  6685. "value": 4
  6686. },
  6687. {
  6688. "source": {
  6689. "fixed": 0,
  6690. "index": 3,
  6691. "label": "Darth Vader",
  6692. "label_display": "center",
  6693. "px": 299.72572881672596,
  6694. "py": 173.89019862142086,
  6695. "shape": "circle",
  6696. "shape_attrs": {
  6697. "r": 15
  6698. },
  6699. "value": null,
  6700. "weight": 6,
  6701. "x": 299.72572881672596,
  6702. "y": 173.89019862142086
  6703. },
  6704. "target": {
  6705. "fixed": 0,
  6706. "index": 5,
  6707. "label": "Beru Whitesun lars",
  6708. "label_display": "center",
  6709. "px": 233.96025291668414,
  6710. "py": 220.072173881644,
  6711. "shape": "circle",
  6712. "shape_attrs": {
  6713. "r": 15
  6714. },
  6715. "value": null,
  6716. "weight": 5,
  6717. "x": 233.96025291668414,
  6718. "y": 220.072173881644
  6719. },
  6720. "value": 2
  6721. },
  6722. {
  6723. "source": {
  6724. "fixed": 0,
  6725. "index": 3,
  6726. "label": "Darth Vader",
  6727. "label_display": "center",
  6728. "px": 299.72572881672596,
  6729. "py": 173.89019862142086,
  6730. "shape": "circle",
  6731. "shape_attrs": {
  6732. "r": 15
  6733. },
  6734. "value": null,
  6735. "weight": 6,
  6736. "x": 299.72572881672596,
  6737. "y": 173.89019862142086
  6738. },
  6739. "target": {
  6740. "index": 6,
  6741. "label": "Mon Mothma",
  6742. "label_display": "center",
  6743. "px": 405.6806104368615,
  6744. "py": 262.86068270154635,
  6745. "shape": "circle",
  6746. "shape_attrs": {
  6747. "r": 15
  6748. },
  6749. "value": null,
  6750. "weight": 5,
  6751. "x": 405.80920828944704,
  6752. "y": 262.87320784952044
  6753. },
  6754. "value": 1
  6755. },
  6756. {
  6757. "source": {
  6758. "index": 4,
  6759. "label": "Obi-Wan Kenobi",
  6760. "label_display": "center",
  6761. "px": 270.6534651171608,
  6762. "py": 289.5295727473032,
  6763. "shape": "circle",
  6764. "shape_attrs": {
  6765. "r": 15
  6766. },
  6767. "value": null,
  6768. "weight": 6,
  6769. "x": 270.5761578960631,
  6770. "y": 289.6289479390178
  6771. },
  6772. "target": {
  6773. "fixed": 0,
  6774. "index": 5,
  6775. "label": "Beru Whitesun lars",
  6776. "label_display": "center",
  6777. "px": 233.96025291668414,
  6778. "py": 220.072173881644,
  6779. "shape": "circle",
  6780. "shape_attrs": {
  6781. "r": 15
  6782. },
  6783. "value": null,
  6784. "weight": 5,
  6785. "x": 233.96025291668414,
  6786. "y": 220.072173881644
  6787. },
  6788. "value": 3
  6789. },
  6790. {
  6791. "source": {
  6792. "index": 4,
  6793. "label": "Obi-Wan Kenobi",
  6794. "label_display": "center",
  6795. "px": 270.6534651171608,
  6796. "py": 289.5295727473032,
  6797. "shape": "circle",
  6798. "shape_attrs": {
  6799. "r": 15
  6800. },
  6801. "value": null,
  6802. "weight": 6,
  6803. "x": 270.5761578960631,
  6804. "y": 289.6289479390178
  6805. },
  6806. "target": {
  6807. "index": 6,
  6808. "label": "Mon Mothma",
  6809. "label_display": "center",
  6810. "px": 405.6806104368615,
  6811. "py": 262.86068270154635,
  6812. "shape": "circle",
  6813. "shape_attrs": {
  6814. "r": 15
  6815. },
  6816. "value": null,
  6817. "weight": 5,
  6818. "x": 405.80920828944704,
  6819. "y": 262.87320784952044
  6820. },
  6821. "value": 1
  6822. }
  6823. ],
  6824. "link_distance": 100,
  6825. "link_matrix": {
  6826. "type": "float",
  6827. "values": []
  6828. },
  6829. "link_type": "arc",
  6830. "node_data": [
  6831. "Boba Fett",
  6832. "Yoda",
  6833. "Jabba Desilijic Tiure",
  6834. "Darth Vader",
  6835. "Obi-Wan Kenobi",
  6836. "Beru Whitesun lars",
  6837. "Mon Mothma"
  6838. ],
  6839. "preserve_domain": {},
  6840. "scales": {},
  6841. "scales_metadata": {
  6842. "color": {
  6843. "dimension": "color"
  6844. },
  6845. "link_color": {
  6846. "dimension": "link_color"
  6847. },
  6848. "x": {
  6849. "dimension": "x",
  6850. "orientation": "horizontal"
  6851. },
  6852. "y": {
  6853. "dimension": "y",
  6854. "orientation": "vertical"
  6855. }
  6856. },
  6857. "selected": [],
  6858. "selected_style": {},
  6859. "tooltip": "IPY_MODEL_cf280a9fb5194b89a7936bf875c9bef2",
  6860. "tooltip_location": "mouse",
  6861. "tooltip_style": {
  6862. "opacity": 0.9
  6863. },
  6864. "unhovered_style": {},
  6865. "unselected_style": {},
  6866. "visible": true,
  6867. "x": {
  6868. "type": "float",
  6869. "values": []
  6870. },
  6871. "y": {
  6872. "type": "float",
  6873. "values": []
  6874. }
  6875. }
  6876. },
  6877. "45be148b9f734d2eb8abd18edaedb6f9": {
  6878. "model_module": "bqplot",
  6879. "model_module_version": "^0.4.1",
  6880. "model_name": "LinearScaleModel",
  6881. "state": {
  6882. "_model_module_version": "^0.4.1",
  6883. "_view_module_version": "^0.4.1",
  6884. "allow_padding": false,
  6885. "max": 1,
  6886. "min": 0,
  6887. "stabilized": false
  6888. }
  6889. },
  6890. "46604040fa1f490dbddd1503568882a0": {
  6891. "model_module": "bqplot",
  6892. "model_module_version": "^0.4.1",
  6893. "model_name": "LinearScaleModel",
  6894. "state": {
  6895. "_model_module_version": "^0.4.1",
  6896. "_view_module_version": "^0.4.1",
  6897. "allow_padding": false,
  6898. "max": 1,
  6899. "min": 0,
  6900. "stabilized": false
  6901. }
  6902. },
  6903. "46f5fc62c737409a8ee4760d6003f485": {
  6904. "model_module": "bqplot",
  6905. "model_module_version": "^0.4.1",
  6906. "model_name": "GraphModel",
  6907. "state": {
  6908. "_model_module": "bqplot",
  6909. "_model_module_version": "^0.4.1",
  6910. "_view_count": null,
  6911. "_view_module": "bqplot",
  6912. "_view_module_version": "^0.4.1",
  6913. "apply_clip": true,
  6914. "charge": -600,
  6915. "color": {
  6916. "type": null,
  6917. "values": null
  6918. },
  6919. "colors": [
  6920. "#1f77b4",
  6921. "#ff7f0e",
  6922. "#2ca02c",
  6923. "#d62728",
  6924. "#9467bd",
  6925. "#8c564b",
  6926. "#e377c2",
  6927. "#7f7f7f",
  6928. "#bcbd22",
  6929. "#17becf"
  6930. ],
  6931. "directed": true,
  6932. "display_legend": false,
  6933. "enable_hover": true,
  6934. "highlight_links": true,
  6935. "hovered_style": {},
  6936. "interactions": {
  6937. "click": "select",
  6938. "hover": "tooltip"
  6939. },
  6940. "labels": [],
  6941. "link_color": {
  6942. "type": "float",
  6943. "values": []
  6944. },
  6945. "link_data": [
  6946. {
  6947. "source": {
  6948. "fixed": 0,
  6949. "index": 0,
  6950. "label": "Boba Fett",
  6951. "label_display": "center",
  6952. "px": 380.6053250122647,
  6953. "py": 213.69794150909522,
  6954. "shape": "circle",
  6955. "shape_attrs": {
  6956. "r": 15
  6957. },
  6958. "value": null,
  6959. "weight": 6,
  6960. "x": 380.7030304795128,
  6961. "y": 213.63778533547955
  6962. },
  6963. "target": {
  6964. "fixed": 0,
  6965. "index": 1,
  6966. "label": "Yoda",
  6967. "label_display": "center",
  6968. "px": 262.06830154151146,
  6969. "py": 282.3239236997231,
  6970. "shape": "circle",
  6971. "shape_attrs": {
  6972. "r": 15
  6973. },
  6974. "value": null,
  6975. "weight": 6,
  6976. "x": 262.06830154151146,
  6977. "y": 282.3239236997231
  6978. },
  6979. "value": 3
  6980. },
  6981. {
  6982. "source": {
  6983. "fixed": 0,
  6984. "index": 0,
  6985. "label": "Boba Fett",
  6986. "label_display": "center",
  6987. "px": 380.6053250122647,
  6988. "py": 213.69794150909522,
  6989. "shape": "circle",
  6990. "shape_attrs": {
  6991. "r": 15
  6992. },
  6993. "value": null,
  6994. "weight": 6,
  6995. "x": 380.7030304795128,
  6996. "y": 213.63778533547955
  6997. },
  6998. "target": {
  6999. "fixed": 0,
  7000. "index": 2,
  7001. "label": "Jabba Desilijic Tiure",
  7002. "label_display": "center",
  7003. "px": 326.4525613069058,
  7004. "py": 305.82176736858315,
  7005. "shape": "circle",
  7006. "shape_attrs": {
  7007. "r": 15
  7008. },
  7009. "value": null,
  7010. "weight": 6,
  7011. "x": 326.48799182906254,
  7012. "y": 305.9364833509237
  7013. },
  7014. "value": 1
  7015. },
  7016. {
  7017. "source": {
  7018. "fixed": 0,
  7019. "index": 0,
  7020. "label": "Boba Fett",
  7021. "label_display": "center",
  7022. "px": 380.6053250122647,
  7023. "py": 213.69794150909522,
  7024. "shape": "circle",
  7025. "shape_attrs": {
  7026. "r": 15
  7027. },
  7028. "value": null,
  7029. "weight": 6,
  7030. "x": 380.7030304795128,
  7031. "y": 213.63778533547955
  7032. },
  7033. "target": {
  7034. "fixed": 0,
  7035. "index": 3,
  7036. "label": "Darth Vader",
  7037. "label_display": "center",
  7038. "px": 329.49147519319285,
  7039. "py": 168.57716164544593,
  7040. "shape": "circle",
  7041. "shape_attrs": {
  7042. "r": 15
  7043. },
  7044. "value": null,
  7045. "weight": 6,
  7046. "x": 329.4807193845406,
  7047. "y": 168.44546499600364
  7048. },
  7049. "value": 2
  7050. },
  7051. {
  7052. "source": {
  7053. "fixed": 0,
  7054. "index": 0,
  7055. "label": "Boba Fett",
  7056. "label_display": "center",
  7057. "px": 380.6053250122647,
  7058. "py": 213.69794150909522,
  7059. "shape": "circle",
  7060. "shape_attrs": {
  7061. "r": 15
  7062. },
  7063. "value": null,
  7064. "weight": 6,
  7065. "x": 380.7030304795128,
  7066. "y": 213.63778533547955
  7067. },
  7068. "target": {
  7069. "fixed": 0,
  7070. "index": 4,
  7071. "label": "Obi-Wan Kenobi",
  7072. "label_display": "center",
  7073. "px": 306.42690408203543,
  7074. "py": 232.15682933791058,
  7075. "shape": "circle",
  7076. "shape_attrs": {
  7077. "r": 15
  7078. },
  7079. "value": null,
  7080. "weight": 6,
  7081. "x": 306.40840290613147,
  7082. "y": 232.1530915050046
  7083. },
  7084. "value": 3
  7085. },
  7086. {
  7087. "source": {
  7088. "fixed": 0,
  7089. "index": 0,
  7090. "label": "Boba Fett",
  7091. "label_display": "center",
  7092. "px": 380.6053250122647,
  7093. "py": 213.69794150909522,
  7094. "shape": "circle",
  7095. "shape_attrs": {
  7096. "r": 15
  7097. },
  7098. "value": null,
  7099. "weight": 6,
  7100. "x": 380.7030304795128,
  7101. "y": 213.63778533547955
  7102. },
  7103. "target": {
  7104. "fixed": 0,
  7105. "index": 5,
  7106. "label": "Beru Whitesun lars",
  7107. "label_display": "center",
  7108. "px": 397.2804782251003,
  7109. "py": 284.44399281765504,
  7110. "shape": "circle",
  7111. "shape_attrs": {
  7112. "r": 15
  7113. },
  7114. "value": null,
  7115. "weight": 5,
  7116. "x": 397.40448519259985,
  7117. "y": 284.48016142098817
  7118. },
  7119. "value": 1
  7120. },
  7121. {
  7122. "source": {
  7123. "fixed": 0,
  7124. "index": 0,
  7125. "label": "Boba Fett",
  7126. "label_display": "center",
  7127. "px": 380.6053250122647,
  7128. "py": 213.69794150909522,
  7129. "shape": "circle",
  7130. "shape_attrs": {
  7131. "r": 15
  7132. },
  7133. "value": null,
  7134. "weight": 6,
  7135. "x": 380.7030304795128,
  7136. "y": 213.63778533547955
  7137. },
  7138. "target": {
  7139. "fixed": 0,
  7140. "index": 6,
  7141. "label": "Mon Mothma",
  7142. "label_display": "center",
  7143. "px": 243.75242689760503,
  7144. "py": 193.02716322230594,
  7145. "shape": "circle",
  7146. "shape_attrs": {
  7147. "r": 15
  7148. },
  7149. "value": null,
  7150. "weight": 5,
  7151. "x": 243.75242689760503,
  7152. "y": 193.02716322230594
  7153. },
  7154. "value": 1
  7155. },
  7156. {
  7157. "source": {
  7158. "fixed": 0,
  7159. "index": 1,
  7160. "label": "Yoda",
  7161. "label_display": "center",
  7162. "px": 262.06830154151146,
  7163. "py": 282.3239236997231,
  7164. "shape": "circle",
  7165. "shape_attrs": {
  7166. "r": 15
  7167. },
  7168. "value": null,
  7169. "weight": 6,
  7170. "x": 262.06830154151146,
  7171. "y": 282.3239236997231
  7172. },
  7173. "target": {
  7174. "fixed": 0,
  7175. "index": 2,
  7176. "label": "Jabba Desilijic Tiure",
  7177. "label_display": "center",
  7178. "px": 326.4525613069058,
  7179. "py": 305.82176736858315,
  7180. "shape": "circle",
  7181. "shape_attrs": {
  7182. "r": 15
  7183. },
  7184. "value": null,
  7185. "weight": 6,
  7186. "x": 326.48799182906254,
  7187. "y": 305.9364833509237
  7188. },
  7189. "value": 2
  7190. },
  7191. {
  7192. "source": {
  7193. "fixed": 0,
  7194. "index": 1,
  7195. "label": "Yoda",
  7196. "label_display": "center",
  7197. "px": 262.06830154151146,
  7198. "py": 282.3239236997231,
  7199. "shape": "circle",
  7200. "shape_attrs": {
  7201. "r": 15
  7202. },
  7203. "value": null,
  7204. "weight": 6,
  7205. "x": 262.06830154151146,
  7206. "y": 282.3239236997231
  7207. },
  7208. "target": {
  7209. "fixed": 0,
  7210. "index": 3,
  7211. "label": "Darth Vader",
  7212. "label_display": "center",
  7213. "px": 329.49147519319285,
  7214. "py": 168.57716164544593,
  7215. "shape": "circle",
  7216. "shape_attrs": {
  7217. "r": 15
  7218. },
  7219. "value": null,
  7220. "weight": 6,
  7221. "x": 329.4807193845406,
  7222. "y": 168.44546499600364
  7223. },
  7224. "value": 3
  7225. },
  7226. {
  7227. "source": {
  7228. "fixed": 0,
  7229. "index": 1,
  7230. "label": "Yoda",
  7231. "label_display": "center",
  7232. "px": 262.06830154151146,
  7233. "py": 282.3239236997231,
  7234. "shape": "circle",
  7235. "shape_attrs": {
  7236. "r": 15
  7237. },
  7238. "value": null,
  7239. "weight": 6,
  7240. "x": 262.06830154151146,
  7241. "y": 282.3239236997231
  7242. },
  7243. "target": {
  7244. "fixed": 0,
  7245. "index": 4,
  7246. "label": "Obi-Wan Kenobi",
  7247. "label_display": "center",
  7248. "px": 306.42690408203543,
  7249. "py": 232.15682933791058,
  7250. "shape": "circle",
  7251. "shape_attrs": {
  7252. "r": 15
  7253. },
  7254. "value": null,
  7255. "weight": 6,
  7256. "x": 306.40840290613147,
  7257. "y": 232.1530915050046
  7258. },
  7259. "value": 5
  7260. },
  7261. {
  7262. "source": {
  7263. "fixed": 0,
  7264. "index": 1,
  7265. "label": "Yoda",
  7266. "label_display": "center",
  7267. "px": 262.06830154151146,
  7268. "py": 282.3239236997231,
  7269. "shape": "circle",
  7270. "shape_attrs": {
  7271. "r": 15
  7272. },
  7273. "value": null,
  7274. "weight": 6,
  7275. "x": 262.06830154151146,
  7276. "y": 282.3239236997231
  7277. },
  7278. "target": {
  7279. "fixed": 0,
  7280. "index": 5,
  7281. "label": "Beru Whitesun lars",
  7282. "label_display": "center",
  7283. "px": 397.2804782251003,
  7284. "py": 284.44399281765504,
  7285. "shape": "circle",
  7286. "shape_attrs": {
  7287. "r": 15
  7288. },
  7289. "value": null,
  7290. "weight": 5,
  7291. "x": 397.40448519259985,
  7292. "y": 284.48016142098817
  7293. },
  7294. "value": 2
  7295. },
  7296. {
  7297. "source": {
  7298. "fixed": 0,
  7299. "index": 1,
  7300. "label": "Yoda",
  7301. "label_display": "center",
  7302. "px": 262.06830154151146,
  7303. "py": 282.3239236997231,
  7304. "shape": "circle",
  7305. "shape_attrs": {
  7306. "r": 15
  7307. },
  7308. "value": null,
  7309. "weight": 6,
  7310. "x": 262.06830154151146,
  7311. "y": 282.3239236997231
  7312. },
  7313. "target": {
  7314. "fixed": 0,
  7315. "index": 6,
  7316. "label": "Mon Mothma",
  7317. "label_display": "center",
  7318. "px": 243.75242689760503,
  7319. "py": 193.02716322230594,
  7320. "shape": "circle",
  7321. "shape_attrs": {
  7322. "r": 15
  7323. },
  7324. "value": null,
  7325. "weight": 5,
  7326. "x": 243.75242689760503,
  7327. "y": 193.02716322230594
  7328. },
  7329. "value": 1
  7330. },
  7331. {
  7332. "source": {
  7333. "fixed": 0,
  7334. "index": 2,
  7335. "label": "Jabba Desilijic Tiure",
  7336. "label_display": "center",
  7337. "px": 326.4525613069058,
  7338. "py": 305.82176736858315,
  7339. "shape": "circle",
  7340. "shape_attrs": {
  7341. "r": 15
  7342. },
  7343. "value": null,
  7344. "weight": 6,
  7345. "x": 326.48799182906254,
  7346. "y": 305.9364833509237
  7347. },
  7348. "target": {
  7349. "fixed": 0,
  7350. "index": 3,
  7351. "label": "Darth Vader",
  7352. "label_display": "center",
  7353. "px": 329.49147519319285,
  7354. "py": 168.57716164544593,
  7355. "shape": "circle",
  7356. "shape_attrs": {
  7357. "r": 15
  7358. },
  7359. "value": null,
  7360. "weight": 6,
  7361. "x": 329.4807193845406,
  7362. "y": 168.44546499600364
  7363. },
  7364. "value": 2
  7365. },
  7366. {
  7367. "source": {
  7368. "fixed": 0,
  7369. "index": 2,
  7370. "label": "Jabba Desilijic Tiure",
  7371. "label_display": "center",
  7372. "px": 326.4525613069058,
  7373. "py": 305.82176736858315,
  7374. "shape": "circle",
  7375. "shape_attrs": {
  7376. "r": 15
  7377. },
  7378. "value": null,
  7379. "weight": 6,
  7380. "x": 326.48799182906254,
  7381. "y": 305.9364833509237
  7382. },
  7383. "target": {
  7384. "fixed": 0,
  7385. "index": 4,
  7386. "label": "Obi-Wan Kenobi",
  7387. "label_display": "center",
  7388. "px": 306.42690408203543,
  7389. "py": 232.15682933791058,
  7390. "shape": "circle",
  7391. "shape_attrs": {
  7392. "r": 15
  7393. },
  7394. "value": null,
  7395. "weight": 6,
  7396. "x": 306.40840290613147,
  7397. "y": 232.1530915050046
  7398. },
  7399. "value": 3
  7400. },
  7401. {
  7402. "source": {
  7403. "fixed": 0,
  7404. "index": 2,
  7405. "label": "Jabba Desilijic Tiure",
  7406. "label_display": "center",
  7407. "px": 326.4525613069058,
  7408. "py": 305.82176736858315,
  7409. "shape": "circle",
  7410. "shape_attrs": {
  7411. "r": 15
  7412. },
  7413. "value": null,
  7414. "weight": 6,
  7415. "x": 326.48799182906254,
  7416. "y": 305.9364833509237
  7417. },
  7418. "target": {
  7419. "fixed": 0,
  7420. "index": 5,
  7421. "label": "Beru Whitesun lars",
  7422. "label_display": "center",
  7423. "px": 397.2804782251003,
  7424. "py": 284.44399281765504,
  7425. "shape": "circle",
  7426. "shape_attrs": {
  7427. "r": 15
  7428. },
  7429. "value": null,
  7430. "weight": 5,
  7431. "x": 397.40448519259985,
  7432. "y": 284.48016142098817
  7433. },
  7434. "value": 1
  7435. },
  7436. {
  7437. "source": {
  7438. "fixed": 0,
  7439. "index": 2,
  7440. "label": "Jabba Desilijic Tiure",
  7441. "label_display": "center",
  7442. "px": 326.4525613069058,
  7443. "py": 305.82176736858315,
  7444. "shape": "circle",
  7445. "shape_attrs": {
  7446. "r": 15
  7447. },
  7448. "value": null,
  7449. "weight": 6,
  7450. "x": 326.48799182906254,
  7451. "y": 305.9364833509237
  7452. },
  7453. "target": {
  7454. "fixed": 0,
  7455. "index": 6,
  7456. "label": "Mon Mothma",
  7457. "label_display": "center",
  7458. "px": 243.75242689760503,
  7459. "py": 193.02716322230594,
  7460. "shape": "circle",
  7461. "shape_attrs": {
  7462. "r": 15
  7463. },
  7464. "value": null,
  7465. "weight": 5,
  7466. "x": 243.75242689760503,
  7467. "y": 193.02716322230594
  7468. },
  7469. "value": 1
  7470. },
  7471. {
  7472. "source": {
  7473. "fixed": 0,
  7474. "index": 3,
  7475. "label": "Darth Vader",
  7476. "label_display": "center",
  7477. "px": 329.49147519319285,
  7478. "py": 168.57716164544593,
  7479. "shape": "circle",
  7480. "shape_attrs": {
  7481. "r": 15
  7482. },
  7483. "value": null,
  7484. "weight": 6,
  7485. "x": 329.4807193845406,
  7486. "y": 168.44546499600364
  7487. },
  7488. "target": {
  7489. "fixed": 0,
  7490. "index": 4,
  7491. "label": "Obi-Wan Kenobi",
  7492. "label_display": "center",
  7493. "px": 306.42690408203543,
  7494. "py": 232.15682933791058,
  7495. "shape": "circle",
  7496. "shape_attrs": {
  7497. "r": 15
  7498. },
  7499. "value": null,
  7500. "weight": 6,
  7501. "x": 306.40840290613147,
  7502. "y": 232.1530915050046
  7503. },
  7504. "value": 4
  7505. },
  7506. {
  7507. "source": {
  7508. "fixed": 0,
  7509. "index": 3,
  7510. "label": "Darth Vader",
  7511. "label_display": "center",
  7512. "px": 329.49147519319285,
  7513. "py": 168.57716164544593,
  7514. "shape": "circle",
  7515. "shape_attrs": {
  7516. "r": 15
  7517. },
  7518. "value": null,
  7519. "weight": 6,
  7520. "x": 329.4807193845406,
  7521. "y": 168.44546499600364
  7522. },
  7523. "target": {
  7524. "fixed": 0,
  7525. "index": 5,
  7526. "label": "Beru Whitesun lars",
  7527. "label_display": "center",
  7528. "px": 397.2804782251003,
  7529. "py": 284.44399281765504,
  7530. "shape": "circle",
  7531. "shape_attrs": {
  7532. "r": 15
  7533. },
  7534. "value": null,
  7535. "weight": 5,
  7536. "x": 397.40448519259985,
  7537. "y": 284.48016142098817
  7538. },
  7539. "value": 2
  7540. },
  7541. {
  7542. "source": {
  7543. "fixed": 0,
  7544. "index": 3,
  7545. "label": "Darth Vader",
  7546. "label_display": "center",
  7547. "px": 329.49147519319285,
  7548. "py": 168.57716164544593,
  7549. "shape": "circle",
  7550. "shape_attrs": {
  7551. "r": 15
  7552. },
  7553. "value": null,
  7554. "weight": 6,
  7555. "x": 329.4807193845406,
  7556. "y": 168.44546499600364
  7557. },
  7558. "target": {
  7559. "fixed": 0,
  7560. "index": 6,
  7561. "label": "Mon Mothma",
  7562. "label_display": "center",
  7563. "px": 243.75242689760503,
  7564. "py": 193.02716322230594,
  7565. "shape": "circle",
  7566. "shape_attrs": {
  7567. "r": 15
  7568. },
  7569. "value": null,
  7570. "weight": 5,
  7571. "x": 243.75242689760503,
  7572. "y": 193.02716322230594
  7573. },
  7574. "value": 1
  7575. },
  7576. {
  7577. "source": {
  7578. "fixed": 0,
  7579. "index": 4,
  7580. "label": "Obi-Wan Kenobi",
  7581. "label_display": "center",
  7582. "px": 306.42690408203543,
  7583. "py": 232.15682933791058,
  7584. "shape": "circle",
  7585. "shape_attrs": {
  7586. "r": 15
  7587. },
  7588. "value": null,
  7589. "weight": 6,
  7590. "x": 306.40840290613147,
  7591. "y": 232.1530915050046
  7592. },
  7593. "target": {
  7594. "fixed": 0,
  7595. "index": 5,
  7596. "label": "Beru Whitesun lars",
  7597. "label_display": "center",
  7598. "px": 397.2804782251003,
  7599. "py": 284.44399281765504,
  7600. "shape": "circle",
  7601. "shape_attrs": {
  7602. "r": 15
  7603. },
  7604. "value": null,
  7605. "weight": 5,
  7606. "x": 397.40448519259985,
  7607. "y": 284.48016142098817
  7608. },
  7609. "value": 3
  7610. },
  7611. {
  7612. "source": {
  7613. "fixed": 0,
  7614. "index": 4,
  7615. "label": "Obi-Wan Kenobi",
  7616. "label_display": "center",
  7617. "px": 306.42690408203543,
  7618. "py": 232.15682933791058,
  7619. "shape": "circle",
  7620. "shape_attrs": {
  7621. "r": 15
  7622. },
  7623. "value": null,
  7624. "weight": 6,
  7625. "x": 306.40840290613147,
  7626. "y": 232.1530915050046
  7627. },
  7628. "target": {
  7629. "fixed": 0,
  7630. "index": 6,
  7631. "label": "Mon Mothma",
  7632. "label_display": "center",
  7633. "px": 243.75242689760503,
  7634. "py": 193.02716322230594,
  7635. "shape": "circle",
  7636. "shape_attrs": {
  7637. "r": 15
  7638. },
  7639. "value": null,
  7640. "weight": 5,
  7641. "x": 243.75242689760503,
  7642. "y": 193.02716322230594
  7643. },
  7644. "value": 1
  7645. }
  7646. ],
  7647. "link_distance": 100,
  7648. "link_matrix": {
  7649. "type": "float",
  7650. "values": []
  7651. },
  7652. "link_type": "arc",
  7653. "node_data": [
  7654. "Boba Fett",
  7655. "Yoda",
  7656. "Jabba Desilijic Tiure",
  7657. "Darth Vader",
  7658. "Obi-Wan Kenobi",
  7659. "Beru Whitesun lars",
  7660. "Mon Mothma"
  7661. ],
  7662. "preserve_domain": {},
  7663. "scales": {},
  7664. "scales_metadata": {
  7665. "color": {
  7666. "dimension": "color"
  7667. },
  7668. "link_color": {
  7669. "dimension": "link_color"
  7670. },
  7671. "x": {
  7672. "dimension": "x",
  7673. "orientation": "horizontal"
  7674. },
  7675. "y": {
  7676. "dimension": "y",
  7677. "orientation": "vertical"
  7678. }
  7679. },
  7680. "selected": [
  7681. 6
  7682. ],
  7683. "selected_style": {},
  7684. "tooltip": "IPY_MODEL_28350a7120e4464693802db4d880952b",
  7685. "tooltip_location": "mouse",
  7686. "tooltip_style": {
  7687. "opacity": 0.9
  7688. },
  7689. "unhovered_style": {},
  7690. "unselected_style": {},
  7691. "visible": true,
  7692. "x": {
  7693. "type": "float",
  7694. "values": []
  7695. },
  7696. "y": {
  7697. "type": "float",
  7698. "values": []
  7699. }
  7700. }
  7701. },
  7702. "4a3fcaf495444b89aa45c4c2be8648ae": {
  7703. "model_module": "bqplot",
  7704. "model_module_version": "^0.4.1",
  7705. "model_name": "GraphModel",
  7706. "state": {
  7707. "_model_module": "bqplot",
  7708. "_model_module_version": "^0.4.1",
  7709. "_view_count": null,
  7710. "_view_module": "bqplot",
  7711. "_view_module_version": "^0.4.1",
  7712. "apply_clip": true,
  7713. "charge": -600,
  7714. "color": {
  7715. "type": null,
  7716. "values": null
  7717. },
  7718. "colors": [
  7719. "#1f77b4",
  7720. "#ff7f0e",
  7721. "#2ca02c",
  7722. "#d62728",
  7723. "#9467bd",
  7724. "#8c564b",
  7725. "#e377c2",
  7726. "#7f7f7f",
  7727. "#bcbd22",
  7728. "#17becf"
  7729. ],
  7730. "directed": true,
  7731. "display_legend": false,
  7732. "enable_hover": true,
  7733. "highlight_links": true,
  7734. "hovered_style": {},
  7735. "interactions": {
  7736. "click": "select",
  7737. "hover": "tooltip"
  7738. },
  7739. "labels": [],
  7740. "link_color": {
  7741. "type": "float",
  7742. "values": []
  7743. },
  7744. "link_data": [
  7745. {
  7746. "source": 3,
  7747. "target": 6,
  7748. "value": 1
  7749. }
  7750. ],
  7751. "link_distance": 100,
  7752. "link_matrix": {
  7753. "type": "float",
  7754. "values": []
  7755. },
  7756. "link_type": "arc",
  7757. "node_data": [
  7758. "Boba Fett",
  7759. "Yoda",
  7760. "Jabba Desilijic Tiure",
  7761. "Darth Vader",
  7762. "Obi-Wan Kenobi",
  7763. "Beru Whitesun lars",
  7764. "Mon Mothma"
  7765. ],
  7766. "preserve_domain": {},
  7767. "scales": {},
  7768. "scales_metadata": {
  7769. "color": {
  7770. "dimension": "color"
  7771. },
  7772. "link_color": {
  7773. "dimension": "link_color"
  7774. },
  7775. "x": {
  7776. "dimension": "x",
  7777. "orientation": "horizontal"
  7778. },
  7779. "y": {
  7780. "dimension": "y",
  7781. "orientation": "vertical"
  7782. }
  7783. },
  7784. "selected": [],
  7785. "selected_style": {},
  7786. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  7787. "tooltip_location": "mouse",
  7788. "tooltip_style": {
  7789. "opacity": 0.9
  7790. },
  7791. "unhovered_style": {},
  7792. "unselected_style": {},
  7793. "visible": true,
  7794. "x": {
  7795. "type": "float",
  7796. "values": []
  7797. },
  7798. "y": {
  7799. "type": "float",
  7800. "values": []
  7801. }
  7802. }
  7803. },
  7804. "4f7cdbdcddbd419bac683d8946a098f7": {
  7805. "model_module": "bqplot",
  7806. "model_module_version": "^0.4.1",
  7807. "model_name": "GraphModel",
  7808. "state": {
  7809. "_model_module": "bqplot",
  7810. "_model_module_version": "^0.4.1",
  7811. "_view_count": null,
  7812. "_view_module": "bqplot",
  7813. "_view_module_version": "^0.4.1",
  7814. "apply_clip": true,
  7815. "charge": -600,
  7816. "color": {
  7817. "type": null,
  7818. "values": null
  7819. },
  7820. "colors": [
  7821. "#1f77b4",
  7822. "#ff7f0e",
  7823. "#2ca02c",
  7824. "#d62728",
  7825. "#9467bd",
  7826. "#8c564b",
  7827. "#e377c2",
  7828. "#7f7f7f",
  7829. "#bcbd22",
  7830. "#17becf"
  7831. ],
  7832. "directed": true,
  7833. "display_legend": false,
  7834. "enable_hover": true,
  7835. "highlight_links": true,
  7836. "hovered_style": {},
  7837. "interactions": {
  7838. "click": "select",
  7839. "hover": "tooltip"
  7840. },
  7841. "labels": [],
  7842. "link_color": {
  7843. "type": "float",
  7844. "values": []
  7845. },
  7846. "link_data": [
  7847. {
  7848. "source": 3,
  7849. "target": 6,
  7850. "value": 1
  7851. },
  7852. {
  7853. "source": 3,
  7854. "target": 6,
  7855. "value": 1
  7856. }
  7857. ],
  7858. "link_distance": 100,
  7859. "link_matrix": {
  7860. "type": "float",
  7861. "values": []
  7862. },
  7863. "link_type": "arc",
  7864. "node_data": [
  7865. "Boba Fett",
  7866. "Yoda",
  7867. "Jabba Desilijic Tiure",
  7868. "Darth Vader",
  7869. "Obi-Wan Kenobi",
  7870. "Beru Whitesun lars",
  7871. "Mon Mothma"
  7872. ],
  7873. "preserve_domain": {},
  7874. "scales": {},
  7875. "scales_metadata": {
  7876. "color": {
  7877. "dimension": "color"
  7878. },
  7879. "link_color": {
  7880. "dimension": "link_color"
  7881. },
  7882. "x": {
  7883. "dimension": "x",
  7884. "orientation": "horizontal"
  7885. },
  7886. "y": {
  7887. "dimension": "y",
  7888. "orientation": "vertical"
  7889. }
  7890. },
  7891. "selected": [],
  7892. "selected_style": {},
  7893. "tooltip": "IPY_MODEL_5c015943e09f4e5a9209581b48a4f15a",
  7894. "tooltip_location": "mouse",
  7895. "tooltip_style": {
  7896. "opacity": 0.9
  7897. },
  7898. "unhovered_style": {},
  7899. "unselected_style": {},
  7900. "visible": true,
  7901. "x": {
  7902. "type": "float",
  7903. "values": []
  7904. },
  7905. "y": {
  7906. "type": "float",
  7907. "values": []
  7908. }
  7909. }
  7910. },
  7911. "4faa44fbb3e84e96a60eacfb39500310": {
  7912. "model_module": "bqplot",
  7913. "model_module_version": "^0.4.1",
  7914. "model_name": "LinearScaleModel",
  7915. "state": {
  7916. "_model_module_version": "^0.4.1",
  7917. "_view_module_version": "^0.4.1",
  7918. "allow_padding": false,
  7919. "max": 1,
  7920. "min": 0,
  7921. "stabilized": false
  7922. }
  7923. },
  7924. "4fafce047c084d71b47debf8fcb32113": {
  7925. "model_module": "bqplot",
  7926. "model_module_version": "^0.4.1",
  7927. "model_name": "LinearScaleModel",
  7928. "state": {
  7929. "_model_module_version": "^0.4.1",
  7930. "_view_module_version": "^0.4.1",
  7931. "allow_padding": false,
  7932. "max": 1,
  7933. "min": 0,
  7934. "stabilized": false
  7935. }
  7936. },
  7937. "51d3a0c37fbd4a6b916e42fb08cc5a36": {
  7938. "model_module": "@jupyter-widgets/base",
  7939. "model_module_version": "1.1.0",
  7940. "model_name": "LayoutModel",
  7941. "state": {}
  7942. },
  7943. "56f8827244054cd9849b89755929db0f": {
  7944. "model_module": "bqplot",
  7945. "model_module_version": "^0.4.1",
  7946. "model_name": "TooltipModel",
  7947. "state": {
  7948. "_model_module_version": "^0.4.1",
  7949. "_view_module_version": "^0.4.1",
  7950. "fields": [
  7951. "label"
  7952. ],
  7953. "layout": "IPY_MODEL_f3d38d272680415386dac22243c3491f"
  7954. }
  7955. },
  7956. "57ea4687a5044c1392b080d15574886f": {
  7957. "model_module": "bqplot",
  7958. "model_module_version": "^0.4.1",
  7959. "model_name": "GraphModel",
  7960. "state": {
  7961. "_model_module": "bqplot",
  7962. "_model_module_version": "^0.4.1",
  7963. "_view_count": null,
  7964. "_view_module": "bqplot",
  7965. "_view_module_version": "^0.4.1",
  7966. "apply_clip": true,
  7967. "charge": -600,
  7968. "color": {
  7969. "type": null,
  7970. "values": null
  7971. },
  7972. "colors": [
  7973. "#1f77b4",
  7974. "#ff7f0e",
  7975. "#2ca02c",
  7976. "#d62728",
  7977. "#9467bd",
  7978. "#8c564b",
  7979. "#e377c2",
  7980. "#7f7f7f",
  7981. "#bcbd22",
  7982. "#17becf"
  7983. ],
  7984. "directed": true,
  7985. "display_legend": false,
  7986. "enable_hover": true,
  7987. "highlight_links": true,
  7988. "hovered_style": {},
  7989. "interactions": {
  7990. "click": "select",
  7991. "hover": "tooltip"
  7992. },
  7993. "labels": [],
  7994. "link_color": {
  7995. "type": "float",
  7996. "values": []
  7997. },
  7998. "link_data": [
  7999. {
  8000. "source": 0,
  8001. "target": 5,
  8002. "value": 1
  8003. },
  8004. {
  8005. "source": 1,
  8006. "target": 5,
  8007. "value": 2
  8008. },
  8009. {
  8010. "source": 2,
  8011. "target": 5,
  8012. "value": 1
  8013. },
  8014. {
  8015. "source": 3,
  8016. "target": 5,
  8017. "value": 2
  8018. },
  8019. {
  8020. "source": 4,
  8021. "target": 5,
  8022. "value": 3
  8023. }
  8024. ],
  8025. "link_distance": 100,
  8026. "link_matrix": {
  8027. "type": "float",
  8028. "values": []
  8029. },
  8030. "link_type": "arc",
  8031. "node_data": [
  8032. "Boba Fett",
  8033. "Yoda",
  8034. "Jabba Desilijic Tiure",
  8035. "Darth Vader",
  8036. "Obi-Wan Kenobi",
  8037. "Beru Whitesun lars",
  8038. "Mon Mothma"
  8039. ],
  8040. "preserve_domain": {},
  8041. "scales": {},
  8042. "scales_metadata": {
  8043. "color": {
  8044. "dimension": "color"
  8045. },
  8046. "link_color": {
  8047. "dimension": "link_color"
  8048. },
  8049. "x": {
  8050. "dimension": "x",
  8051. "orientation": "horizontal"
  8052. },
  8053. "y": {
  8054. "dimension": "y",
  8055. "orientation": "vertical"
  8056. }
  8057. },
  8058. "selected": [],
  8059. "selected_style": {},
  8060. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  8061. "tooltip_location": "mouse",
  8062. "tooltip_style": {
  8063. "opacity": 0.9
  8064. },
  8065. "unhovered_style": {},
  8066. "unselected_style": {},
  8067. "visible": true,
  8068. "x": {
  8069. "type": "float",
  8070. "values": []
  8071. },
  8072. "y": {
  8073. "type": "float",
  8074. "values": []
  8075. }
  8076. }
  8077. },
  8078. "582f7051b0ae477083c73828e6460a60": {
  8079. "model_module": "bqplot",
  8080. "model_module_version": "^0.4.1",
  8081. "model_name": "GraphModel",
  8082. "state": {
  8083. "_model_module": "bqplot",
  8084. "_model_module_version": "^0.4.1",
  8085. "_view_count": null,
  8086. "_view_module": "bqplot",
  8087. "_view_module_version": "^0.4.1",
  8088. "apply_clip": true,
  8089. "charge": -600,
  8090. "color": {
  8091. "type": null,
  8092. "values": null
  8093. },
  8094. "colors": [
  8095. "#1f77b4",
  8096. "#ff7f0e",
  8097. "#2ca02c",
  8098. "#d62728",
  8099. "#9467bd",
  8100. "#8c564b",
  8101. "#e377c2",
  8102. "#7f7f7f",
  8103. "#bcbd22",
  8104. "#17becf"
  8105. ],
  8106. "directed": true,
  8107. "display_legend": false,
  8108. "enable_hover": true,
  8109. "highlight_links": true,
  8110. "hovered_style": {},
  8111. "interactions": {
  8112. "click": "select",
  8113. "hover": "tooltip"
  8114. },
  8115. "labels": [],
  8116. "link_color": {
  8117. "type": "float",
  8118. "values": []
  8119. },
  8120. "link_data": [
  8121. {
  8122. "source": 3,
  8123. "target": 6,
  8124. "value": 1
  8125. }
  8126. ],
  8127. "link_distance": 100,
  8128. "link_matrix": {
  8129. "type": "float",
  8130. "values": []
  8131. },
  8132. "link_type": "arc",
  8133. "node_data": [
  8134. "Boba Fett",
  8135. "Yoda",
  8136. "Jabba Desilijic Tiure",
  8137. "Darth Vader",
  8138. "Obi-Wan Kenobi",
  8139. "Beru Whitesun lars",
  8140. "Mon Mothma"
  8141. ],
  8142. "preserve_domain": {},
  8143. "scales": {},
  8144. "scales_metadata": {
  8145. "color": {
  8146. "dimension": "color"
  8147. },
  8148. "link_color": {
  8149. "dimension": "link_color"
  8150. },
  8151. "x": {
  8152. "dimension": "x",
  8153. "orientation": "horizontal"
  8154. },
  8155. "y": {
  8156. "dimension": "y",
  8157. "orientation": "vertical"
  8158. }
  8159. },
  8160. "selected": [],
  8161. "selected_style": {},
  8162. "tooltip": "IPY_MODEL_197e72274ba74de0bcaa52d9cc67c7f1",
  8163. "tooltip_location": "mouse",
  8164. "tooltip_style": {
  8165. "opacity": 0.9
  8166. },
  8167. "unhovered_style": {},
  8168. "unselected_style": {},
  8169. "visible": true,
  8170. "x": {
  8171. "type": "float",
  8172. "values": []
  8173. },
  8174. "y": {
  8175. "type": "float",
  8176. "values": []
  8177. }
  8178. }
  8179. },
  8180. "5985ccd1311946cab5a9519e18d41290": {
  8181. "model_module": "bqplot",
  8182. "model_module_version": "^0.4.1",
  8183. "model_name": "GraphModel",
  8184. "state": {
  8185. "_model_module": "bqplot",
  8186. "_model_module_version": "^0.4.1",
  8187. "_view_count": null,
  8188. "_view_module": "bqplot",
  8189. "_view_module_version": "^0.4.1",
  8190. "apply_clip": true,
  8191. "charge": -600,
  8192. "color": {
  8193. "type": null,
  8194. "values": null
  8195. },
  8196. "colors": [
  8197. "#1f77b4",
  8198. "#ff7f0e",
  8199. "#2ca02c",
  8200. "#d62728",
  8201. "#9467bd",
  8202. "#8c564b",
  8203. "#e377c2",
  8204. "#7f7f7f",
  8205. "#bcbd22",
  8206. "#17becf"
  8207. ],
  8208. "directed": true,
  8209. "display_legend": false,
  8210. "enable_hover": true,
  8211. "highlight_links": true,
  8212. "hovered_style": {},
  8213. "interactions": {
  8214. "click": "select",
  8215. "hover": "tooltip"
  8216. },
  8217. "labels": [],
  8218. "link_color": {
  8219. "type": "float",
  8220. "values": []
  8221. },
  8222. "link_data": [
  8223. {
  8224. "source": {
  8225. "fixed": 0,
  8226. "index": 0,
  8227. "label": "Boba Fett",
  8228. "label_display": "center",
  8229. "px": 332.4536988332642,
  8230. "py": 228.05344996609975,
  8231. "shape": "circle",
  8232. "shape_attrs": {
  8233. "r": 15
  8234. },
  8235. "value": null,
  8236. "weight": 6,
  8237. "x": 332.4536988332642,
  8238. "y": 228.05344996609975
  8239. },
  8240. "target": {
  8241. "fixed": 0,
  8242. "index": 1,
  8243. "label": "Yoda",
  8244. "label_display": "center",
  8245. "px": 436.06040996758406,
  8246. "py": 257.27697862915534,
  8247. "shape": "circle",
  8248. "shape_attrs": {
  8249. "r": 15
  8250. },
  8251. "value": null,
  8252. "weight": 1,
  8253. "x": 436.06040996758406,
  8254. "y": 257.27697862915534
  8255. },
  8256. "value": 3
  8257. },
  8258. {
  8259. "source": {
  8260. "fixed": 0,
  8261. "index": 0,
  8262. "label": "Boba Fett",
  8263. "label_display": "center",
  8264. "px": 332.4536988332642,
  8265. "py": 228.05344996609975,
  8266. "shape": "circle",
  8267. "shape_attrs": {
  8268. "r": 15
  8269. },
  8270. "value": null,
  8271. "weight": 6,
  8272. "x": 332.4536988332642,
  8273. "y": 228.05344996609975
  8274. },
  8275. "target": {
  8276. "fixed": 0,
  8277. "index": 2,
  8278. "label": "Jabba Desilijic Tiure",
  8279. "label_display": "center",
  8280. "px": 263.9179630658462,
  8281. "py": 312.39517948979505,
  8282. "shape": "circle",
  8283. "shape_attrs": {
  8284. "r": 15
  8285. },
  8286. "value": null,
  8287. "weight": 1,
  8288. "x": 263.9179630658462,
  8289. "y": 312.39517948979505
  8290. },
  8291. "value": 1
  8292. },
  8293. {
  8294. "source": {
  8295. "fixed": 0,
  8296. "index": 0,
  8297. "label": "Boba Fett",
  8298. "label_display": "center",
  8299. "px": 332.4536988332642,
  8300. "py": 228.05344996609975,
  8301. "shape": "circle",
  8302. "shape_attrs": {
  8303. "r": 15
  8304. },
  8305. "value": null,
  8306. "weight": 6,
  8307. "x": 332.4536988332642,
  8308. "y": 228.05344996609975
  8309. },
  8310. "target": {
  8311. "fixed": 0,
  8312. "index": 3,
  8313. "label": "Darth Vader",
  8314. "label_display": "center",
  8315. "px": 354.6220389134774,
  8316. "py": 334.61823490477127,
  8317. "shape": "circle",
  8318. "shape_attrs": {
  8319. "r": 15
  8320. },
  8321. "value": null,
  8322. "weight": 1,
  8323. "x": 354.6220389134774,
  8324. "y": 334.61823490477127
  8325. },
  8326. "value": 2
  8327. },
  8328. {
  8329. "source": {
  8330. "fixed": 0,
  8331. "index": 0,
  8332. "label": "Boba Fett",
  8333. "label_display": "center",
  8334. "px": 332.4536988332642,
  8335. "py": 228.05344996609975,
  8336. "shape": "circle",
  8337. "shape_attrs": {
  8338. "r": 15
  8339. },
  8340. "value": null,
  8341. "weight": 6,
  8342. "x": 332.4536988332642,
  8343. "y": 228.05344996609975
  8344. },
  8345. "target": {
  8346. "fixed": 0,
  8347. "index": 4,
  8348. "label": "Obi-Wan Kenobi",
  8349. "label_display": "center",
  8350. "px": 397.5753369215301,
  8351. "py": 142.1910979596746,
  8352. "shape": "circle",
  8353. "shape_attrs": {
  8354. "r": 15
  8355. },
  8356. "value": null,
  8357. "weight": 1,
  8358. "x": 397.5753369215301,
  8359. "y": 142.1910979596746
  8360. },
  8361. "value": 3
  8362. },
  8363. {
  8364. "source": {
  8365. "fixed": 0,
  8366. "index": 0,
  8367. "label": "Boba Fett",
  8368. "label_display": "center",
  8369. "px": 332.4536988332642,
  8370. "py": 228.05344996609975,
  8371. "shape": "circle",
  8372. "shape_attrs": {
  8373. "r": 15
  8374. },
  8375. "value": null,
  8376. "weight": 6,
  8377. "x": 332.4536988332642,
  8378. "y": 228.05344996609975
  8379. },
  8380. "target": {
  8381. "index": 5,
  8382. "label": "Beru Whitesun lars",
  8383. "label_display": "center",
  8384. "px": 279.340049398132,
  8385. "py": 134.2584935952346,
  8386. "shape": "circle",
  8387. "shape_attrs": {
  8388. "r": 15
  8389. },
  8390. "value": null,
  8391. "weight": 1,
  8392. "x": 279.29782936022644,
  8393. "y": 134.17593984428152
  8394. },
  8395. "value": 1
  8396. },
  8397. {
  8398. "source": {
  8399. "fixed": 0,
  8400. "index": 0,
  8401. "label": "Boba Fett",
  8402. "label_display": "center",
  8403. "px": 332.4536988332642,
  8404. "py": 228.05344996609975,
  8405. "shape": "circle",
  8406. "shape_attrs": {
  8407. "r": 15
  8408. },
  8409. "value": null,
  8410. "weight": 6,
  8411. "x": 332.4536988332642,
  8412. "y": 228.05344996609975
  8413. },
  8414. "target": {
  8415. "fixed": 0,
  8416. "index": 6,
  8417. "label": "Mon Mothma",
  8418. "label_display": "center",
  8419. "px": 223.38061908840282,
  8420. "py": 228.93643003666432,
  8421. "shape": "circle",
  8422. "shape_attrs": {
  8423. "r": 15
  8424. },
  8425. "value": null,
  8426. "weight": 1,
  8427. "x": 223.38061908840282,
  8428. "y": 228.93643003666432
  8429. },
  8430. "value": 1
  8431. }
  8432. ],
  8433. "link_distance": 100,
  8434. "link_matrix": {
  8435. "type": "float",
  8436. "values": []
  8437. },
  8438. "link_type": "arc",
  8439. "node_data": [
  8440. "Boba Fett",
  8441. "Yoda",
  8442. "Jabba Desilijic Tiure",
  8443. "Darth Vader",
  8444. "Obi-Wan Kenobi",
  8445. "Beru Whitesun lars",
  8446. "Mon Mothma"
  8447. ],
  8448. "preserve_domain": {},
  8449. "scales": {},
  8450. "scales_metadata": {
  8451. "color": {
  8452. "dimension": "color"
  8453. },
  8454. "link_color": {
  8455. "dimension": "link_color"
  8456. },
  8457. "x": {
  8458. "dimension": "x",
  8459. "orientation": "horizontal"
  8460. },
  8461. "y": {
  8462. "dimension": "y",
  8463. "orientation": "vertical"
  8464. }
  8465. },
  8466. "selected": [
  8467. 0
  8468. ],
  8469. "selected_style": {},
  8470. "tooltip": "IPY_MODEL_a8a3f98b02094e57b9c9e3daea4bf22d",
  8471. "tooltip_location": "mouse",
  8472. "tooltip_style": {
  8473. "opacity": 0.9
  8474. },
  8475. "unhovered_style": {},
  8476. "unselected_style": {},
  8477. "visible": true,
  8478. "x": {
  8479. "type": "float",
  8480. "values": []
  8481. },
  8482. "y": {
  8483. "type": "float",
  8484. "values": []
  8485. }
  8486. }
  8487. },
  8488. "59b25c811f7f413e94d72fd3c2752226": {
  8489. "model_module": "bqplot",
  8490. "model_module_version": "^0.4.1",
  8491. "model_name": "FigureModel",
  8492. "state": {
  8493. "_dom_classes": [],
  8494. "_model_module_version": "^0.4.1",
  8495. "_view_module_version": "^0.4.1",
  8496. "layout": "IPY_MODEL_59c5f573da1246d4bd408687dbe004ff",
  8497. "marks": [
  8498. "IPY_MODEL_83357162276646a4b45b3fc12028044f"
  8499. ],
  8500. "scale_x": "IPY_MODEL_0e950c9ba87940fda4e9b89ffddbf95e",
  8501. "scale_y": "IPY_MODEL_45be148b9f734d2eb8abd18edaedb6f9"
  8502. }
  8503. },
  8504. "59c5f573da1246d4bd408687dbe004ff": {
  8505. "model_module": "@jupyter-widgets/base",
  8506. "model_module_version": "1.1.0",
  8507. "model_name": "LayoutModel",
  8508. "state": {
  8509. "min_width": "125px"
  8510. }
  8511. },
  8512. "59fc3be77a544a9dbc317cbe2f38797b": {
  8513. "model_module": "bqplot",
  8514. "model_module_version": "^0.4.1",
  8515. "model_name": "TooltipModel",
  8516. "state": {
  8517. "_model_module_version": "^0.4.1",
  8518. "_view_module_version": "^0.4.1",
  8519. "fields": [
  8520. "label"
  8521. ],
  8522. "layout": "IPY_MODEL_861f15f2e4bd424495b361bd8ebb0017"
  8523. }
  8524. },
  8525. "5b57a04219aa4780b9927e4e0693c1b3": {
  8526. "model_module": "@jupyter-widgets/base",
  8527. "model_module_version": "1.1.0",
  8528. "model_name": "LayoutModel",
  8529. "state": {
  8530. "min_width": "125px"
  8531. }
  8532. },
  8533. "5b650a5ea131406495fab280a7bac7de": {
  8534. "model_module": "bqplot",
  8535. "model_module_version": "^0.4.1",
  8536. "model_name": "GraphModel",
  8537. "state": {
  8538. "_model_module": "bqplot",
  8539. "_model_module_version": "^0.4.1",
  8540. "_view_count": null,
  8541. "_view_module": "bqplot",
  8542. "_view_module_version": "^0.4.1",
  8543. "apply_clip": true,
  8544. "charge": -600,
  8545. "color": {
  8546. "type": null,
  8547. "values": null
  8548. },
  8549. "colors": [
  8550. "#1f77b4",
  8551. "#ff7f0e",
  8552. "#2ca02c",
  8553. "#d62728",
  8554. "#9467bd",
  8555. "#8c564b",
  8556. "#e377c2",
  8557. "#7f7f7f",
  8558. "#bcbd22",
  8559. "#17becf"
  8560. ],
  8561. "directed": true,
  8562. "display_legend": false,
  8563. "enable_hover": true,
  8564. "highlight_links": true,
  8565. "hovered_style": {},
  8566. "interactions": {
  8567. "click": "select",
  8568. "hover": "tooltip"
  8569. },
  8570. "labels": [],
  8571. "link_color": {
  8572. "type": "float",
  8573. "values": []
  8574. },
  8575. "link_data": [
  8576. {
  8577. "source": 0,
  8578. "target": 5,
  8579. "value": 1
  8580. },
  8581. {
  8582. "source": 1,
  8583. "target": 5,
  8584. "value": 2
  8585. },
  8586. {
  8587. "source": 2,
  8588. "target": 5,
  8589. "value": 1
  8590. },
  8591. {
  8592. "source": 3,
  8593. "target": 5,
  8594. "value": 2
  8595. },
  8596. {
  8597. "source": 4,
  8598. "target": 5,
  8599. "value": 3
  8600. }
  8601. ],
  8602. "link_distance": 100,
  8603. "link_matrix": {
  8604. "type": "float",
  8605. "values": []
  8606. },
  8607. "link_type": "arc",
  8608. "node_data": [
  8609. "Boba Fett",
  8610. "Yoda",
  8611. "Jabba Desilijic Tiure",
  8612. "Darth Vader",
  8613. "Obi-Wan Kenobi",
  8614. "Beru Whitesun lars",
  8615. "Mon Mothma"
  8616. ],
  8617. "preserve_domain": {},
  8618. "scales": {},
  8619. "scales_metadata": {
  8620. "color": {
  8621. "dimension": "color"
  8622. },
  8623. "link_color": {
  8624. "dimension": "link_color"
  8625. },
  8626. "x": {
  8627. "dimension": "x",
  8628. "orientation": "horizontal"
  8629. },
  8630. "y": {
  8631. "dimension": "y",
  8632. "orientation": "vertical"
  8633. }
  8634. },
  8635. "selected": [],
  8636. "selected_style": {},
  8637. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  8638. "tooltip_location": "mouse",
  8639. "tooltip_style": {
  8640. "opacity": 0.9
  8641. },
  8642. "unhovered_style": {},
  8643. "unselected_style": {},
  8644. "visible": true,
  8645. "x": {
  8646. "type": "float",
  8647. "values": []
  8648. },
  8649. "y": {
  8650. "type": "float",
  8651. "values": []
  8652. }
  8653. }
  8654. },
  8655. "5bfc3c15c3574f9cbfd960bfd272fdfc": {
  8656. "model_module": "bqplot",
  8657. "model_module_version": "^0.4.1",
  8658. "model_name": "GraphModel",
  8659. "state": {
  8660. "_model_module": "bqplot",
  8661. "_model_module_version": "^0.4.1",
  8662. "_view_count": null,
  8663. "_view_module": "bqplot",
  8664. "_view_module_version": "^0.4.1",
  8665. "apply_clip": true,
  8666. "charge": -600,
  8667. "color": {
  8668. "type": null,
  8669. "values": null
  8670. },
  8671. "colors": [
  8672. "#1f77b4",
  8673. "#ff7f0e",
  8674. "#2ca02c",
  8675. "#d62728",
  8676. "#9467bd",
  8677. "#8c564b",
  8678. "#e377c2",
  8679. "#7f7f7f",
  8680. "#bcbd22",
  8681. "#17becf"
  8682. ],
  8683. "directed": true,
  8684. "display_legend": false,
  8685. "enable_hover": true,
  8686. "highlight_links": true,
  8687. "hovered_style": {},
  8688. "interactions": {
  8689. "click": "select",
  8690. "hover": "tooltip"
  8691. },
  8692. "labels": [],
  8693. "link_color": {
  8694. "type": "float",
  8695. "values": []
  8696. },
  8697. "link_data": [
  8698. {
  8699. "source": 3,
  8700. "target": 6,
  8701. "value": 1
  8702. }
  8703. ],
  8704. "link_distance": 100,
  8705. "link_matrix": {
  8706. "type": "float",
  8707. "values": []
  8708. },
  8709. "link_type": "arc",
  8710. "node_data": [
  8711. "Boba Fett",
  8712. "Yoda",
  8713. "Jabba Desilijic Tiure",
  8714. "Darth Vader",
  8715. "Obi-Wan Kenobi",
  8716. "Beru Whitesun lars",
  8717. "Mon Mothma"
  8718. ],
  8719. "preserve_domain": {},
  8720. "scales": {},
  8721. "scales_metadata": {
  8722. "color": {
  8723. "dimension": "color"
  8724. },
  8725. "link_color": {
  8726. "dimension": "link_color"
  8727. },
  8728. "x": {
  8729. "dimension": "x",
  8730. "orientation": "horizontal"
  8731. },
  8732. "y": {
  8733. "dimension": "y",
  8734. "orientation": "vertical"
  8735. }
  8736. },
  8737. "selected": [],
  8738. "selected_style": {},
  8739. "tooltip": "IPY_MODEL_197e72274ba74de0bcaa52d9cc67c7f1",
  8740. "tooltip_location": "mouse",
  8741. "tooltip_style": {
  8742. "opacity": 0.9
  8743. },
  8744. "unhovered_style": {},
  8745. "unselected_style": {},
  8746. "visible": true,
  8747. "x": {
  8748. "type": "float",
  8749. "values": []
  8750. },
  8751. "y": {
  8752. "type": "float",
  8753. "values": []
  8754. }
  8755. }
  8756. },
  8757. "5c015943e09f4e5a9209581b48a4f15a": {
  8758. "model_module": "bqplot",
  8759. "model_module_version": "^0.4.1",
  8760. "model_name": "TooltipModel",
  8761. "state": {
  8762. "_model_module_version": "^0.4.1",
  8763. "_view_module_version": "^0.4.1",
  8764. "fields": [
  8765. "label"
  8766. ],
  8767. "layout": "IPY_MODEL_dfd80360f1e54ef983d3d70becb248ee"
  8768. }
  8769. },
  8770. "5c83e0201cca45849ed65f8415259275": {
  8771. "model_module": "bqplot",
  8772. "model_module_version": "^0.4.1",
  8773. "model_name": "GraphModel",
  8774. "state": {
  8775. "_model_module": "bqplot",
  8776. "_model_module_version": "^0.4.1",
  8777. "_view_count": null,
  8778. "_view_module": "bqplot",
  8779. "_view_module_version": "^0.4.1",
  8780. "apply_clip": true,
  8781. "charge": -600,
  8782. "color": {
  8783. "type": null,
  8784. "values": null
  8785. },
  8786. "colors": [
  8787. "#1f77b4",
  8788. "#ff7f0e",
  8789. "#2ca02c",
  8790. "#d62728",
  8791. "#9467bd",
  8792. "#8c564b",
  8793. "#e377c2",
  8794. "#7f7f7f",
  8795. "#bcbd22",
  8796. "#17becf"
  8797. ],
  8798. "directed": true,
  8799. "display_legend": false,
  8800. "enable_hover": true,
  8801. "highlight_links": true,
  8802. "hovered_style": {},
  8803. "interactions": {
  8804. "click": "select",
  8805. "hover": "tooltip"
  8806. },
  8807. "labels": [],
  8808. "link_color": {
  8809. "type": "float",
  8810. "values": []
  8811. },
  8812. "link_data": [
  8813. {
  8814. "source": 0,
  8815. "target": 1,
  8816. "value": 3
  8817. },
  8818. {
  8819. "source": 1,
  8820. "target": 2,
  8821. "value": 2
  8822. },
  8823. {
  8824. "source": 1,
  8825. "target": 3,
  8826. "value": 3
  8827. },
  8828. {
  8829. "source": 1,
  8830. "target": 4,
  8831. "value": 5
  8832. },
  8833. {
  8834. "source": 1,
  8835. "target": 5,
  8836. "value": 2
  8837. },
  8838. {
  8839. "source": 1,
  8840. "target": 6,
  8841. "value": 1
  8842. }
  8843. ],
  8844. "link_distance": 100,
  8845. "link_matrix": {
  8846. "type": "float",
  8847. "values": []
  8848. },
  8849. "link_type": "arc",
  8850. "node_data": [
  8851. "Boba Fett",
  8852. "Yoda",
  8853. "Jabba Desilijic Tiure",
  8854. "Darth Vader",
  8855. "Obi-Wan Kenobi",
  8856. "Beru Whitesun lars",
  8857. "Mon Mothma"
  8858. ],
  8859. "preserve_domain": {},
  8860. "scales": {},
  8861. "scales_metadata": {
  8862. "color": {
  8863. "dimension": "color"
  8864. },
  8865. "link_color": {
  8866. "dimension": "link_color"
  8867. },
  8868. "x": {
  8869. "dimension": "x",
  8870. "orientation": "horizontal"
  8871. },
  8872. "y": {
  8873. "dimension": "y",
  8874. "orientation": "vertical"
  8875. }
  8876. },
  8877. "selected": [],
  8878. "selected_style": {},
  8879. "tooltip": "IPY_MODEL_62690498382749429ced35ed52d01815",
  8880. "tooltip_location": "mouse",
  8881. "tooltip_style": {
  8882. "opacity": 0.9
  8883. },
  8884. "unhovered_style": {},
  8885. "unselected_style": {},
  8886. "visible": true,
  8887. "x": {
  8888. "type": "float",
  8889. "values": []
  8890. },
  8891. "y": {
  8892. "type": "float",
  8893. "values": []
  8894. }
  8895. }
  8896. },
  8897. "5e214e7ebe87477fb6795a4d779c4e45": {
  8898. "model_module": "bqplot",
  8899. "model_module_version": "^0.4.1",
  8900. "model_name": "FigureModel",
  8901. "state": {
  8902. "_dom_classes": [],
  8903. "_model_module_version": "^0.4.1",
  8904. "_view_module_version": "^0.4.1",
  8905. "layout": "IPY_MODEL_2578718ee61b467193453f542c95371f",
  8906. "marks": [
  8907. "IPY_MODEL_2a4a6cc4f95a4bdeb3d75bc60ed05a22"
  8908. ],
  8909. "scale_x": "IPY_MODEL_33a4b92c256f422f94387f5f3c85b114",
  8910. "scale_y": "IPY_MODEL_305bdac221a840a1bf72d7fcfd1b9bd6"
  8911. }
  8912. },
  8913. "60ac2f0a25d448d1a70ca60294d42aec": {
  8914. "model_module": "bqplot",
  8915. "model_module_version": "^0.4.1",
  8916. "model_name": "LinearScaleModel",
  8917. "state": {
  8918. "_model_module_version": "^0.4.1",
  8919. "_view_module_version": "^0.4.1",
  8920. "allow_padding": false,
  8921. "max": 1,
  8922. "min": 0,
  8923. "stabilized": false
  8924. }
  8925. },
  8926. "619133120e91400aa726c9f7985bdcb5": {
  8927. "model_module": "bqplot",
  8928. "model_module_version": "^0.4.1",
  8929. "model_name": "GraphModel",
  8930. "state": {
  8931. "_model_module": "bqplot",
  8932. "_model_module_version": "^0.4.1",
  8933. "_view_count": null,
  8934. "_view_module": "bqplot",
  8935. "_view_module_version": "^0.4.1",
  8936. "apply_clip": true,
  8937. "charge": -600,
  8938. "color": {
  8939. "type": null,
  8940. "values": null
  8941. },
  8942. "colors": [
  8943. "#1f77b4",
  8944. "#ff7f0e",
  8945. "#2ca02c",
  8946. "#d62728",
  8947. "#9467bd",
  8948. "#8c564b",
  8949. "#e377c2",
  8950. "#7f7f7f",
  8951. "#bcbd22",
  8952. "#17becf"
  8953. ],
  8954. "directed": true,
  8955. "display_legend": false,
  8956. "enable_hover": true,
  8957. "highlight_links": true,
  8958. "hovered_style": {},
  8959. "interactions": {
  8960. "click": "select",
  8961. "hover": "tooltip"
  8962. },
  8963. "labels": [],
  8964. "link_color": {
  8965. "type": "float",
  8966. "values": []
  8967. },
  8968. "link_data": [
  8969. {
  8970. "source": 3,
  8971. "target": 6,
  8972. "value": 1
  8973. }
  8974. ],
  8975. "link_distance": 100,
  8976. "link_matrix": {
  8977. "type": "float",
  8978. "values": []
  8979. },
  8980. "link_type": "arc",
  8981. "node_data": [
  8982. "Boba Fett",
  8983. "Yoda",
  8984. "Jabba Desilijic Tiure",
  8985. "Darth Vader",
  8986. "Obi-Wan Kenobi",
  8987. "Beru Whitesun lars",
  8988. "Mon Mothma"
  8989. ],
  8990. "preserve_domain": {},
  8991. "scales": {},
  8992. "scales_metadata": {
  8993. "color": {
  8994. "dimension": "color"
  8995. },
  8996. "link_color": {
  8997. "dimension": "link_color"
  8998. },
  8999. "x": {
  9000. "dimension": "x",
  9001. "orientation": "horizontal"
  9002. },
  9003. "y": {
  9004. "dimension": "y",
  9005. "orientation": "vertical"
  9006. }
  9007. },
  9008. "selected": [],
  9009. "selected_style": {},
  9010. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  9011. "tooltip_location": "mouse",
  9012. "tooltip_style": {
  9013. "opacity": 0.9
  9014. },
  9015. "unhovered_style": {},
  9016. "unselected_style": {},
  9017. "visible": true,
  9018. "x": {
  9019. "type": "float",
  9020. "values": []
  9021. },
  9022. "y": {
  9023. "type": "float",
  9024. "values": []
  9025. }
  9026. }
  9027. },
  9028. "61bd572a691d447d95a4d7a373ced96e": {
  9029. "model_module": "@jupyter-widgets/base",
  9030. "model_module_version": "1.1.0",
  9031. "model_name": "LayoutModel",
  9032. "state": {
  9033. "min_width": "125px"
  9034. }
  9035. },
  9036. "62690498382749429ced35ed52d01815": {
  9037. "model_module": "bqplot",
  9038. "model_module_version": "^0.4.1",
  9039. "model_name": "TooltipModel",
  9040. "state": {
  9041. "_model_module_version": "^0.4.1",
  9042. "_view_module_version": "^0.4.1",
  9043. "fields": [
  9044. "label"
  9045. ],
  9046. "layout": "IPY_MODEL_ce42dab1394e44c184780ca5616e3a8f"
  9047. }
  9048. },
  9049. "64122d168f9e40289fea26d3a4a4366a": {
  9050. "model_module": "bqplot",
  9051. "model_module_version": "^0.4.1",
  9052. "model_name": "GraphModel",
  9053. "state": {
  9054. "_model_module": "bqplot",
  9055. "_model_module_version": "^0.4.1",
  9056. "_view_count": null,
  9057. "_view_module": "bqplot",
  9058. "_view_module_version": "^0.4.1",
  9059. "apply_clip": true,
  9060. "charge": -600,
  9061. "color": {
  9062. "type": null,
  9063. "values": null
  9064. },
  9065. "colors": [
  9066. "#1f77b4",
  9067. "#ff7f0e",
  9068. "#2ca02c",
  9069. "#d62728",
  9070. "#9467bd",
  9071. "#8c564b",
  9072. "#e377c2",
  9073. "#7f7f7f",
  9074. "#bcbd22",
  9075. "#17becf"
  9076. ],
  9077. "directed": true,
  9078. "display_legend": false,
  9079. "enable_hover": true,
  9080. "highlight_links": true,
  9081. "hovered_style": {},
  9082. "interactions": {
  9083. "click": "select",
  9084. "hover": "tooltip"
  9085. },
  9086. "labels": [],
  9087. "link_color": {
  9088. "type": "float",
  9089. "values": []
  9090. },
  9091. "link_data": [
  9092. {
  9093. "source": {
  9094. "index": 0,
  9095. "label": "Boba Fett",
  9096. "label_display": "center",
  9097. "px": 387.53334077384943,
  9098. "py": 121.49021057761159,
  9099. "shape": "circle",
  9100. "shape_attrs": {
  9101. "r": 15
  9102. },
  9103. "value": null,
  9104. "weight": 1,
  9105. "x": 387.5780497794369,
  9106. "y": 121.44128731753867
  9107. },
  9108. "target": {
  9109. "index": 1,
  9110. "label": "Yoda",
  9111. "label_display": "center",
  9112. "px": 344.48920686459576,
  9113. "py": 218.7190536298369,
  9114. "shape": "circle",
  9115. "shape_attrs": {
  9116. "r": 15
  9117. },
  9118. "value": null,
  9119. "weight": 6,
  9120. "x": 344.4540727401301,
  9121. "y": 218.715202858804
  9122. },
  9123. "value": 3
  9124. },
  9125. {
  9126. "source": {
  9127. "index": 1,
  9128. "label": "Yoda",
  9129. "label_display": "center",
  9130. "px": 344.48920686459576,
  9131. "py": 218.7190536298369,
  9132. "shape": "circle",
  9133. "shape_attrs": {
  9134. "r": 15
  9135. },
  9136. "value": null,
  9137. "weight": 6,
  9138. "x": 344.4540727401301,
  9139. "y": 218.715202858804
  9140. },
  9141. "target": {
  9142. "fixed": 0,
  9143. "index": 2,
  9144. "label": "Jabba Desilijic Tiure",
  9145. "label_display": "center",
  9146. "px": 373.6734761688998,
  9147. "py": 323.37897068105144,
  9148. "shape": "circle",
  9149. "shape_attrs": {
  9150. "r": 15
  9151. },
  9152. "value": null,
  9153. "weight": 1,
  9154. "x": 373.6989545088444,
  9155. "y": 323.4589338843907
  9156. },
  9157. "value": 2
  9158. },
  9159. {
  9160. "source": {
  9161. "index": 1,
  9162. "label": "Yoda",
  9163. "label_display": "center",
  9164. "px": 344.48920686459576,
  9165. "py": 218.7190536298369,
  9166. "shape": "circle",
  9167. "shape_attrs": {
  9168. "r": 15
  9169. },
  9170. "value": null,
  9171. "weight": 6,
  9172. "x": 344.4540727401301,
  9173. "y": 218.715202858804
  9174. },
  9175. "target": {
  9176. "index": 3,
  9177. "label": "Darth Vader",
  9178. "label_display": "center",
  9179. "px": 448.18092624161346,
  9180. "py": 245.81213748480627,
  9181. "shape": "circle",
  9182. "shape_attrs": {
  9183. "r": 15
  9184. },
  9185. "value": null,
  9186. "weight": 1,
  9187. "x": 448.2362104801094,
  9188. "y": 245.788857186899
  9189. },
  9190. "value": 3
  9191. },
  9192. {
  9193. "source": {
  9194. "index": 1,
  9195. "label": "Yoda",
  9196. "label_display": "center",
  9197. "px": 344.48920686459576,
  9198. "py": 218.7190536298369,
  9199. "shape": "circle",
  9200. "shape_attrs": {
  9201. "r": 15
  9202. },
  9203. "value": null,
  9204. "weight": 6,
  9205. "x": 344.4540727401301,
  9206. "y": 218.715202858804
  9207. },
  9208. "target": {
  9209. "index": 4,
  9210. "label": "Obi-Wan Kenobi",
  9211. "label_display": "center",
  9212. "px": 285.9347468924872,
  9213. "py": 311.261921936359,
  9214. "shape": "circle",
  9215. "shape_attrs": {
  9216. "r": 15
  9217. },
  9218. "value": null,
  9219. "weight": 1,
  9220. "x": 285.8660959331536,
  9221. "y": 311.35784483884004
  9222. },
  9223. "value": 5
  9224. },
  9225. {
  9226. "source": {
  9227. "index": 1,
  9228. "label": "Yoda",
  9229. "label_display": "center",
  9230. "px": 344.48920686459576,
  9231. "py": 218.7190536298369,
  9232. "shape": "circle",
  9233. "shape_attrs": {
  9234. "r": 15
  9235. },
  9236. "value": null,
  9237. "weight": 6,
  9238. "x": 344.4540727401301,
  9239. "y": 218.715202858804
  9240. },
  9241. "target": {
  9242. "index": 5,
  9243. "label": "Beru Whitesun lars",
  9244. "label_display": "center",
  9245. "px": 236.7748071731934,
  9246. "py": 240.2166117739341,
  9247. "shape": "circle",
  9248. "shape_attrs": {
  9249. "r": 15
  9250. },
  9251. "value": null,
  9252. "weight": 1,
  9253. "x": 236.64327530458027,
  9254. "y": 240.24020991538515
  9255. },
  9256. "value": 2
  9257. },
  9258. {
  9259. "source": {
  9260. "index": 1,
  9261. "label": "Yoda",
  9262. "label_display": "center",
  9263. "px": 344.48920686459576,
  9264. "py": 218.7190536298369,
  9265. "shape": "circle",
  9266. "shape_attrs": {
  9267. "r": 15
  9268. },
  9269. "value": null,
  9270. "weight": 6,
  9271. "x": 344.4540727401301,
  9272. "y": 218.715202858804
  9273. },
  9274. "target": {
  9275. "index": 6,
  9276. "label": "Mon Mothma",
  9277. "label_display": "center",
  9278. "px": 266.6119856658948,
  9279. "py": 143.06765325458824,
  9280. "shape": "circle",
  9281. "shape_attrs": {
  9282. "r": 15
  9283. },
  9284. "value": null,
  9285. "weight": 1,
  9286. "x": 266.51089897001214,
  9287. "y": 143.00269113565133
  9288. },
  9289. "value": 1
  9290. }
  9291. ],
  9292. "link_distance": 100,
  9293. "link_matrix": {
  9294. "type": "float",
  9295. "values": []
  9296. },
  9297. "link_type": "arc",
  9298. "node_data": [
  9299. "Boba Fett",
  9300. "Yoda",
  9301. "Jabba Desilijic Tiure",
  9302. "Darth Vader",
  9303. "Obi-Wan Kenobi",
  9304. "Beru Whitesun lars",
  9305. "Mon Mothma"
  9306. ],
  9307. "preserve_domain": {},
  9308. "scales": {},
  9309. "scales_metadata": {
  9310. "color": {
  9311. "dimension": "color"
  9312. },
  9313. "link_color": {
  9314. "dimension": "link_color"
  9315. },
  9316. "x": {
  9317. "dimension": "x",
  9318. "orientation": "horizontal"
  9319. },
  9320. "y": {
  9321. "dimension": "y",
  9322. "orientation": "vertical"
  9323. }
  9324. },
  9325. "selected": [
  9326. 1
  9327. ],
  9328. "selected_style": {},
  9329. "tooltip": "IPY_MODEL_62690498382749429ced35ed52d01815",
  9330. "tooltip_location": "mouse",
  9331. "tooltip_style": {
  9332. "opacity": 0.9
  9333. },
  9334. "unhovered_style": {},
  9335. "unselected_style": {},
  9336. "visible": true,
  9337. "x": {
  9338. "type": "float",
  9339. "values": []
  9340. },
  9341. "y": {
  9342. "type": "float",
  9343. "values": []
  9344. }
  9345. }
  9346. },
  9347. "64672f147b2244a88f0c9a6981e92ac5": {
  9348. "model_module": "bqplot",
  9349. "model_module_version": "^0.4.1",
  9350. "model_name": "LinearScaleModel",
  9351. "state": {
  9352. "_model_module_version": "^0.4.1",
  9353. "_view_module_version": "^0.4.1",
  9354. "allow_padding": false,
  9355. "max": 1,
  9356. "min": 0,
  9357. "stabilized": false
  9358. }
  9359. },
  9360. "65683929ab6d4d168894ef09adb54f9e": {
  9361. "model_module": "bqplot",
  9362. "model_module_version": "^0.4.1",
  9363. "model_name": "GraphModel",
  9364. "state": {
  9365. "_model_module": "bqplot",
  9366. "_model_module_version": "^0.4.1",
  9367. "_view_count": null,
  9368. "_view_module": "bqplot",
  9369. "_view_module_version": "^0.4.1",
  9370. "apply_clip": true,
  9371. "charge": -600,
  9372. "color": {
  9373. "type": null,
  9374. "values": null
  9375. },
  9376. "colors": [
  9377. "#1f77b4",
  9378. "#ff7f0e",
  9379. "#2ca02c",
  9380. "#d62728",
  9381. "#9467bd",
  9382. "#8c564b",
  9383. "#e377c2",
  9384. "#7f7f7f",
  9385. "#bcbd22",
  9386. "#17becf"
  9387. ],
  9388. "directed": true,
  9389. "display_legend": false,
  9390. "enable_hover": true,
  9391. "highlight_links": true,
  9392. "hovered_style": {},
  9393. "interactions": {
  9394. "click": "select",
  9395. "hover": "tooltip"
  9396. },
  9397. "labels": [],
  9398. "link_color": {
  9399. "type": "float",
  9400. "values": []
  9401. },
  9402. "link_data": [
  9403. {
  9404. "source": 3,
  9405. "target": 6,
  9406. "value": 1
  9407. }
  9408. ],
  9409. "link_distance": 100,
  9410. "link_matrix": {
  9411. "type": "float",
  9412. "values": []
  9413. },
  9414. "link_type": "arc",
  9415. "node_data": [
  9416. "Boba Fett",
  9417. "Yoda",
  9418. "Jabba Desilijic Tiure",
  9419. "Darth Vader",
  9420. "Obi-Wan Kenobi",
  9421. "Beru Whitesun lars",
  9422. "Mon Mothma"
  9423. ],
  9424. "preserve_domain": {},
  9425. "scales": {},
  9426. "scales_metadata": {
  9427. "color": {
  9428. "dimension": "color"
  9429. },
  9430. "link_color": {
  9431. "dimension": "link_color"
  9432. },
  9433. "x": {
  9434. "dimension": "x",
  9435. "orientation": "horizontal"
  9436. },
  9437. "y": {
  9438. "dimension": "y",
  9439. "orientation": "vertical"
  9440. }
  9441. },
  9442. "selected": [],
  9443. "selected_style": {},
  9444. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  9445. "tooltip_location": "mouse",
  9446. "tooltip_style": {
  9447. "opacity": 0.9
  9448. },
  9449. "unhovered_style": {},
  9450. "unselected_style": {},
  9451. "visible": true,
  9452. "x": {
  9453. "type": "float",
  9454. "values": []
  9455. },
  9456. "y": {
  9457. "type": "float",
  9458. "values": []
  9459. }
  9460. }
  9461. },
  9462. "6645f39f0deb4496ab5efede284a8c76": {
  9463. "model_module": "bqplot",
  9464. "model_module_version": "^0.4.1",
  9465. "model_name": "TooltipModel",
  9466. "state": {
  9467. "_model_module_version": "^0.4.1",
  9468. "_view_module_version": "^0.4.1",
  9469. "fields": [
  9470. "label"
  9471. ],
  9472. "layout": "IPY_MODEL_39eeb4e07ed3484f8c5ebf4b4aaa7ab8"
  9473. }
  9474. },
  9475. "66ffece0a929455a9c9f71fe286e660e": {
  9476. "model_module": "bqplot",
  9477. "model_module_version": "^0.4.1",
  9478. "model_name": "FigureModel",
  9479. "state": {
  9480. "_dom_classes": [],
  9481. "_model_module_version": "^0.4.1",
  9482. "_view_module_version": "^0.4.1",
  9483. "layout": "IPY_MODEL_df1e08c43e62428f8856cc3e2a0bd20c",
  9484. "marks": [
  9485. "IPY_MODEL_5985ccd1311946cab5a9519e18d41290"
  9486. ],
  9487. "scale_x": "IPY_MODEL_80b0f0cbd76749ce8f4aa1d9d2dc6ed4",
  9488. "scale_y": "IPY_MODEL_4faa44fbb3e84e96a60eacfb39500310"
  9489. }
  9490. },
  9491. "6819791579944c3a93a305a50c4514a3": {
  9492. "model_module": "@jupyter-widgets/base",
  9493. "model_module_version": "1.1.0",
  9494. "model_name": "LayoutModel",
  9495. "state": {}
  9496. },
  9497. "69c8d2edebd44d579ca490d176e8fa31": {
  9498. "model_module": "bqplot",
  9499. "model_module_version": "^0.4.1",
  9500. "model_name": "GraphModel",
  9501. "state": {
  9502. "_model_module": "bqplot",
  9503. "_model_module_version": "^0.4.1",
  9504. "_view_count": null,
  9505. "_view_module": "bqplot",
  9506. "_view_module_version": "^0.4.1",
  9507. "apply_clip": true,
  9508. "charge": -600,
  9509. "color": {
  9510. "type": null,
  9511. "values": null
  9512. },
  9513. "colors": [
  9514. "#1f77b4",
  9515. "#ff7f0e",
  9516. "#2ca02c",
  9517. "#d62728",
  9518. "#9467bd",
  9519. "#8c564b",
  9520. "#e377c2",
  9521. "#7f7f7f",
  9522. "#bcbd22",
  9523. "#17becf"
  9524. ],
  9525. "directed": true,
  9526. "display_legend": false,
  9527. "enable_hover": true,
  9528. "highlight_links": true,
  9529. "hovered_style": {},
  9530. "interactions": {
  9531. "click": "select",
  9532. "hover": "tooltip"
  9533. },
  9534. "labels": [],
  9535. "link_color": {
  9536. "type": "float",
  9537. "values": []
  9538. },
  9539. "link_data": [
  9540. {
  9541. "source": 0,
  9542. "target": 5,
  9543. "value": 1
  9544. },
  9545. {
  9546. "source": 1,
  9547. "target": 5,
  9548. "value": 2
  9549. },
  9550. {
  9551. "source": 2,
  9552. "target": 5,
  9553. "value": 1
  9554. },
  9555. {
  9556. "source": 3,
  9557. "target": 5,
  9558. "value": 2
  9559. },
  9560. {
  9561. "source": 4,
  9562. "target": 5,
  9563. "value": 3
  9564. }
  9565. ],
  9566. "link_distance": 100,
  9567. "link_matrix": {
  9568. "type": "float",
  9569. "values": []
  9570. },
  9571. "link_type": "arc",
  9572. "node_data": [
  9573. "Boba Fett",
  9574. "Yoda",
  9575. "Jabba Desilijic Tiure",
  9576. "Darth Vader",
  9577. "Obi-Wan Kenobi",
  9578. "Beru Whitesun lars",
  9579. "Mon Mothma"
  9580. ],
  9581. "preserve_domain": {},
  9582. "scales": {},
  9583. "scales_metadata": {
  9584. "color": {
  9585. "dimension": "color"
  9586. },
  9587. "link_color": {
  9588. "dimension": "link_color"
  9589. },
  9590. "x": {
  9591. "dimension": "x",
  9592. "orientation": "horizontal"
  9593. },
  9594. "y": {
  9595. "dimension": "y",
  9596. "orientation": "vertical"
  9597. }
  9598. },
  9599. "selected": [],
  9600. "selected_style": {},
  9601. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  9602. "tooltip_location": "mouse",
  9603. "tooltip_style": {
  9604. "opacity": 0.9
  9605. },
  9606. "unhovered_style": {},
  9607. "unselected_style": {},
  9608. "visible": true,
  9609. "x": {
  9610. "type": "float",
  9611. "values": []
  9612. },
  9613. "y": {
  9614. "type": "float",
  9615. "values": []
  9616. }
  9617. }
  9618. },
  9619. "69d13e06ac4e45d4af7513be2d90be9c": {
  9620. "model_module": "bqplot",
  9621. "model_module_version": "^0.4.1",
  9622. "model_name": "GraphModel",
  9623. "state": {
  9624. "_model_module": "bqplot",
  9625. "_model_module_version": "^0.4.1",
  9626. "_view_count": null,
  9627. "_view_module": "bqplot",
  9628. "_view_module_version": "^0.4.1",
  9629. "apply_clip": true,
  9630. "charge": -600,
  9631. "color": {
  9632. "type": null,
  9633. "values": null
  9634. },
  9635. "colors": [
  9636. "#1f77b4",
  9637. "#ff7f0e",
  9638. "#2ca02c",
  9639. "#d62728",
  9640. "#9467bd",
  9641. "#8c564b",
  9642. "#e377c2",
  9643. "#7f7f7f",
  9644. "#bcbd22",
  9645. "#17becf"
  9646. ],
  9647. "directed": true,
  9648. "display_legend": false,
  9649. "enable_hover": true,
  9650. "highlight_links": true,
  9651. "hovered_style": {},
  9652. "interactions": {
  9653. "click": "select",
  9654. "hover": "tooltip"
  9655. },
  9656. "labels": [],
  9657. "link_color": {
  9658. "type": "float",
  9659. "values": []
  9660. },
  9661. "link_data": [
  9662. {
  9663. "source": {
  9664. "fixed": 0,
  9665. "index": 0,
  9666. "label": "Boba Fett",
  9667. "label_display": "center",
  9668. "px": 272.81185512776653,
  9669. "py": 190.1221842966228,
  9670. "shape": "circle",
  9671. "shape_attrs": {
  9672. "r": 15
  9673. },
  9674. "value": null,
  9675. "weight": 6,
  9676. "x": 272.73181035252946,
  9677. "y": 190.03065423960638
  9678. },
  9679. "target": {
  9680. "fixed": 0,
  9681. "index": 1,
  9682. "label": "Yoda",
  9683. "label_display": "center",
  9684. "px": 339.97787870865653,
  9685. "py": 171.2279686044594,
  9686. "shape": "circle",
  9687. "shape_attrs": {
  9688. "r": 15
  9689. },
  9690. "value": null,
  9691. "weight": 6,
  9692. "x": 340.0230535085501,
  9693. "y": 171.1102519438772
  9694. },
  9695. "value": 3
  9696. },
  9697. {
  9698. "source": {
  9699. "fixed": 0,
  9700. "index": 0,
  9701. "label": "Boba Fett",
  9702. "label_display": "center",
  9703. "px": 272.81185512776653,
  9704. "py": 190.1221842966228,
  9705. "shape": "circle",
  9706. "shape_attrs": {
  9707. "r": 15
  9708. },
  9709. "value": null,
  9710. "weight": 6,
  9711. "x": 272.73181035252946,
  9712. "y": 190.03065423960638
  9713. },
  9714. "target": {
  9715. "fixed": 0,
  9716. "index": 2,
  9717. "label": "Jabba Desilijic Tiure",
  9718. "label_display": "center",
  9719. "px": 294.78451659253835,
  9720. "py": 302.3063023982394,
  9721. "shape": "circle",
  9722. "shape_attrs": {
  9723. "r": 15
  9724. },
  9725. "value": null,
  9726. "weight": 6,
  9727. "x": 294.74353738373867,
  9728. "y": 302.4142677144234
  9729. },
  9730. "value": 1
  9731. },
  9732. {
  9733. "source": {
  9734. "fixed": 0,
  9735. "index": 0,
  9736. "label": "Boba Fett",
  9737. "label_display": "center",
  9738. "px": 272.81185512776653,
  9739. "py": 190.1221842966228,
  9740. "shape": "circle",
  9741. "shape_attrs": {
  9742. "r": 15
  9743. },
  9744. "value": null,
  9745. "weight": 6,
  9746. "x": 272.73181035252946,
  9747. "y": 190.03065423960638
  9748. },
  9749. "target": {
  9750. "fixed": 0,
  9751. "index": 3,
  9752. "label": "Darth Vader",
  9753. "label_display": "center",
  9754. "px": 365.04079134517576,
  9755. "py": 295.0299689167581,
  9756. "shape": "circle",
  9757. "shape_attrs": {
  9758. "r": 15
  9759. },
  9760. "value": null,
  9761. "weight": 6,
  9762. "x": 365.12673690352744,
  9763. "y": 295.1248011120429
  9764. },
  9765. "value": 2
  9766. },
  9767. {
  9768. "source": {
  9769. "fixed": 0,
  9770. "index": 0,
  9771. "label": "Boba Fett",
  9772. "label_display": "center",
  9773. "px": 272.81185512776653,
  9774. "py": 190.1221842966228,
  9775. "shape": "circle",
  9776. "shape_attrs": {
  9777. "r": 15
  9778. },
  9779. "value": null,
  9780. "weight": 6,
  9781. "x": 272.73181035252946,
  9782. "y": 190.03065423960638
  9783. },
  9784. "target": {
  9785. "fixed": 0,
  9786. "index": 4,
  9787. "label": "Obi-Wan Kenobi",
  9788. "label_display": "center",
  9789. "px": 327.84554767098007,
  9790. "py": 238.0417412406734,
  9791. "shape": "circle",
  9792. "shape_attrs": {
  9793. "r": 15
  9794. },
  9795. "value": null,
  9796. "weight": 6,
  9797. "x": 327.85026640960825,
  9798. "y": 238.0465664727612
  9799. },
  9800. "value": 3
  9801. },
  9802. {
  9803. "source": {
  9804. "fixed": 0,
  9805. "index": 0,
  9806. "label": "Boba Fett",
  9807. "label_display": "center",
  9808. "px": 272.81185512776653,
  9809. "py": 190.1221842966228,
  9810. "shape": "circle",
  9811. "shape_attrs": {
  9812. "r": 15
  9813. },
  9814. "value": null,
  9815. "weight": 6,
  9816. "x": 272.73181035252946,
  9817. "y": 190.03065423960638
  9818. },
  9819. "target": {
  9820. "index": 5,
  9821. "label": "Beru Whitesun lars",
  9822. "label_display": "center",
  9823. "px": 233.76569050904024,
  9824. "py": 256.4436414776755,
  9825. "shape": "circle",
  9826. "shape_attrs": {
  9827. "r": 15
  9828. },
  9829. "value": null,
  9830. "weight": 5,
  9831. "x": 233.6461045380361,
  9832. "y": 256.46951128858564
  9833. },
  9834. "value": 1
  9835. },
  9836. {
  9837. "source": {
  9838. "fixed": 0,
  9839. "index": 0,
  9840. "label": "Boba Fett",
  9841. "label_display": "center",
  9842. "px": 272.81185512776653,
  9843. "py": 190.1221842966228,
  9844. "shape": "circle",
  9845. "shape_attrs": {
  9846. "r": 15
  9847. },
  9848. "value": null,
  9849. "weight": 6,
  9850. "x": 272.73181035252946,
  9851. "y": 190.03065423960638
  9852. },
  9853. "target": {
  9854. "fixed": 0,
  9855. "index": 6,
  9856. "label": "Mon Mothma",
  9857. "label_display": "center",
  9858. "px": 407.5795292931184,
  9859. "py": 221.48806641576323,
  9860. "shape": "circle",
  9861. "shape_attrs": {
  9862. "r": 15
  9863. },
  9864. "value": null,
  9865. "weight": 5,
  9866. "x": 407.5795292931184,
  9867. "y": 221.48806641576323
  9868. },
  9869. "value": 1
  9870. },
  9871. {
  9872. "source": {
  9873. "fixed": 0,
  9874. "index": 1,
  9875. "label": "Yoda",
  9876. "label_display": "center",
  9877. "px": 339.97787870865653,
  9878. "py": 171.2279686044594,
  9879. "shape": "circle",
  9880. "shape_attrs": {
  9881. "r": 15
  9882. },
  9883. "value": null,
  9884. "weight": 6,
  9885. "x": 340.0230535085501,
  9886. "y": 171.1102519438772
  9887. },
  9888. "target": {
  9889. "fixed": 0,
  9890. "index": 2,
  9891. "label": "Jabba Desilijic Tiure",
  9892. "label_display": "center",
  9893. "px": 294.78451659253835,
  9894. "py": 302.3063023982394,
  9895. "shape": "circle",
  9896. "shape_attrs": {
  9897. "r": 15
  9898. },
  9899. "value": null,
  9900. "weight": 6,
  9901. "x": 294.74353738373867,
  9902. "y": 302.4142677144234
  9903. },
  9904. "value": 2
  9905. },
  9906. {
  9907. "source": {
  9908. "fixed": 0,
  9909. "index": 1,
  9910. "label": "Yoda",
  9911. "label_display": "center",
  9912. "px": 339.97787870865653,
  9913. "py": 171.2279686044594,
  9914. "shape": "circle",
  9915. "shape_attrs": {
  9916. "r": 15
  9917. },
  9918. "value": null,
  9919. "weight": 6,
  9920. "x": 340.0230535085501,
  9921. "y": 171.1102519438772
  9922. },
  9923. "target": {
  9924. "fixed": 0,
  9925. "index": 3,
  9926. "label": "Darth Vader",
  9927. "label_display": "center",
  9928. "px": 365.04079134517576,
  9929. "py": 295.0299689167581,
  9930. "shape": "circle",
  9931. "shape_attrs": {
  9932. "r": 15
  9933. },
  9934. "value": null,
  9935. "weight": 6,
  9936. "x": 365.12673690352744,
  9937. "y": 295.1248011120429
  9938. },
  9939. "value": 3
  9940. },
  9941. {
  9942. "source": {
  9943. "fixed": 0,
  9944. "index": 1,
  9945. "label": "Yoda",
  9946. "label_display": "center",
  9947. "px": 339.97787870865653,
  9948. "py": 171.2279686044594,
  9949. "shape": "circle",
  9950. "shape_attrs": {
  9951. "r": 15
  9952. },
  9953. "value": null,
  9954. "weight": 6,
  9955. "x": 340.0230535085501,
  9956. "y": 171.1102519438772
  9957. },
  9958. "target": {
  9959. "fixed": 0,
  9960. "index": 4,
  9961. "label": "Obi-Wan Kenobi",
  9962. "label_display": "center",
  9963. "px": 327.84554767098007,
  9964. "py": 238.0417412406734,
  9965. "shape": "circle",
  9966. "shape_attrs": {
  9967. "r": 15
  9968. },
  9969. "value": null,
  9970. "weight": 6,
  9971. "x": 327.85026640960825,
  9972. "y": 238.0465664727612
  9973. },
  9974. "value": 5
  9975. },
  9976. {
  9977. "source": {
  9978. "fixed": 0,
  9979. "index": 1,
  9980. "label": "Yoda",
  9981. "label_display": "center",
  9982. "px": 339.97787870865653,
  9983. "py": 171.2279686044594,
  9984. "shape": "circle",
  9985. "shape_attrs": {
  9986. "r": 15
  9987. },
  9988. "value": null,
  9989. "weight": 6,
  9990. "x": 340.0230535085501,
  9991. "y": 171.1102519438772
  9992. },
  9993. "target": {
  9994. "index": 5,
  9995. "label": "Beru Whitesun lars",
  9996. "label_display": "center",
  9997. "px": 233.76569050904024,
  9998. "py": 256.4436414776755,
  9999. "shape": "circle",
  10000. "shape_attrs": {
  10001. "r": 15
  10002. },
  10003. "value": null,
  10004. "weight": 5,
  10005. "x": 233.6461045380361,
  10006. "y": 256.46951128858564
  10007. },
  10008. "value": 2
  10009. },
  10010. {
  10011. "source": {
  10012. "fixed": 0,
  10013. "index": 1,
  10014. "label": "Yoda",
  10015. "label_display": "center",
  10016. "px": 339.97787870865653,
  10017. "py": 171.2279686044594,
  10018. "shape": "circle",
  10019. "shape_attrs": {
  10020. "r": 15
  10021. },
  10022. "value": null,
  10023. "weight": 6,
  10024. "x": 340.0230535085501,
  10025. "y": 171.1102519438772
  10026. },
  10027. "target": {
  10028. "fixed": 0,
  10029. "index": 6,
  10030. "label": "Mon Mothma",
  10031. "label_display": "center",
  10032. "px": 407.5795292931184,
  10033. "py": 221.48806641576323,
  10034. "shape": "circle",
  10035. "shape_attrs": {
  10036. "r": 15
  10037. },
  10038. "value": null,
  10039. "weight": 5,
  10040. "x": 407.5795292931184,
  10041. "y": 221.48806641576323
  10042. },
  10043. "value": 1
  10044. },
  10045. {
  10046. "source": {
  10047. "fixed": 0,
  10048. "index": 2,
  10049. "label": "Jabba Desilijic Tiure",
  10050. "label_display": "center",
  10051. "px": 294.78451659253835,
  10052. "py": 302.3063023982394,
  10053. "shape": "circle",
  10054. "shape_attrs": {
  10055. "r": 15
  10056. },
  10057. "value": null,
  10058. "weight": 6,
  10059. "x": 294.74353738373867,
  10060. "y": 302.4142677144234
  10061. },
  10062. "target": {
  10063. "fixed": 0,
  10064. "index": 3,
  10065. "label": "Darth Vader",
  10066. "label_display": "center",
  10067. "px": 365.04079134517576,
  10068. "py": 295.0299689167581,
  10069. "shape": "circle",
  10070. "shape_attrs": {
  10071. "r": 15
  10072. },
  10073. "value": null,
  10074. "weight": 6,
  10075. "x": 365.12673690352744,
  10076. "y": 295.1248011120429
  10077. },
  10078. "value": 2
  10079. },
  10080. {
  10081. "source": {
  10082. "fixed": 0,
  10083. "index": 2,
  10084. "label": "Jabba Desilijic Tiure",
  10085. "label_display": "center",
  10086. "px": 294.78451659253835,
  10087. "py": 302.3063023982394,
  10088. "shape": "circle",
  10089. "shape_attrs": {
  10090. "r": 15
  10091. },
  10092. "value": null,
  10093. "weight": 6,
  10094. "x": 294.74353738373867,
  10095. "y": 302.4142677144234
  10096. },
  10097. "target": {
  10098. "fixed": 0,
  10099. "index": 4,
  10100. "label": "Obi-Wan Kenobi",
  10101. "label_display": "center",
  10102. "px": 327.84554767098007,
  10103. "py": 238.0417412406734,
  10104. "shape": "circle",
  10105. "shape_attrs": {
  10106. "r": 15
  10107. },
  10108. "value": null,
  10109. "weight": 6,
  10110. "x": 327.85026640960825,
  10111. "y": 238.0465664727612
  10112. },
  10113. "value": 3
  10114. },
  10115. {
  10116. "source": {
  10117. "fixed": 0,
  10118. "index": 2,
  10119. "label": "Jabba Desilijic Tiure",
  10120. "label_display": "center",
  10121. "px": 294.78451659253835,
  10122. "py": 302.3063023982394,
  10123. "shape": "circle",
  10124. "shape_attrs": {
  10125. "r": 15
  10126. },
  10127. "value": null,
  10128. "weight": 6,
  10129. "x": 294.74353738373867,
  10130. "y": 302.4142677144234
  10131. },
  10132. "target": {
  10133. "index": 5,
  10134. "label": "Beru Whitesun lars",
  10135. "label_display": "center",
  10136. "px": 233.76569050904024,
  10137. "py": 256.4436414776755,
  10138. "shape": "circle",
  10139. "shape_attrs": {
  10140. "r": 15
  10141. },
  10142. "value": null,
  10143. "weight": 5,
  10144. "x": 233.6461045380361,
  10145. "y": 256.46951128858564
  10146. },
  10147. "value": 1
  10148. },
  10149. {
  10150. "source": {
  10151. "fixed": 0,
  10152. "index": 2,
  10153. "label": "Jabba Desilijic Tiure",
  10154. "label_display": "center",
  10155. "px": 294.78451659253835,
  10156. "py": 302.3063023982394,
  10157. "shape": "circle",
  10158. "shape_attrs": {
  10159. "r": 15
  10160. },
  10161. "value": null,
  10162. "weight": 6,
  10163. "x": 294.74353738373867,
  10164. "y": 302.4142677144234
  10165. },
  10166. "target": {
  10167. "fixed": 0,
  10168. "index": 6,
  10169. "label": "Mon Mothma",
  10170. "label_display": "center",
  10171. "px": 407.5795292931184,
  10172. "py": 221.48806641576323,
  10173. "shape": "circle",
  10174. "shape_attrs": {
  10175. "r": 15
  10176. },
  10177. "value": null,
  10178. "weight": 5,
  10179. "x": 407.5795292931184,
  10180. "y": 221.48806641576323
  10181. },
  10182. "value": 1
  10183. },
  10184. {
  10185. "source": {
  10186. "fixed": 0,
  10187. "index": 3,
  10188. "label": "Darth Vader",
  10189. "label_display": "center",
  10190. "px": 365.04079134517576,
  10191. "py": 295.0299689167581,
  10192. "shape": "circle",
  10193. "shape_attrs": {
  10194. "r": 15
  10195. },
  10196. "value": null,
  10197. "weight": 6,
  10198. "x": 365.12673690352744,
  10199. "y": 295.1248011120429
  10200. },
  10201. "target": {
  10202. "fixed": 0,
  10203. "index": 4,
  10204. "label": "Obi-Wan Kenobi",
  10205. "label_display": "center",
  10206. "px": 327.84554767098007,
  10207. "py": 238.0417412406734,
  10208. "shape": "circle",
  10209. "shape_attrs": {
  10210. "r": 15
  10211. },
  10212. "value": null,
  10213. "weight": 6,
  10214. "x": 327.85026640960825,
  10215. "y": 238.0465664727612
  10216. },
  10217. "value": 4
  10218. },
  10219. {
  10220. "source": {
  10221. "fixed": 0,
  10222. "index": 3,
  10223. "label": "Darth Vader",
  10224. "label_display": "center",
  10225. "px": 365.04079134517576,
  10226. "py": 295.0299689167581,
  10227. "shape": "circle",
  10228. "shape_attrs": {
  10229. "r": 15
  10230. },
  10231. "value": null,
  10232. "weight": 6,
  10233. "x": 365.12673690352744,
  10234. "y": 295.1248011120429
  10235. },
  10236. "target": {
  10237. "index": 5,
  10238. "label": "Beru Whitesun lars",
  10239. "label_display": "center",
  10240. "px": 233.76569050904024,
  10241. "py": 256.4436414776755,
  10242. "shape": "circle",
  10243. "shape_attrs": {
  10244. "r": 15
  10245. },
  10246. "value": null,
  10247. "weight": 5,
  10248. "x": 233.6461045380361,
  10249. "y": 256.46951128858564
  10250. },
  10251. "value": 2
  10252. },
  10253. {
  10254. "source": {
  10255. "fixed": 0,
  10256. "index": 3,
  10257. "label": "Darth Vader",
  10258. "label_display": "center",
  10259. "px": 365.04079134517576,
  10260. "py": 295.0299689167581,
  10261. "shape": "circle",
  10262. "shape_attrs": {
  10263. "r": 15
  10264. },
  10265. "value": null,
  10266. "weight": 6,
  10267. "x": 365.12673690352744,
  10268. "y": 295.1248011120429
  10269. },
  10270. "target": {
  10271. "fixed": 0,
  10272. "index": 6,
  10273. "label": "Mon Mothma",
  10274. "label_display": "center",
  10275. "px": 407.5795292931184,
  10276. "py": 221.48806641576323,
  10277. "shape": "circle",
  10278. "shape_attrs": {
  10279. "r": 15
  10280. },
  10281. "value": null,
  10282. "weight": 5,
  10283. "x": 407.5795292931184,
  10284. "y": 221.48806641576323
  10285. },
  10286. "value": 1
  10287. },
  10288. {
  10289. "source": {
  10290. "fixed": 0,
  10291. "index": 4,
  10292. "label": "Obi-Wan Kenobi",
  10293. "label_display": "center",
  10294. "px": 327.84554767098007,
  10295. "py": 238.0417412406734,
  10296. "shape": "circle",
  10297. "shape_attrs": {
  10298. "r": 15
  10299. },
  10300. "value": null,
  10301. "weight": 6,
  10302. "x": 327.85026640960825,
  10303. "y": 238.0465664727612
  10304. },
  10305. "target": {
  10306. "index": 5,
  10307. "label": "Beru Whitesun lars",
  10308. "label_display": "center",
  10309. "px": 233.76569050904024,
  10310. "py": 256.4436414776755,
  10311. "shape": "circle",
  10312. "shape_attrs": {
  10313. "r": 15
  10314. },
  10315. "value": null,
  10316. "weight": 5,
  10317. "x": 233.6461045380361,
  10318. "y": 256.46951128858564
  10319. },
  10320. "value": 3
  10321. },
  10322. {
  10323. "source": {
  10324. "fixed": 0,
  10325. "index": 4,
  10326. "label": "Obi-Wan Kenobi",
  10327. "label_display": "center",
  10328. "px": 327.84554767098007,
  10329. "py": 238.0417412406734,
  10330. "shape": "circle",
  10331. "shape_attrs": {
  10332. "r": 15
  10333. },
  10334. "value": null,
  10335. "weight": 6,
  10336. "x": 327.85026640960825,
  10337. "y": 238.0465664727612
  10338. },
  10339. "target": {
  10340. "fixed": 0,
  10341. "index": 6,
  10342. "label": "Mon Mothma",
  10343. "label_display": "center",
  10344. "px": 407.5795292931184,
  10345. "py": 221.48806641576323,
  10346. "shape": "circle",
  10347. "shape_attrs": {
  10348. "r": 15
  10349. },
  10350. "value": null,
  10351. "weight": 5,
  10352. "x": 407.5795292931184,
  10353. "y": 221.48806641576323
  10354. },
  10355. "value": 1
  10356. }
  10357. ],
  10358. "link_distance": 100,
  10359. "link_matrix": {
  10360. "type": "float",
  10361. "values": []
  10362. },
  10363. "link_type": "arc",
  10364. "node_data": [
  10365. "Boba Fett",
  10366. "Yoda",
  10367. "Jabba Desilijic Tiure",
  10368. "Darth Vader",
  10369. "Obi-Wan Kenobi",
  10370. "Beru Whitesun lars",
  10371. "Mon Mothma"
  10372. ],
  10373. "preserve_domain": {},
  10374. "scales": {},
  10375. "scales_metadata": {
  10376. "color": {
  10377. "dimension": "color"
  10378. },
  10379. "link_color": {
  10380. "dimension": "link_color"
  10381. },
  10382. "x": {
  10383. "dimension": "x",
  10384. "orientation": "horizontal"
  10385. },
  10386. "y": {
  10387. "dimension": "y",
  10388. "orientation": "vertical"
  10389. }
  10390. },
  10391. "selected": [
  10392. 6
  10393. ],
  10394. "selected_style": {},
  10395. "tooltip": "IPY_MODEL_197e72274ba74de0bcaa52d9cc67c7f1",
  10396. "tooltip_location": "mouse",
  10397. "tooltip_style": {
  10398. "opacity": 0.9
  10399. },
  10400. "unhovered_style": {},
  10401. "unselected_style": {},
  10402. "visible": true,
  10403. "x": {
  10404. "type": "float",
  10405. "values": []
  10406. },
  10407. "y": {
  10408. "type": "float",
  10409. "values": []
  10410. }
  10411. }
  10412. },
  10413. "6a1adc4f4c144971859e5dd7e9002448": {
  10414. "model_module": "bqplot",
  10415. "model_module_version": "^0.4.1",
  10416. "model_name": "GraphModel",
  10417. "state": {
  10418. "_model_module": "bqplot",
  10419. "_model_module_version": "^0.4.1",
  10420. "_view_count": null,
  10421. "_view_module": "bqplot",
  10422. "_view_module_version": "^0.4.1",
  10423. "apply_clip": true,
  10424. "charge": -600,
  10425. "color": {
  10426. "type": null,
  10427. "values": null
  10428. },
  10429. "colors": [
  10430. "#1f77b4",
  10431. "#ff7f0e",
  10432. "#2ca02c",
  10433. "#d62728",
  10434. "#9467bd",
  10435. "#8c564b",
  10436. "#e377c2",
  10437. "#7f7f7f",
  10438. "#bcbd22",
  10439. "#17becf"
  10440. ],
  10441. "directed": true,
  10442. "display_legend": false,
  10443. "enable_hover": true,
  10444. "highlight_links": true,
  10445. "hovered_style": {},
  10446. "interactions": {
  10447. "click": "select",
  10448. "hover": "tooltip"
  10449. },
  10450. "labels": [],
  10451. "link_color": {
  10452. "type": "float",
  10453. "values": []
  10454. },
  10455. "link_data": [
  10456. {
  10457. "source": 3,
  10458. "target": 6,
  10459. "value": 1
  10460. }
  10461. ],
  10462. "link_distance": 100,
  10463. "link_matrix": {
  10464. "type": "float",
  10465. "values": []
  10466. },
  10467. "link_type": "arc",
  10468. "node_data": [
  10469. "Boba Fett",
  10470. "Yoda",
  10471. "Jabba Desilijic Tiure",
  10472. "Darth Vader",
  10473. "Obi-Wan Kenobi",
  10474. "Beru Whitesun lars",
  10475. "Mon Mothma"
  10476. ],
  10477. "preserve_domain": {},
  10478. "scales": {},
  10479. "scales_metadata": {
  10480. "color": {
  10481. "dimension": "color"
  10482. },
  10483. "link_color": {
  10484. "dimension": "link_color"
  10485. },
  10486. "x": {
  10487. "dimension": "x",
  10488. "orientation": "horizontal"
  10489. },
  10490. "y": {
  10491. "dimension": "y",
  10492. "orientation": "vertical"
  10493. }
  10494. },
  10495. "selected": [],
  10496. "selected_style": {},
  10497. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  10498. "tooltip_location": "mouse",
  10499. "tooltip_style": {
  10500. "opacity": 0.9
  10501. },
  10502. "unhovered_style": {},
  10503. "unselected_style": {},
  10504. "visible": true,
  10505. "x": {
  10506. "type": "float",
  10507. "values": []
  10508. },
  10509. "y": {
  10510. "type": "float",
  10511. "values": []
  10512. }
  10513. }
  10514. },
  10515. "6c5bb17c91df404f9ca9f5525c11a094": {
  10516. "model_module": "bqplot",
  10517. "model_module_version": "^0.4.1",
  10518. "model_name": "FigureModel",
  10519. "state": {
  10520. "_dom_classes": [],
  10521. "_model_module_version": "^0.4.1",
  10522. "_view_module_version": "^0.4.1",
  10523. "layout": "IPY_MODEL_ad5585b04e8e4a4cbc631b0fdfde9d50",
  10524. "marks": [
  10525. "IPY_MODEL_ea56d1d70df048f4affecdd7ec421788"
  10526. ],
  10527. "scale_x": "IPY_MODEL_9a13c1f95bbb408a80dd5052486e33d3",
  10528. "scale_y": "IPY_MODEL_46604040fa1f490dbddd1503568882a0"
  10529. }
  10530. },
  10531. "6cec50639c3441ca8e76dcfb39845417": {
  10532. "model_module": "bqplot",
  10533. "model_module_version": "^0.4.1",
  10534. "model_name": "LinearScaleModel",
  10535. "state": {
  10536. "_model_module_version": "^0.4.1",
  10537. "_view_module_version": "^0.4.1",
  10538. "allow_padding": false,
  10539. "max": 1,
  10540. "min": 0,
  10541. "stabilized": false
  10542. }
  10543. },
  10544. "6d28211de27c420397267f24246f2a15": {
  10545. "model_module": "@jupyter-widgets/base",
  10546. "model_module_version": "1.1.0",
  10547. "model_name": "LayoutModel",
  10548. "state": {
  10549. "min_width": "125px"
  10550. }
  10551. },
  10552. "6eea8e2d1d3c429580038e754bc65e87": {
  10553. "model_module": "@jupyter-widgets/base",
  10554. "model_module_version": "1.1.0",
  10555. "model_name": "LayoutModel",
  10556. "state": {
  10557. "min_width": "125px"
  10558. }
  10559. },
  10560. "6f77334342d94a249254c3ec8a57a1fc": {
  10561. "model_module": "bqplot",
  10562. "model_module_version": "^0.4.1",
  10563. "model_name": "GraphModel",
  10564. "state": {
  10565. "_model_module": "bqplot",
  10566. "_model_module_version": "^0.4.1",
  10567. "_view_count": null,
  10568. "_view_module": "bqplot",
  10569. "_view_module_version": "^0.4.1",
  10570. "apply_clip": true,
  10571. "charge": -600,
  10572. "color": {
  10573. "type": null,
  10574. "values": null
  10575. },
  10576. "colors": [
  10577. "#1f77b4",
  10578. "#ff7f0e",
  10579. "#2ca02c",
  10580. "#d62728",
  10581. "#9467bd",
  10582. "#8c564b",
  10583. "#e377c2",
  10584. "#7f7f7f",
  10585. "#bcbd22",
  10586. "#17becf"
  10587. ],
  10588. "directed": true,
  10589. "display_legend": false,
  10590. "enable_hover": true,
  10591. "highlight_links": true,
  10592. "hovered_style": {},
  10593. "interactions": {
  10594. "click": "select",
  10595. "hover": "tooltip"
  10596. },
  10597. "labels": [],
  10598. "link_color": {
  10599. "type": "float",
  10600. "values": []
  10601. },
  10602. "link_data": [
  10603. {
  10604. "source": 0,
  10605. "target": 5,
  10606. "value": 1
  10607. },
  10608. {
  10609. "source": 1,
  10610. "target": 5,
  10611. "value": 2
  10612. },
  10613. {
  10614. "source": 2,
  10615. "target": 5,
  10616. "value": 1
  10617. },
  10618. {
  10619. "source": 3,
  10620. "target": 5,
  10621. "value": 2
  10622. },
  10623. {
  10624. "source": 4,
  10625. "target": 5,
  10626. "value": 3
  10627. }
  10628. ],
  10629. "link_distance": 100,
  10630. "link_matrix": {
  10631. "type": "float",
  10632. "values": []
  10633. },
  10634. "link_type": "arc",
  10635. "node_data": [
  10636. "Boba Fett",
  10637. "Yoda",
  10638. "Jabba Desilijic Tiure",
  10639. "Darth Vader",
  10640. "Obi-Wan Kenobi",
  10641. "Beru Whitesun lars",
  10642. "Mon Mothma"
  10643. ],
  10644. "preserve_domain": {},
  10645. "scales": {},
  10646. "scales_metadata": {
  10647. "color": {
  10648. "dimension": "color"
  10649. },
  10650. "link_color": {
  10651. "dimension": "link_color"
  10652. },
  10653. "x": {
  10654. "dimension": "x",
  10655. "orientation": "horizontal"
  10656. },
  10657. "y": {
  10658. "dimension": "y",
  10659. "orientation": "vertical"
  10660. }
  10661. },
  10662. "selected": [],
  10663. "selected_style": {},
  10664. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  10665. "tooltip_location": "mouse",
  10666. "tooltip_style": {
  10667. "opacity": 0.9
  10668. },
  10669. "unhovered_style": {},
  10670. "unselected_style": {},
  10671. "visible": true,
  10672. "x": {
  10673. "type": "float",
  10674. "values": []
  10675. },
  10676. "y": {
  10677. "type": "float",
  10678. "values": []
  10679. }
  10680. }
  10681. },
  10682. "70ee63e8415a42abb445f036df7b2a7a": {
  10683. "model_module": "@jupyter-widgets/base",
  10684. "model_module_version": "1.1.0",
  10685. "model_name": "LayoutModel",
  10686. "state": {
  10687. "min_width": "125px"
  10688. }
  10689. },
  10690. "7134bfe186344ae69b4f36e7aa5c9e1e": {
  10691. "model_module": "bqplot",
  10692. "model_module_version": "^0.4.1",
  10693. "model_name": "GraphModel",
  10694. "state": {
  10695. "_model_module": "bqplot",
  10696. "_model_module_version": "^0.4.1",
  10697. "_view_count": null,
  10698. "_view_module": "bqplot",
  10699. "_view_module_version": "^0.4.1",
  10700. "apply_clip": true,
  10701. "charge": -600,
  10702. "color": {
  10703. "type": null,
  10704. "values": null
  10705. },
  10706. "colors": [
  10707. "#1f77b4",
  10708. "#ff7f0e",
  10709. "#2ca02c",
  10710. "#d62728",
  10711. "#9467bd",
  10712. "#8c564b",
  10713. "#e377c2",
  10714. "#7f7f7f",
  10715. "#bcbd22",
  10716. "#17becf"
  10717. ],
  10718. "directed": true,
  10719. "display_legend": false,
  10720. "enable_hover": true,
  10721. "highlight_links": true,
  10722. "hovered_style": {},
  10723. "interactions": {
  10724. "click": "select",
  10725. "hover": "tooltip"
  10726. },
  10727. "labels": [],
  10728. "link_color": {
  10729. "type": "float",
  10730. "values": []
  10731. },
  10732. "link_data": [
  10733. {
  10734. "source": {
  10735. "fixed": 0,
  10736. "index": 0,
  10737. "label": "Boba Fett",
  10738. "label_display": "center",
  10739. "px": 278.27360709527727,
  10740. "py": 184.48681450915564,
  10741. "shape": "circle",
  10742. "shape_attrs": {
  10743. "r": 15
  10744. },
  10745. "value": null,
  10746. "weight": 6,
  10747. "x": 278.27360709527727,
  10748. "y": 184.48681450915564
  10749. },
  10750. "target": {
  10751. "fixed": 0,
  10752. "index": 1,
  10753. "label": "Yoda",
  10754. "label_display": "center",
  10755. "px": 378.3717087881954,
  10756. "py": 276.51457441452965,
  10757. "shape": "circle",
  10758. "shape_attrs": {
  10759. "r": 15
  10760. },
  10761. "value": null,
  10762. "weight": 6,
  10763. "x": 378.4876831101434,
  10764. "y": 276.57258976581886
  10765. },
  10766. "value": 3
  10767. },
  10768. {
  10769. "source": {
  10770. "fixed": 0,
  10771. "index": 0,
  10772. "label": "Boba Fett",
  10773. "label_display": "center",
  10774. "px": 278.27360709527727,
  10775. "py": 184.48681450915564,
  10776. "shape": "circle",
  10777. "shape_attrs": {
  10778. "r": 15
  10779. },
  10780. "value": null,
  10781. "weight": 6,
  10782. "x": 278.27360709527727,
  10783. "y": 184.48681450915564
  10784. },
  10785. "target": {
  10786. "fixed": 0,
  10787. "index": 2,
  10788. "label": "Jabba Desilijic Tiure",
  10789. "label_display": "center",
  10790. "px": 247.55805603716632,
  10791. "py": 238.69570135354266,
  10792. "shape": "circle",
  10793. "shape_attrs": {
  10794. "r": 15
  10795. },
  10796. "value": null,
  10797. "weight": 6,
  10798. "x": 247.55805603716632,
  10799. "y": 238.69570135354266
  10800. },
  10801. "value": 1
  10802. },
  10803. {
  10804. "source": {
  10805. "fixed": 0,
  10806. "index": 0,
  10807. "label": "Boba Fett",
  10808. "label_display": "center",
  10809. "px": 278.27360709527727,
  10810. "py": 184.48681450915564,
  10811. "shape": "circle",
  10812. "shape_attrs": {
  10813. "r": 15
  10814. },
  10815. "value": null,
  10816. "weight": 6,
  10817. "x": 278.27360709527727,
  10818. "y": 184.48681450915564
  10819. },
  10820. "target": {
  10821. "fixed": 0,
  10822. "index": 3,
  10823. "label": "Darth Vader",
  10824. "label_display": "center",
  10825. "px": 326.95086390563273,
  10826. "py": 311.6915015776691,
  10827. "shape": "circle",
  10828. "shape_attrs": {
  10829. "r": 15
  10830. },
  10831. "value": null,
  10832. "weight": 6,
  10833. "x": 326.95086390563273,
  10834. "y": 311.6915015776691
  10835. },
  10836. "value": 2
  10837. },
  10838. {
  10839. "source": {
  10840. "fixed": 0,
  10841. "index": 0,
  10842. "label": "Boba Fett",
  10843. "label_display": "center",
  10844. "px": 278.27360709527727,
  10845. "py": 184.48681450915564,
  10846. "shape": "circle",
  10847. "shape_attrs": {
  10848. "r": 15
  10849. },
  10850. "value": null,
  10851. "weight": 6,
  10852. "x": 278.27360709527727,
  10853. "y": 184.48681450915564
  10854. },
  10855. "target": {
  10856. "fixed": 0,
  10857. "index": 4,
  10858. "label": "Obi-Wan Kenobi",
  10859. "label_display": "center",
  10860. "px": 267.71920959462744,
  10861. "py": 296.44791138906055,
  10862. "shape": "circle",
  10863. "shape_attrs": {
  10864. "r": 15
  10865. },
  10866. "value": null,
  10867. "weight": 6,
  10868. "x": 267.71920959462744,
  10869. "y": 296.44791138906055
  10870. },
  10871. "value": 3
  10872. },
  10873. {
  10874. "source": {
  10875. "fixed": 0,
  10876. "index": 0,
  10877. "label": "Boba Fett",
  10878. "label_display": "center",
  10879. "px": 278.27360709527727,
  10880. "py": 184.48681450915564,
  10881. "shape": "circle",
  10882. "shape_attrs": {
  10883. "r": 15
  10884. },
  10885. "value": null,
  10886. "weight": 6,
  10887. "x": 278.27360709527727,
  10888. "y": 184.48681450915564
  10889. },
  10890. "target": {
  10891. "fixed": 0,
  10892. "index": 5,
  10893. "label": "Beru Whitesun lars",
  10894. "label_display": "center",
  10895. "px": 344.1189941850085,
  10896. "py": 191.07319629928807,
  10897. "shape": "circle",
  10898. "shape_attrs": {
  10899. "r": 15
  10900. },
  10901. "value": null,
  10902. "weight": 5,
  10903. "x": 344.1189941850085,
  10904. "y": 191.07319629928807
  10905. },
  10906. "value": 1
  10907. },
  10908. {
  10909. "source": {
  10910. "fixed": 0,
  10911. "index": 0,
  10912. "label": "Boba Fett",
  10913. "label_display": "center",
  10914. "px": 278.27360709527727,
  10915. "py": 184.48681450915564,
  10916. "shape": "circle",
  10917. "shape_attrs": {
  10918. "r": 15
  10919. },
  10920. "value": null,
  10921. "weight": 6,
  10922. "x": 278.27360709527727,
  10923. "y": 184.48681450915564
  10924. },
  10925. "target": {
  10926. "fixed": 0,
  10927. "index": 6,
  10928. "label": "Mon Mothma",
  10929. "label_display": "center",
  10930. "px": 366.05293781717654,
  10931. "py": 211.49828290429807,
  10932. "shape": "circle",
  10933. "shape_attrs": {
  10934. "r": 15
  10935. },
  10936. "value": null,
  10937. "weight": 5,
  10938. "x": 366.20019031658484,
  10939. "y": 211.4804398897
  10940. },
  10941. "value": 1
  10942. },
  10943. {
  10944. "source": {
  10945. "fixed": 0,
  10946. "index": 1,
  10947. "label": "Yoda",
  10948. "label_display": "center",
  10949. "px": 378.3717087881954,
  10950. "py": 276.51457441452965,
  10951. "shape": "circle",
  10952. "shape_attrs": {
  10953. "r": 15
  10954. },
  10955. "value": null,
  10956. "weight": 6,
  10957. "x": 378.4876831101434,
  10958. "y": 276.57258976581886
  10959. },
  10960. "target": {
  10961. "fixed": 0,
  10962. "index": 2,
  10963. "label": "Jabba Desilijic Tiure",
  10964. "label_display": "center",
  10965. "px": 247.55805603716632,
  10966. "py": 238.69570135354266,
  10967. "shape": "circle",
  10968. "shape_attrs": {
  10969. "r": 15
  10970. },
  10971. "value": null,
  10972. "weight": 6,
  10973. "x": 247.55805603716632,
  10974. "y": 238.69570135354266
  10975. },
  10976. "value": 2
  10977. },
  10978. {
  10979. "source": {
  10980. "fixed": 0,
  10981. "index": 1,
  10982. "label": "Yoda",
  10983. "label_display": "center",
  10984. "px": 378.3717087881954,
  10985. "py": 276.51457441452965,
  10986. "shape": "circle",
  10987. "shape_attrs": {
  10988. "r": 15
  10989. },
  10990. "value": null,
  10991. "weight": 6,
  10992. "x": 378.4876831101434,
  10993. "y": 276.57258976581886
  10994. },
  10995. "target": {
  10996. "fixed": 0,
  10997. "index": 3,
  10998. "label": "Darth Vader",
  10999. "label_display": "center",
  11000. "px": 326.95086390563273,
  11001. "py": 311.6915015776691,
  11002. "shape": "circle",
  11003. "shape_attrs": {
  11004. "r": 15
  11005. },
  11006. "value": null,
  11007. "weight": 6,
  11008. "x": 326.95086390563273,
  11009. "y": 311.6915015776691
  11010. },
  11011. "value": 3
  11012. },
  11013. {
  11014. "source": {
  11015. "fixed": 0,
  11016. "index": 1,
  11017. "label": "Yoda",
  11018. "label_display": "center",
  11019. "px": 378.3717087881954,
  11020. "py": 276.51457441452965,
  11021. "shape": "circle",
  11022. "shape_attrs": {
  11023. "r": 15
  11024. },
  11025. "value": null,
  11026. "weight": 6,
  11027. "x": 378.4876831101434,
  11028. "y": 276.57258976581886
  11029. },
  11030. "target": {
  11031. "fixed": 0,
  11032. "index": 4,
  11033. "label": "Obi-Wan Kenobi",
  11034. "label_display": "center",
  11035. "px": 267.71920959462744,
  11036. "py": 296.44791138906055,
  11037. "shape": "circle",
  11038. "shape_attrs": {
  11039. "r": 15
  11040. },
  11041. "value": null,
  11042. "weight": 6,
  11043. "x": 267.71920959462744,
  11044. "y": 296.44791138906055
  11045. },
  11046. "value": 5
  11047. },
  11048. {
  11049. "source": {
  11050. "fixed": 0,
  11051. "index": 1,
  11052. "label": "Yoda",
  11053. "label_display": "center",
  11054. "px": 378.3717087881954,
  11055. "py": 276.51457441452965,
  11056. "shape": "circle",
  11057. "shape_attrs": {
  11058. "r": 15
  11059. },
  11060. "value": null,
  11061. "weight": 6,
  11062. "x": 378.4876831101434,
  11063. "y": 276.57258976581886
  11064. },
  11065. "target": {
  11066. "fixed": 0,
  11067. "index": 5,
  11068. "label": "Beru Whitesun lars",
  11069. "label_display": "center",
  11070. "px": 344.1189941850085,
  11071. "py": 191.07319629928807,
  11072. "shape": "circle",
  11073. "shape_attrs": {
  11074. "r": 15
  11075. },
  11076. "value": null,
  11077. "weight": 5,
  11078. "x": 344.1189941850085,
  11079. "y": 191.07319629928807
  11080. },
  11081. "value": 2
  11082. },
  11083. {
  11084. "source": {
  11085. "fixed": 0,
  11086. "index": 1,
  11087. "label": "Yoda",
  11088. "label_display": "center",
  11089. "px": 378.3717087881954,
  11090. "py": 276.51457441452965,
  11091. "shape": "circle",
  11092. "shape_attrs": {
  11093. "r": 15
  11094. },
  11095. "value": null,
  11096. "weight": 6,
  11097. "x": 378.4876831101434,
  11098. "y": 276.57258976581886
  11099. },
  11100. "target": {
  11101. "fixed": 0,
  11102. "index": 6,
  11103. "label": "Mon Mothma",
  11104. "label_display": "center",
  11105. "px": 366.05293781717654,
  11106. "py": 211.49828290429807,
  11107. "shape": "circle",
  11108. "shape_attrs": {
  11109. "r": 15
  11110. },
  11111. "value": null,
  11112. "weight": 5,
  11113. "x": 366.20019031658484,
  11114. "y": 211.4804398897
  11115. },
  11116. "value": 1
  11117. },
  11118. {
  11119. "source": {
  11120. "fixed": 0,
  11121. "index": 2,
  11122. "label": "Jabba Desilijic Tiure",
  11123. "label_display": "center",
  11124. "px": 247.55805603716632,
  11125. "py": 238.69570135354266,
  11126. "shape": "circle",
  11127. "shape_attrs": {
  11128. "r": 15
  11129. },
  11130. "value": null,
  11131. "weight": 6,
  11132. "x": 247.55805603716632,
  11133. "y": 238.69570135354266
  11134. },
  11135. "target": {
  11136. "fixed": 0,
  11137. "index": 3,
  11138. "label": "Darth Vader",
  11139. "label_display": "center",
  11140. "px": 326.95086390563273,
  11141. "py": 311.6915015776691,
  11142. "shape": "circle",
  11143. "shape_attrs": {
  11144. "r": 15
  11145. },
  11146. "value": null,
  11147. "weight": 6,
  11148. "x": 326.95086390563273,
  11149. "y": 311.6915015776691
  11150. },
  11151. "value": 2
  11152. },
  11153. {
  11154. "source": {
  11155. "fixed": 0,
  11156. "index": 2,
  11157. "label": "Jabba Desilijic Tiure",
  11158. "label_display": "center",
  11159. "px": 247.55805603716632,
  11160. "py": 238.69570135354266,
  11161. "shape": "circle",
  11162. "shape_attrs": {
  11163. "r": 15
  11164. },
  11165. "value": null,
  11166. "weight": 6,
  11167. "x": 247.55805603716632,
  11168. "y": 238.69570135354266
  11169. },
  11170. "target": {
  11171. "fixed": 0,
  11172. "index": 4,
  11173. "label": "Obi-Wan Kenobi",
  11174. "label_display": "center",
  11175. "px": 267.71920959462744,
  11176. "py": 296.44791138906055,
  11177. "shape": "circle",
  11178. "shape_attrs": {
  11179. "r": 15
  11180. },
  11181. "value": null,
  11182. "weight": 6,
  11183. "x": 267.71920959462744,
  11184. "y": 296.44791138906055
  11185. },
  11186. "value": 3
  11187. },
  11188. {
  11189. "source": {
  11190. "fixed": 0,
  11191. "index": 2,
  11192. "label": "Jabba Desilijic Tiure",
  11193. "label_display": "center",
  11194. "px": 247.55805603716632,
  11195. "py": 238.69570135354266,
  11196. "shape": "circle",
  11197. "shape_attrs": {
  11198. "r": 15
  11199. },
  11200. "value": null,
  11201. "weight": 6,
  11202. "x": 247.55805603716632,
  11203. "y": 238.69570135354266
  11204. },
  11205. "target": {
  11206. "fixed": 0,
  11207. "index": 5,
  11208. "label": "Beru Whitesun lars",
  11209. "label_display": "center",
  11210. "px": 344.1189941850085,
  11211. "py": 191.07319629928807,
  11212. "shape": "circle",
  11213. "shape_attrs": {
  11214. "r": 15
  11215. },
  11216. "value": null,
  11217. "weight": 5,
  11218. "x": 344.1189941850085,
  11219. "y": 191.07319629928807
  11220. },
  11221. "value": 1
  11222. },
  11223. {
  11224. "source": {
  11225. "fixed": 0,
  11226. "index": 2,
  11227. "label": "Jabba Desilijic Tiure",
  11228. "label_display": "center",
  11229. "px": 247.55805603716632,
  11230. "py": 238.69570135354266,
  11231. "shape": "circle",
  11232. "shape_attrs": {
  11233. "r": 15
  11234. },
  11235. "value": null,
  11236. "weight": 6,
  11237. "x": 247.55805603716632,
  11238. "y": 238.69570135354266
  11239. },
  11240. "target": {
  11241. "fixed": 0,
  11242. "index": 6,
  11243. "label": "Mon Mothma",
  11244. "label_display": "center",
  11245. "px": 366.05293781717654,
  11246. "py": 211.49828290429807,
  11247. "shape": "circle",
  11248. "shape_attrs": {
  11249. "r": 15
  11250. },
  11251. "value": null,
  11252. "weight": 5,
  11253. "x": 366.20019031658484,
  11254. "y": 211.4804398897
  11255. },
  11256. "value": 1
  11257. },
  11258. {
  11259. "source": {
  11260. "fixed": 0,
  11261. "index": 3,
  11262. "label": "Darth Vader",
  11263. "label_display": "center",
  11264. "px": 326.95086390563273,
  11265. "py": 311.6915015776691,
  11266. "shape": "circle",
  11267. "shape_attrs": {
  11268. "r": 15
  11269. },
  11270. "value": null,
  11271. "weight": 6,
  11272. "x": 326.95086390563273,
  11273. "y": 311.6915015776691
  11274. },
  11275. "target": {
  11276. "fixed": 0,
  11277. "index": 4,
  11278. "label": "Obi-Wan Kenobi",
  11279. "label_display": "center",
  11280. "px": 267.71920959462744,
  11281. "py": 296.44791138906055,
  11282. "shape": "circle",
  11283. "shape_attrs": {
  11284. "r": 15
  11285. },
  11286. "value": null,
  11287. "weight": 6,
  11288. "x": 267.71920959462744,
  11289. "y": 296.44791138906055
  11290. },
  11291. "value": 4
  11292. },
  11293. {
  11294. "source": {
  11295. "fixed": 0,
  11296. "index": 3,
  11297. "label": "Darth Vader",
  11298. "label_display": "center",
  11299. "px": 326.95086390563273,
  11300. "py": 311.6915015776691,
  11301. "shape": "circle",
  11302. "shape_attrs": {
  11303. "r": 15
  11304. },
  11305. "value": null,
  11306. "weight": 6,
  11307. "x": 326.95086390563273,
  11308. "y": 311.6915015776691
  11309. },
  11310. "target": {
  11311. "fixed": 0,
  11312. "index": 5,
  11313. "label": "Beru Whitesun lars",
  11314. "label_display": "center",
  11315. "px": 344.1189941850085,
  11316. "py": 191.07319629928807,
  11317. "shape": "circle",
  11318. "shape_attrs": {
  11319. "r": 15
  11320. },
  11321. "value": null,
  11322. "weight": 5,
  11323. "x": 344.1189941850085,
  11324. "y": 191.07319629928807
  11325. },
  11326. "value": 2
  11327. },
  11328. {
  11329. "source": {
  11330. "fixed": 0,
  11331. "index": 3,
  11332. "label": "Darth Vader",
  11333. "label_display": "center",
  11334. "px": 326.95086390563273,
  11335. "py": 311.6915015776691,
  11336. "shape": "circle",
  11337. "shape_attrs": {
  11338. "r": 15
  11339. },
  11340. "value": null,
  11341. "weight": 6,
  11342. "x": 326.95086390563273,
  11343. "y": 311.6915015776691
  11344. },
  11345. "target": {
  11346. "fixed": 0,
  11347. "index": 6,
  11348. "label": "Mon Mothma",
  11349. "label_display": "center",
  11350. "px": 366.05293781717654,
  11351. "py": 211.49828290429807,
  11352. "shape": "circle",
  11353. "shape_attrs": {
  11354. "r": 15
  11355. },
  11356. "value": null,
  11357. "weight": 5,
  11358. "x": 366.20019031658484,
  11359. "y": 211.4804398897
  11360. },
  11361. "value": 1
  11362. },
  11363. {
  11364. "source": {
  11365. "fixed": 0,
  11366. "index": 4,
  11367. "label": "Obi-Wan Kenobi",
  11368. "label_display": "center",
  11369. "px": 267.71920959462744,
  11370. "py": 296.44791138906055,
  11371. "shape": "circle",
  11372. "shape_attrs": {
  11373. "r": 15
  11374. },
  11375. "value": null,
  11376. "weight": 6,
  11377. "x": 267.71920959462744,
  11378. "y": 296.44791138906055
  11379. },
  11380. "target": {
  11381. "fixed": 0,
  11382. "index": 5,
  11383. "label": "Beru Whitesun lars",
  11384. "label_display": "center",
  11385. "px": 344.1189941850085,
  11386. "py": 191.07319629928807,
  11387. "shape": "circle",
  11388. "shape_attrs": {
  11389. "r": 15
  11390. },
  11391. "value": null,
  11392. "weight": 5,
  11393. "x": 344.1189941850085,
  11394. "y": 191.07319629928807
  11395. },
  11396. "value": 3
  11397. },
  11398. {
  11399. "source": {
  11400. "fixed": 0,
  11401. "index": 4,
  11402. "label": "Obi-Wan Kenobi",
  11403. "label_display": "center",
  11404. "px": 267.71920959462744,
  11405. "py": 296.44791138906055,
  11406. "shape": "circle",
  11407. "shape_attrs": {
  11408. "r": 15
  11409. },
  11410. "value": null,
  11411. "weight": 6,
  11412. "x": 267.71920959462744,
  11413. "y": 296.44791138906055
  11414. },
  11415. "target": {
  11416. "fixed": 0,
  11417. "index": 6,
  11418. "label": "Mon Mothma",
  11419. "label_display": "center",
  11420. "px": 366.05293781717654,
  11421. "py": 211.49828290429807,
  11422. "shape": "circle",
  11423. "shape_attrs": {
  11424. "r": 15
  11425. },
  11426. "value": null,
  11427. "weight": 5,
  11428. "x": 366.20019031658484,
  11429. "y": 211.4804398897
  11430. },
  11431. "value": 1
  11432. }
  11433. ],
  11434. "link_distance": 100,
  11435. "link_matrix": {
  11436. "type": "float",
  11437. "values": []
  11438. },
  11439. "link_type": "arc",
  11440. "node_data": [
  11441. "Boba Fett",
  11442. "Yoda",
  11443. "Jabba Desilijic Tiure",
  11444. "Darth Vader",
  11445. "Obi-Wan Kenobi",
  11446. "Beru Whitesun lars",
  11447. "Mon Mothma"
  11448. ],
  11449. "preserve_domain": {},
  11450. "scales": {},
  11451. "scales_metadata": {
  11452. "color": {
  11453. "dimension": "color"
  11454. },
  11455. "link_color": {
  11456. "dimension": "link_color"
  11457. },
  11458. "x": {
  11459. "dimension": "x",
  11460. "orientation": "horizontal"
  11461. },
  11462. "y": {
  11463. "dimension": "y",
  11464. "orientation": "vertical"
  11465. }
  11466. },
  11467. "selected": [
  11468. 5
  11469. ],
  11470. "selected_style": {},
  11471. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  11472. "tooltip_location": "mouse",
  11473. "tooltip_style": {
  11474. "opacity": 0.9
  11475. },
  11476. "unhovered_style": {},
  11477. "unselected_style": {},
  11478. "visible": true,
  11479. "x": {
  11480. "type": "float",
  11481. "values": []
  11482. },
  11483. "y": {
  11484. "type": "float",
  11485. "values": []
  11486. }
  11487. }
  11488. },
  11489. "71e9dbbd90394771a07998de86a772b1": {
  11490. "model_module": "bqplot",
  11491. "model_module_version": "^0.4.1",
  11492. "model_name": "GraphModel",
  11493. "state": {
  11494. "_model_module": "bqplot",
  11495. "_model_module_version": "^0.4.1",
  11496. "_view_count": null,
  11497. "_view_module": "bqplot",
  11498. "_view_module_version": "^0.4.1",
  11499. "apply_clip": true,
  11500. "charge": -600,
  11501. "color": {
  11502. "type": null,
  11503. "values": null
  11504. },
  11505. "colors": [
  11506. "#1f77b4",
  11507. "#ff7f0e",
  11508. "#2ca02c",
  11509. "#d62728",
  11510. "#9467bd",
  11511. "#8c564b",
  11512. "#e377c2",
  11513. "#7f7f7f",
  11514. "#bcbd22",
  11515. "#17becf"
  11516. ],
  11517. "directed": true,
  11518. "display_legend": false,
  11519. "enable_hover": true,
  11520. "highlight_links": true,
  11521. "hovered_style": {},
  11522. "interactions": {
  11523. "click": "select",
  11524. "hover": "tooltip"
  11525. },
  11526. "labels": [],
  11527. "link_color": {
  11528. "type": "float",
  11529. "values": []
  11530. },
  11531. "link_data": [
  11532. {
  11533. "source": 0,
  11534. "target": 5,
  11535. "value": 1
  11536. },
  11537. {
  11538. "source": 1,
  11539. "target": 5,
  11540. "value": 2
  11541. },
  11542. {
  11543. "source": 2,
  11544. "target": 5,
  11545. "value": 1
  11546. },
  11547. {
  11548. "source": 3,
  11549. "target": 5,
  11550. "value": 2
  11551. },
  11552. {
  11553. "source": 4,
  11554. "target": 5,
  11555. "value": 3
  11556. }
  11557. ],
  11558. "link_distance": 100,
  11559. "link_matrix": {
  11560. "type": "float",
  11561. "values": []
  11562. },
  11563. "link_type": "arc",
  11564. "node_data": [
  11565. "Boba Fett",
  11566. "Yoda",
  11567. "Jabba Desilijic Tiure",
  11568. "Darth Vader",
  11569. "Obi-Wan Kenobi",
  11570. "Beru Whitesun lars",
  11571. "Mon Mothma"
  11572. ],
  11573. "preserve_domain": {},
  11574. "scales": {},
  11575. "scales_metadata": {
  11576. "color": {
  11577. "dimension": "color"
  11578. },
  11579. "link_color": {
  11580. "dimension": "link_color"
  11581. },
  11582. "x": {
  11583. "dimension": "x",
  11584. "orientation": "horizontal"
  11585. },
  11586. "y": {
  11587. "dimension": "y",
  11588. "orientation": "vertical"
  11589. }
  11590. },
  11591. "selected": [],
  11592. "selected_style": {},
  11593. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  11594. "tooltip_location": "mouse",
  11595. "tooltip_style": {
  11596. "opacity": 0.9
  11597. },
  11598. "unhovered_style": {},
  11599. "unselected_style": {},
  11600. "visible": true,
  11601. "x": {
  11602. "type": "float",
  11603. "values": []
  11604. },
  11605. "y": {
  11606. "type": "float",
  11607. "values": []
  11608. }
  11609. }
  11610. },
  11611. "71fdcd8e16b44b84b2fec9b807133479": {
  11612. "model_module": "bqplot",
  11613. "model_module_version": "^0.4.1",
  11614. "model_name": "GraphModel",
  11615. "state": {
  11616. "_model_module": "bqplot",
  11617. "_model_module_version": "^0.4.1",
  11618. "_view_count": null,
  11619. "_view_module": "bqplot",
  11620. "_view_module_version": "^0.4.1",
  11621. "apply_clip": true,
  11622. "charge": -600,
  11623. "color": {
  11624. "type": null,
  11625. "values": null
  11626. },
  11627. "colors": [
  11628. "#1f77b4",
  11629. "#ff7f0e",
  11630. "#2ca02c",
  11631. "#d62728",
  11632. "#9467bd",
  11633. "#8c564b",
  11634. "#e377c2",
  11635. "#7f7f7f",
  11636. "#bcbd22",
  11637. "#17becf"
  11638. ],
  11639. "directed": true,
  11640. "display_legend": false,
  11641. "enable_hover": true,
  11642. "highlight_links": true,
  11643. "hovered_style": {},
  11644. "interactions": {
  11645. "click": "select",
  11646. "hover": "tooltip"
  11647. },
  11648. "labels": [],
  11649. "link_color": {
  11650. "type": "float",
  11651. "values": []
  11652. },
  11653. "link_data": [
  11654. {
  11655. "source": 3,
  11656. "target": 6,
  11657. "value": 1
  11658. }
  11659. ],
  11660. "link_distance": 100,
  11661. "link_matrix": {
  11662. "type": "float",
  11663. "values": []
  11664. },
  11665. "link_type": "arc",
  11666. "node_data": [
  11667. "Boba Fett",
  11668. "Yoda",
  11669. "Jabba Desilijic Tiure",
  11670. "Darth Vader",
  11671. "Obi-Wan Kenobi",
  11672. "Beru Whitesun lars",
  11673. "Mon Mothma"
  11674. ],
  11675. "preserve_domain": {},
  11676. "scales": {},
  11677. "scales_metadata": {
  11678. "color": {
  11679. "dimension": "color"
  11680. },
  11681. "link_color": {
  11682. "dimension": "link_color"
  11683. },
  11684. "x": {
  11685. "dimension": "x",
  11686. "orientation": "horizontal"
  11687. },
  11688. "y": {
  11689. "dimension": "y",
  11690. "orientation": "vertical"
  11691. }
  11692. },
  11693. "selected": [],
  11694. "selected_style": {},
  11695. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  11696. "tooltip_location": "mouse",
  11697. "tooltip_style": {
  11698. "opacity": 0.9
  11699. },
  11700. "unhovered_style": {},
  11701. "unselected_style": {},
  11702. "visible": true,
  11703. "x": {
  11704. "type": "float",
  11705. "values": []
  11706. },
  11707. "y": {
  11708. "type": "float",
  11709. "values": []
  11710. }
  11711. }
  11712. },
  11713. "7786d1da200d428687928885ff571f2b": {
  11714. "model_module": "bqplot",
  11715. "model_module_version": "^0.4.1",
  11716. "model_name": "GraphModel",
  11717. "state": {
  11718. "_model_module": "bqplot",
  11719. "_model_module_version": "^0.4.1",
  11720. "_view_count": null,
  11721. "_view_module": "bqplot",
  11722. "_view_module_version": "^0.4.1",
  11723. "apply_clip": true,
  11724. "charge": -600,
  11725. "color": {
  11726. "type": null,
  11727. "values": null
  11728. },
  11729. "colors": [
  11730. "#1f77b4",
  11731. "#ff7f0e",
  11732. "#2ca02c",
  11733. "#d62728",
  11734. "#9467bd",
  11735. "#8c564b",
  11736. "#e377c2",
  11737. "#7f7f7f",
  11738. "#bcbd22",
  11739. "#17becf"
  11740. ],
  11741. "directed": true,
  11742. "display_legend": false,
  11743. "enable_hover": true,
  11744. "highlight_links": true,
  11745. "hovered_style": {},
  11746. "interactions": {
  11747. "click": "select",
  11748. "hover": "tooltip"
  11749. },
  11750. "labels": [],
  11751. "link_color": {
  11752. "type": "float",
  11753. "values": []
  11754. },
  11755. "link_data": [
  11756. {
  11757. "source": 0,
  11758. "target": 1,
  11759. "value": 3
  11760. },
  11761. {
  11762. "source": 0,
  11763. "target": 2,
  11764. "value": 1
  11765. },
  11766. {
  11767. "source": 0,
  11768. "target": 3,
  11769. "value": 2
  11770. },
  11771. {
  11772. "source": 0,
  11773. "target": 4,
  11774. "value": 3
  11775. },
  11776. {
  11777. "source": 0,
  11778. "target": 5,
  11779. "value": 1
  11780. },
  11781. {
  11782. "source": 0,
  11783. "target": 6,
  11784. "value": 1
  11785. }
  11786. ],
  11787. "link_distance": 100,
  11788. "link_matrix": {
  11789. "type": "float",
  11790. "values": []
  11791. },
  11792. "link_type": "arc",
  11793. "node_data": [
  11794. "Boba Fett",
  11795. "Yoda",
  11796. "Jabba Desilijic Tiure",
  11797. "Darth Vader",
  11798. "Obi-Wan Kenobi",
  11799. "Beru Whitesun lars",
  11800. "Mon Mothma"
  11801. ],
  11802. "preserve_domain": {},
  11803. "scales": {},
  11804. "scales_metadata": {
  11805. "color": {
  11806. "dimension": "color"
  11807. },
  11808. "link_color": {
  11809. "dimension": "link_color"
  11810. },
  11811. "x": {
  11812. "dimension": "x",
  11813. "orientation": "horizontal"
  11814. },
  11815. "y": {
  11816. "dimension": "y",
  11817. "orientation": "vertical"
  11818. }
  11819. },
  11820. "selected": [],
  11821. "selected_style": {},
  11822. "tooltip": "IPY_MODEL_a8a3f98b02094e57b9c9e3daea4bf22d",
  11823. "tooltip_location": "mouse",
  11824. "tooltip_style": {
  11825. "opacity": 0.9
  11826. },
  11827. "unhovered_style": {},
  11828. "unselected_style": {},
  11829. "visible": true,
  11830. "x": {
  11831. "type": "float",
  11832. "values": []
  11833. },
  11834. "y": {
  11835. "type": "float",
  11836. "values": []
  11837. }
  11838. }
  11839. },
  11840. "779ef24b215545d19b8283cfaaab8221": {
  11841. "model_module": "bqplot",
  11842. "model_module_version": "^0.4.1",
  11843. "model_name": "GraphModel",
  11844. "state": {
  11845. "_model_module": "bqplot",
  11846. "_model_module_version": "^0.4.1",
  11847. "_view_count": null,
  11848. "_view_module": "bqplot",
  11849. "_view_module_version": "^0.4.1",
  11850. "apply_clip": true,
  11851. "charge": -600,
  11852. "color": {
  11853. "type": null,
  11854. "values": null
  11855. },
  11856. "colors": [
  11857. "#1f77b4",
  11858. "#ff7f0e",
  11859. "#2ca02c",
  11860. "#d62728",
  11861. "#9467bd",
  11862. "#8c564b",
  11863. "#e377c2",
  11864. "#7f7f7f",
  11865. "#bcbd22",
  11866. "#17becf"
  11867. ],
  11868. "directed": true,
  11869. "display_legend": false,
  11870. "enable_hover": true,
  11871. "highlight_links": true,
  11872. "hovered_style": {},
  11873. "interactions": {
  11874. "click": "select",
  11875. "hover": "tooltip"
  11876. },
  11877. "labels": [],
  11878. "link_color": {
  11879. "type": "float",
  11880. "values": []
  11881. },
  11882. "link_data": [
  11883. {
  11884. "source": 3,
  11885. "target": 6,
  11886. "value": 1
  11887. }
  11888. ],
  11889. "link_distance": 100,
  11890. "link_matrix": {
  11891. "type": "float",
  11892. "values": []
  11893. },
  11894. "link_type": "arc",
  11895. "node_data": [
  11896. "Boba Fett",
  11897. "Yoda",
  11898. "Jabba Desilijic Tiure",
  11899. "Darth Vader",
  11900. "Obi-Wan Kenobi",
  11901. "Beru Whitesun lars",
  11902. "Mon Mothma"
  11903. ],
  11904. "preserve_domain": {},
  11905. "scales": {},
  11906. "scales_metadata": {
  11907. "color": {
  11908. "dimension": "color"
  11909. },
  11910. "link_color": {
  11911. "dimension": "link_color"
  11912. },
  11913. "x": {
  11914. "dimension": "x",
  11915. "orientation": "horizontal"
  11916. },
  11917. "y": {
  11918. "dimension": "y",
  11919. "orientation": "vertical"
  11920. }
  11921. },
  11922. "selected": [],
  11923. "selected_style": {},
  11924. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  11925. "tooltip_location": "mouse",
  11926. "tooltip_style": {
  11927. "opacity": 0.9
  11928. },
  11929. "unhovered_style": {},
  11930. "unselected_style": {},
  11931. "visible": true,
  11932. "x": {
  11933. "type": "float",
  11934. "values": []
  11935. },
  11936. "y": {
  11937. "type": "float",
  11938. "values": []
  11939. }
  11940. }
  11941. },
  11942. "796b46eab05949c7814364d46b3123fc": {
  11943. "model_module": "bqplot",
  11944. "model_module_version": "^0.4.1",
  11945. "model_name": "GraphModel",
  11946. "state": {
  11947. "_model_module": "bqplot",
  11948. "_model_module_version": "^0.4.1",
  11949. "_view_count": null,
  11950. "_view_module": "bqplot",
  11951. "_view_module_version": "^0.4.1",
  11952. "apply_clip": true,
  11953. "charge": -600,
  11954. "color": {
  11955. "type": null,
  11956. "values": null
  11957. },
  11958. "colors": [
  11959. "#1f77b4",
  11960. "#ff7f0e",
  11961. "#2ca02c",
  11962. "#d62728",
  11963. "#9467bd",
  11964. "#8c564b",
  11965. "#e377c2",
  11966. "#7f7f7f",
  11967. "#bcbd22",
  11968. "#17becf"
  11969. ],
  11970. "directed": true,
  11971. "display_legend": false,
  11972. "enable_hover": true,
  11973. "highlight_links": true,
  11974. "hovered_style": {},
  11975. "interactions": {
  11976. "click": "select",
  11977. "hover": "tooltip"
  11978. },
  11979. "labels": [],
  11980. "link_color": {
  11981. "type": "float",
  11982. "values": []
  11983. },
  11984. "link_data": [
  11985. {
  11986. "source": 3,
  11987. "target": 6,
  11988. "value": 1
  11989. }
  11990. ],
  11991. "link_distance": 100,
  11992. "link_matrix": {
  11993. "type": "float",
  11994. "values": []
  11995. },
  11996. "link_type": "arc",
  11997. "node_data": [
  11998. "Boba Fett",
  11999. "Yoda",
  12000. "Jabba Desilijic Tiure",
  12001. "Darth Vader",
  12002. "Obi-Wan Kenobi",
  12003. "Beru Whitesun lars",
  12004. "Mon Mothma"
  12005. ],
  12006. "preserve_domain": {},
  12007. "scales": {},
  12008. "scales_metadata": {
  12009. "color": {
  12010. "dimension": "color"
  12011. },
  12012. "link_color": {
  12013. "dimension": "link_color"
  12014. },
  12015. "x": {
  12016. "dimension": "x",
  12017. "orientation": "horizontal"
  12018. },
  12019. "y": {
  12020. "dimension": "y",
  12021. "orientation": "vertical"
  12022. }
  12023. },
  12024. "selected": [],
  12025. "selected_style": {},
  12026. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  12027. "tooltip_location": "mouse",
  12028. "tooltip_style": {
  12029. "opacity": 0.9
  12030. },
  12031. "unhovered_style": {},
  12032. "unselected_style": {},
  12033. "visible": true,
  12034. "x": {
  12035. "type": "float",
  12036. "values": []
  12037. },
  12038. "y": {
  12039. "type": "float",
  12040. "values": []
  12041. }
  12042. }
  12043. },
  12044. "7e562ff14c194c91a402e65d09c066a1": {
  12045. "model_module": "bqplot",
  12046. "model_module_version": "^0.4.1",
  12047. "model_name": "LinearScaleModel",
  12048. "state": {
  12049. "_model_module_version": "^0.4.1",
  12050. "_view_module_version": "^0.4.1",
  12051. "allow_padding": false,
  12052. "max": 1,
  12053. "min": 0,
  12054. "stabilized": false
  12055. }
  12056. },
  12057. "80b0f0cbd76749ce8f4aa1d9d2dc6ed4": {
  12058. "model_module": "bqplot",
  12059. "model_module_version": "^0.4.1",
  12060. "model_name": "LinearScaleModel",
  12061. "state": {
  12062. "_model_module_version": "^0.4.1",
  12063. "_view_module_version": "^0.4.1",
  12064. "allow_padding": false,
  12065. "max": 1,
  12066. "min": 0,
  12067. "stabilized": false
  12068. }
  12069. },
  12070. "816bf90905154804bc8814e3dfc2860c": {
  12071. "model_module": "bqplot",
  12072. "model_module_version": "^0.4.1",
  12073. "model_name": "FigureModel",
  12074. "state": {
  12075. "_dom_classes": [],
  12076. "_model_module_version": "^0.4.1",
  12077. "_view_module_version": "^0.4.1",
  12078. "layout": "IPY_MODEL_6eea8e2d1d3c429580038e754bc65e87",
  12079. "marks": [
  12080. "IPY_MODEL_274ba76bf4fc4b0e9da6babd96af7000"
  12081. ],
  12082. "scale_x": "IPY_MODEL_03cc37d3fa164ec888d962e9686209fe",
  12083. "scale_y": "IPY_MODEL_42e926bfc1f341e69cf8a84ca77ac012"
  12084. }
  12085. },
  12086. "8264ec1aa51f42208e886ce32a59895b": {
  12087. "model_module": "@jupyter-widgets/base",
  12088. "model_module_version": "1.1.0",
  12089. "model_name": "LayoutModel",
  12090. "state": {
  12091. "min_width": "125px"
  12092. }
  12093. },
  12094. "830b975f1fd44f23901a28f12df32826": {
  12095. "model_module": "bqplot",
  12096. "model_module_version": "^0.4.1",
  12097. "model_name": "LinearScaleModel",
  12098. "state": {
  12099. "_model_module_version": "^0.4.1",
  12100. "_view_module_version": "^0.4.1",
  12101. "allow_padding": false,
  12102. "max": 1,
  12103. "min": 0,
  12104. "stabilized": false
  12105. }
  12106. },
  12107. "83357162276646a4b45b3fc12028044f": {
  12108. "model_module": "bqplot",
  12109. "model_module_version": "^0.4.1",
  12110. "model_name": "GraphModel",
  12111. "state": {
  12112. "_model_module": "bqplot",
  12113. "_model_module_version": "^0.4.1",
  12114. "_view_count": null,
  12115. "_view_module": "bqplot",
  12116. "_view_module_version": "^0.4.1",
  12117. "apply_clip": true,
  12118. "charge": -600,
  12119. "color": {
  12120. "type": null,
  12121. "values": null
  12122. },
  12123. "colors": [
  12124. "#1f77b4",
  12125. "#ff7f0e",
  12126. "#2ca02c",
  12127. "#d62728",
  12128. "#9467bd",
  12129. "#8c564b",
  12130. "#e377c2",
  12131. "#7f7f7f",
  12132. "#bcbd22",
  12133. "#17becf"
  12134. ],
  12135. "directed": true,
  12136. "display_legend": false,
  12137. "enable_hover": true,
  12138. "highlight_links": true,
  12139. "hovered_point": 5,
  12140. "hovered_style": {},
  12141. "interactions": {
  12142. "click": "select",
  12143. "hover": "tooltip"
  12144. },
  12145. "labels": [],
  12146. "link_color": {
  12147. "type": "float",
  12148. "values": []
  12149. },
  12150. "link_data": [
  12151. {
  12152. "source": {
  12153. "index": 0,
  12154. "label": "Boba Fett",
  12155. "label_display": "center",
  12156. "px": 391.9037218952568,
  12157. "py": 196.59730490046576,
  12158. "shape": "circle",
  12159. "shape_attrs": {
  12160. "r": 15
  12161. },
  12162. "value": null,
  12163. "weight": 1,
  12164. "x": 391.9995960094687,
  12165. "y": 196.55950972380532
  12166. },
  12167. "target": {
  12168. "index": 5,
  12169. "label": "Beru Whitesun lars",
  12170. "label_display": "center",
  12171. "px": 288.83650902112663,
  12172. "py": 228.81276794294243,
  12173. "shape": "circle",
  12174. "shape_attrs": {
  12175. "r": 15
  12176. },
  12177. "value": null,
  12178. "weight": 5,
  12179. "x": 288.84313888356627,
  12180. "y": 228.77613376546242
  12181. },
  12182. "value": 1
  12183. },
  12184. {
  12185. "source": {
  12186. "index": 1,
  12187. "label": "Yoda",
  12188. "label_display": "center",
  12189. "px": 344.0012165134858,
  12190. "py": 317.0141470041973,
  12191. "shape": "circle",
  12192. "shape_attrs": {
  12193. "r": 15
  12194. },
  12195. "value": null,
  12196. "weight": 1,
  12197. "x": 343.96866488507544,
  12198. "y": 317.09329791418156
  12199. },
  12200. "target": {
  12201. "index": 5,
  12202. "label": "Beru Whitesun lars",
  12203. "label_display": "center",
  12204. "px": 288.83650902112663,
  12205. "py": 228.81276794294243,
  12206. "shape": "circle",
  12207. "shape_attrs": {
  12208. "r": 15
  12209. },
  12210. "value": null,
  12211. "weight": 5,
  12212. "x": 288.84313888356627,
  12213. "y": 228.77613376546242
  12214. },
  12215. "value": 2
  12216. },
  12217. {
  12218. "source": {
  12219. "index": 2,
  12220. "label": "Jabba Desilijic Tiure",
  12221. "label_display": "center",
  12222. "px": 197.0569636728225,
  12223. "py": 179.41179218037777,
  12224. "shape": "circle",
  12225. "shape_attrs": {
  12226. "r": 15
  12227. },
  12228. "value": null,
  12229. "weight": 1,
  12230. "x": 196.97608391296475,
  12231. "y": 179.38944161945238
  12232. },
  12233. "target": {
  12234. "index": 5,
  12235. "label": "Beru Whitesun lars",
  12236. "label_display": "center",
  12237. "px": 288.83650902112663,
  12238. "py": 228.81276794294243,
  12239. "shape": "circle",
  12240. "shape_attrs": {
  12241. "r": 15
  12242. },
  12243. "value": null,
  12244. "weight": 5,
  12245. "x": 288.84313888356627,
  12246. "y": 228.77613376546242
  12247. },
  12248. "value": 1
  12249. },
  12250. {
  12251. "source": {
  12252. "index": 3,
  12253. "label": "Darth Vader",
  12254. "label_display": "center",
  12255. "px": 312.56255111922957,
  12256. "py": 125.33838379593035,
  12257. "shape": "circle",
  12258. "shape_attrs": {
  12259. "r": 15
  12260. },
  12261. "value": null,
  12262. "weight": 1,
  12263. "x": 312.57251893370886,
  12264. "y": 125.2219211611269
  12265. },
  12266. "target": {
  12267. "index": 5,
  12268. "label": "Beru Whitesun lars",
  12269. "label_display": "center",
  12270. "px": 288.83650902112663,
  12271. "py": 228.81276794294243,
  12272. "shape": "circle",
  12273. "shape_attrs": {
  12274. "r": 15
  12275. },
  12276. "value": null,
  12277. "weight": 5,
  12278. "x": 288.84313888356627,
  12279. "y": 228.77613376546242
  12280. },
  12281. "value": 2
  12282. },
  12283. {
  12284. "source": {
  12285. "index": 4,
  12286. "label": "Obi-Wan Kenobi",
  12287. "label_display": "center",
  12288. "px": 227.21938869139734,
  12289. "py": 315.1741447774067,
  12290. "shape": "circle",
  12291. "shape_attrs": {
  12292. "r": 15
  12293. },
  12294. "value": null,
  12295. "weight": 1,
  12296. "x": 227.18040454608416,
  12297. "y": 315.20260273419524
  12298. },
  12299. "target": {
  12300. "index": 5,
  12301. "label": "Beru Whitesun lars",
  12302. "label_display": "center",
  12303. "px": 288.83650902112663,
  12304. "py": 228.81276794294243,
  12305. "shape": "circle",
  12306. "shape_attrs": {
  12307. "r": 15
  12308. },
  12309. "value": null,
  12310. "weight": 5,
  12311. "x": 288.84313888356627,
  12312. "y": 228.77613376546242
  12313. },
  12314. "value": 3
  12315. }
  12316. ],
  12317. "link_distance": 100,
  12318. "link_matrix": {
  12319. "type": "float",
  12320. "values": []
  12321. },
  12322. "link_type": "arc",
  12323. "node_data": [
  12324. "Boba Fett",
  12325. "Yoda",
  12326. "Jabba Desilijic Tiure",
  12327. "Darth Vader",
  12328. "Obi-Wan Kenobi",
  12329. "Beru Whitesun lars",
  12330. "Mon Mothma"
  12331. ],
  12332. "preserve_domain": {},
  12333. "scales": {},
  12334. "scales_metadata": {
  12335. "color": {
  12336. "dimension": "color"
  12337. },
  12338. "link_color": {
  12339. "dimension": "link_color"
  12340. },
  12341. "x": {
  12342. "dimension": "x",
  12343. "orientation": "horizontal"
  12344. },
  12345. "y": {
  12346. "dimension": "y",
  12347. "orientation": "vertical"
  12348. }
  12349. },
  12350. "selected": [
  12351. 5
  12352. ],
  12353. "selected_style": {},
  12354. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  12355. "tooltip_location": "mouse",
  12356. "tooltip_style": {
  12357. "opacity": 0.9
  12358. },
  12359. "unhovered_style": {},
  12360. "unselected_style": {},
  12361. "visible": true,
  12362. "x": {
  12363. "type": "float",
  12364. "values": []
  12365. },
  12366. "y": {
  12367. "type": "float",
  12368. "values": []
  12369. }
  12370. }
  12371. },
  12372. "861f15f2e4bd424495b361bd8ebb0017": {
  12373. "model_module": "@jupyter-widgets/base",
  12374. "model_module_version": "1.1.0",
  12375. "model_name": "LayoutModel",
  12376. "state": {}
  12377. },
  12378. "87a45fb680c34afcabf929d305f07fe3": {
  12379. "model_module": "bqplot",
  12380. "model_module_version": "^0.4.1",
  12381. "model_name": "GraphModel",
  12382. "state": {
  12383. "_model_module": "bqplot",
  12384. "_model_module_version": "^0.4.1",
  12385. "_view_count": null,
  12386. "_view_module": "bqplot",
  12387. "_view_module_version": "^0.4.1",
  12388. "apply_clip": true,
  12389. "charge": -600,
  12390. "color": {
  12391. "type": null,
  12392. "values": null
  12393. },
  12394. "colors": [
  12395. "#1f77b4",
  12396. "#ff7f0e",
  12397. "#2ca02c",
  12398. "#d62728",
  12399. "#9467bd",
  12400. "#8c564b",
  12401. "#e377c2",
  12402. "#7f7f7f",
  12403. "#bcbd22",
  12404. "#17becf"
  12405. ],
  12406. "directed": true,
  12407. "display_legend": false,
  12408. "enable_hover": true,
  12409. "highlight_links": true,
  12410. "hovered_style": {},
  12411. "interactions": {
  12412. "click": "select",
  12413. "hover": "tooltip"
  12414. },
  12415. "labels": [],
  12416. "link_color": {
  12417. "type": "float",
  12418. "values": []
  12419. },
  12420. "link_data": [
  12421. {
  12422. "source": 3,
  12423. "target": 6,
  12424. "value": 1
  12425. }
  12426. ],
  12427. "link_distance": 100,
  12428. "link_matrix": {
  12429. "type": "float",
  12430. "values": []
  12431. },
  12432. "link_type": "arc",
  12433. "node_data": [
  12434. "Boba Fett",
  12435. "Yoda",
  12436. "Jabba Desilijic Tiure",
  12437. "Darth Vader",
  12438. "Obi-Wan Kenobi",
  12439. "Beru Whitesun lars",
  12440. "Mon Mothma"
  12441. ],
  12442. "preserve_domain": {},
  12443. "scales": {},
  12444. "scales_metadata": {
  12445. "color": {
  12446. "dimension": "color"
  12447. },
  12448. "link_color": {
  12449. "dimension": "link_color"
  12450. },
  12451. "x": {
  12452. "dimension": "x",
  12453. "orientation": "horizontal"
  12454. },
  12455. "y": {
  12456. "dimension": "y",
  12457. "orientation": "vertical"
  12458. }
  12459. },
  12460. "selected": [],
  12461. "selected_style": {},
  12462. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  12463. "tooltip_location": "mouse",
  12464. "tooltip_style": {
  12465. "opacity": 0.9
  12466. },
  12467. "unhovered_style": {},
  12468. "unselected_style": {},
  12469. "visible": true,
  12470. "x": {
  12471. "type": "float",
  12472. "values": []
  12473. },
  12474. "y": {
  12475. "type": "float",
  12476. "values": []
  12477. }
  12478. }
  12479. },
  12480. "8883ea40b4fd4c459ec2032123d1c9c3": {
  12481. "model_module": "bqplot",
  12482. "model_module_version": "^0.4.1",
  12483. "model_name": "LinearScaleModel",
  12484. "state": {
  12485. "_model_module_version": "^0.4.1",
  12486. "_view_module_version": "^0.4.1",
  12487. "allow_padding": false,
  12488. "max": 1,
  12489. "min": 0,
  12490. "stabilized": false
  12491. }
  12492. },
  12493. "8bbda10c5ce345588455eaf01e7dcbb6": {
  12494. "model_module": "bqplot",
  12495. "model_module_version": "^0.4.1",
  12496. "model_name": "GraphModel",
  12497. "state": {
  12498. "_model_module": "bqplot",
  12499. "_model_module_version": "^0.4.1",
  12500. "_view_count": null,
  12501. "_view_module": "bqplot",
  12502. "_view_module_version": "^0.4.1",
  12503. "apply_clip": true,
  12504. "charge": -600,
  12505. "color": {
  12506. "type": null,
  12507. "values": null
  12508. },
  12509. "colors": [
  12510. "#1f77b4",
  12511. "#ff7f0e",
  12512. "#2ca02c",
  12513. "#d62728",
  12514. "#9467bd",
  12515. "#8c564b",
  12516. "#e377c2",
  12517. "#7f7f7f",
  12518. "#bcbd22",
  12519. "#17becf"
  12520. ],
  12521. "directed": true,
  12522. "display_legend": false,
  12523. "enable_hover": true,
  12524. "highlight_links": true,
  12525. "hovered_style": {},
  12526. "interactions": {
  12527. "click": "select",
  12528. "hover": "tooltip"
  12529. },
  12530. "labels": [],
  12531. "link_color": {
  12532. "type": "float",
  12533. "values": []
  12534. },
  12535. "link_data": [
  12536. {
  12537. "source": 3,
  12538. "target": 6,
  12539. "value": 1
  12540. }
  12541. ],
  12542. "link_distance": 100,
  12543. "link_matrix": {
  12544. "type": "float",
  12545. "values": []
  12546. },
  12547. "link_type": "arc",
  12548. "node_data": [
  12549. "Boba Fett",
  12550. "Yoda",
  12551. "Jabba Desilijic Tiure",
  12552. "Darth Vader",
  12553. "Obi-Wan Kenobi",
  12554. "Beru Whitesun lars",
  12555. "Mon Mothma"
  12556. ],
  12557. "preserve_domain": {},
  12558. "scales": {},
  12559. "scales_metadata": {
  12560. "color": {
  12561. "dimension": "color"
  12562. },
  12563. "link_color": {
  12564. "dimension": "link_color"
  12565. },
  12566. "x": {
  12567. "dimension": "x",
  12568. "orientation": "horizontal"
  12569. },
  12570. "y": {
  12571. "dimension": "y",
  12572. "orientation": "vertical"
  12573. }
  12574. },
  12575. "selected": [],
  12576. "selected_style": {},
  12577. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  12578. "tooltip_location": "mouse",
  12579. "tooltip_style": {
  12580. "opacity": 0.9
  12581. },
  12582. "unhovered_style": {},
  12583. "unselected_style": {},
  12584. "visible": true,
  12585. "x": {
  12586. "type": "float",
  12587. "values": []
  12588. },
  12589. "y": {
  12590. "type": "float",
  12591. "values": []
  12592. }
  12593. }
  12594. },
  12595. "8f2b0ecdbdaa4695ae5b2764d11e4a92": {
  12596. "model_module": "bqplot",
  12597. "model_module_version": "^0.4.1",
  12598. "model_name": "GraphModel",
  12599. "state": {
  12600. "_model_module": "bqplot",
  12601. "_model_module_version": "^0.4.1",
  12602. "_view_count": null,
  12603. "_view_module": "bqplot",
  12604. "_view_module_version": "^0.4.1",
  12605. "apply_clip": true,
  12606. "charge": -600,
  12607. "color": {
  12608. "type": null,
  12609. "values": null
  12610. },
  12611. "colors": [
  12612. "#1f77b4",
  12613. "#ff7f0e",
  12614. "#2ca02c",
  12615. "#d62728",
  12616. "#9467bd",
  12617. "#8c564b",
  12618. "#e377c2",
  12619. "#7f7f7f",
  12620. "#bcbd22",
  12621. "#17becf"
  12622. ],
  12623. "directed": true,
  12624. "display_legend": false,
  12625. "enable_hover": true,
  12626. "highlight_links": true,
  12627. "hovered_style": {},
  12628. "interactions": {
  12629. "click": "select",
  12630. "hover": "tooltip"
  12631. },
  12632. "labels": [],
  12633. "link_color": {
  12634. "type": "float",
  12635. "values": []
  12636. },
  12637. "link_data": [
  12638. {
  12639. "source": 3,
  12640. "target": 6,
  12641. "value": 1
  12642. }
  12643. ],
  12644. "link_distance": 100,
  12645. "link_matrix": {
  12646. "type": "float",
  12647. "values": []
  12648. },
  12649. "link_type": "arc",
  12650. "node_data": [
  12651. "Boba Fett",
  12652. "Yoda",
  12653. "Jabba Desilijic Tiure",
  12654. "Darth Vader",
  12655. "Obi-Wan Kenobi",
  12656. "Beru Whitesun lars",
  12657. "Mon Mothma"
  12658. ],
  12659. "preserve_domain": {},
  12660. "scales": {},
  12661. "scales_metadata": {
  12662. "color": {
  12663. "dimension": "color"
  12664. },
  12665. "link_color": {
  12666. "dimension": "link_color"
  12667. },
  12668. "x": {
  12669. "dimension": "x",
  12670. "orientation": "horizontal"
  12671. },
  12672. "y": {
  12673. "dimension": "y",
  12674. "orientation": "vertical"
  12675. }
  12676. },
  12677. "selected": [],
  12678. "selected_style": {},
  12679. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  12680. "tooltip_location": "mouse",
  12681. "tooltip_style": {
  12682. "opacity": 0.9
  12683. },
  12684. "unhovered_style": {},
  12685. "unselected_style": {},
  12686. "visible": true,
  12687. "x": {
  12688. "type": "float",
  12689. "values": []
  12690. },
  12691. "y": {
  12692. "type": "float",
  12693. "values": []
  12694. }
  12695. }
  12696. },
  12697. "90b23b06c3a748e0987c8bb52754b32c": {
  12698. "model_module": "@jupyter-widgets/base",
  12699. "model_module_version": "1.1.0",
  12700. "model_name": "LayoutModel",
  12701. "state": {}
  12702. },
  12703. "911aeb5b513043f5ace845220148ea83": {
  12704. "model_module": "@jupyter-widgets/base",
  12705. "model_module_version": "1.1.0",
  12706. "model_name": "LayoutModel",
  12707. "state": {
  12708. "min_width": "125px"
  12709. }
  12710. },
  12711. "93e757762e1847e7bc04df9c29747c63": {
  12712. "model_module": "bqplot",
  12713. "model_module_version": "^0.4.1",
  12714. "model_name": "GraphModel",
  12715. "state": {
  12716. "_model_module": "bqplot",
  12717. "_model_module_version": "^0.4.1",
  12718. "_view_count": null,
  12719. "_view_module": "bqplot",
  12720. "_view_module_version": "^0.4.1",
  12721. "apply_clip": true,
  12722. "charge": -600,
  12723. "color": {
  12724. "type": null,
  12725. "values": null
  12726. },
  12727. "colors": [
  12728. "#1f77b4",
  12729. "#ff7f0e",
  12730. "#2ca02c",
  12731. "#d62728",
  12732. "#9467bd",
  12733. "#8c564b",
  12734. "#e377c2",
  12735. "#7f7f7f",
  12736. "#bcbd22",
  12737. "#17becf"
  12738. ],
  12739. "directed": true,
  12740. "display_legend": false,
  12741. "enable_hover": true,
  12742. "highlight_links": true,
  12743. "hovered_style": {},
  12744. "interactions": {
  12745. "click": "select",
  12746. "hover": "tooltip"
  12747. },
  12748. "labels": [],
  12749. "link_color": {
  12750. "type": "float",
  12751. "values": []
  12752. },
  12753. "link_data": [
  12754. {
  12755. "source": {
  12756. "fixed": 0,
  12757. "index": 0,
  12758. "label": "Boba Fett",
  12759. "label_display": "center",
  12760. "px": 243.788900223031,
  12761. "py": 223.6040179767033,
  12762. "shape": "circle",
  12763. "shape_attrs": {
  12764. "r": 15
  12765. },
  12766. "value": null,
  12767. "weight": 6,
  12768. "x": 243.65871825768124,
  12769. "y": 223.59046110552416
  12770. },
  12771. "target": {
  12772. "fixed": 0,
  12773. "index": 1,
  12774. "label": "Yoda",
  12775. "label_display": "center",
  12776. "px": 344.7032172278017,
  12777. "py": 173.2248136797028,
  12778. "shape": "circle",
  12779. "shape_attrs": {
  12780. "r": 15
  12781. },
  12782. "value": null,
  12783. "weight": 6,
  12784. "x": 344.7497343170941,
  12785. "y": 173.09932940645007
  12786. },
  12787. "value": 3
  12788. },
  12789. {
  12790. "source": {
  12791. "fixed": 0,
  12792. "index": 0,
  12793. "label": "Boba Fett",
  12794. "label_display": "center",
  12795. "px": 243.788900223031,
  12796. "py": 223.6040179767033,
  12797. "shape": "circle",
  12798. "shape_attrs": {
  12799. "r": 15
  12800. },
  12801. "value": null,
  12802. "weight": 6,
  12803. "x": 243.65871825768124,
  12804. "y": 223.59046110552416
  12805. },
  12806. "target": {
  12807. "fixed": 0,
  12808. "index": 2,
  12809. "label": "Jabba Desilijic Tiure",
  12810. "label_display": "center",
  12811. "px": 319.0500913909853,
  12812. "py": 308.19970588879545,
  12813. "shape": "circle",
  12814. "shape_attrs": {
  12815. "r": 15
  12816. },
  12817. "value": null,
  12818. "weight": 6,
  12819. "x": 319.0744477861439,
  12820. "y": 308.331551040679
  12821. },
  12822. "value": 1
  12823. },
  12824. {
  12825. "source": {
  12826. "fixed": 0,
  12827. "index": 0,
  12828. "label": "Boba Fett",
  12829. "label_display": "center",
  12830. "px": 243.788900223031,
  12831. "py": 223.6040179767033,
  12832. "shape": "circle",
  12833. "shape_attrs": {
  12834. "r": 15
  12835. },
  12836. "value": null,
  12837. "weight": 6,
  12838. "x": 243.65871825768124,
  12839. "y": 223.59046110552416
  12840. },
  12841. "target": {
  12842. "fixed": 0,
  12843. "index": 3,
  12844. "label": "Darth Vader",
  12845. "label_display": "center",
  12846. "px": 261.6153445847692,
  12847. "py": 282.0505097527645,
  12848. "shape": "circle",
  12849. "shape_attrs": {
  12850. "r": 15
  12851. },
  12852. "value": null,
  12853. "weight": 6,
  12854. "x": 261.53252739289604,
  12855. "y": 282.1408635383035
  12856. },
  12857. "value": 2
  12858. },
  12859. {
  12860. "source": {
  12861. "fixed": 0,
  12862. "index": 0,
  12863. "label": "Boba Fett",
  12864. "label_display": "center",
  12865. "px": 243.788900223031,
  12866. "py": 223.6040179767033,
  12867. "shape": "circle",
  12868. "shape_attrs": {
  12869. "r": 15
  12870. },
  12871. "value": null,
  12872. "weight": 6,
  12873. "x": 243.65871825768124,
  12874. "y": 223.59046110552416
  12875. },
  12876. "target": {
  12877. "fixed": 0,
  12878. "index": 4,
  12879. "label": "Obi-Wan Kenobi",
  12880. "label_display": "center",
  12881. "px": 282.33059683827685,
  12882. "py": 176.33328170265347,
  12883. "shape": "circle",
  12884. "shape_attrs": {
  12885. "r": 15
  12886. },
  12887. "value": null,
  12888. "weight": 6,
  12889. "x": 282.26848124639537,
  12890. "y": 176.2302500875373
  12891. },
  12892. "value": 3
  12893. },
  12894. {
  12895. "source": {
  12896. "fixed": 0,
  12897. "index": 0,
  12898. "label": "Boba Fett",
  12899. "label_display": "center",
  12900. "px": 243.788900223031,
  12901. "py": 223.6040179767033,
  12902. "shape": "circle",
  12903. "shape_attrs": {
  12904. "r": 15
  12905. },
  12906. "value": null,
  12907. "weight": 6,
  12908. "x": 243.65871825768124,
  12909. "y": 223.59046110552416
  12910. },
  12911. "target": {
  12912. "fixed": 0,
  12913. "index": 5,
  12914. "label": "Beru Whitesun lars",
  12915. "label_display": "center",
  12916. "px": 365.87321595358253,
  12917. "py": 261.9192744231372,
  12918. "shape": "circle",
  12919. "shape_attrs": {
  12920. "r": 15
  12921. },
  12922. "value": null,
  12923. "weight": 5,
  12924. "x": 365.95673275326357,
  12925. "y": 262.0225416274728
  12926. },
  12927. "value": 1
  12928. },
  12929. {
  12930. "source": {
  12931. "fixed": 0,
  12932. "index": 0,
  12933. "label": "Boba Fett",
  12934. "label_display": "center",
  12935. "px": 243.788900223031,
  12936. "py": 223.6040179767033,
  12937. "shape": "circle",
  12938. "shape_attrs": {
  12939. "r": 15
  12940. },
  12941. "value": null,
  12942. "weight": 6,
  12943. "x": 243.65871825768124,
  12944. "y": 223.59046110552416
  12945. },
  12946. "target": {
  12947. "fixed": 0,
  12948. "index": 6,
  12949. "label": "Mon Mothma",
  12950. "label_display": "center",
  12951. "px": 372.27526818204024,
  12952. "py": 233.89742928824916,
  12953. "shape": "circle",
  12954. "shape_attrs": {
  12955. "r": 15
  12956. },
  12957. "value": null,
  12958. "weight": 5,
  12959. "x": 372.3944815738016,
  12960. "y": 233.81500707264271
  12961. },
  12962. "value": 1
  12963. },
  12964. {
  12965. "source": {
  12966. "fixed": 0,
  12967. "index": 1,
  12968. "label": "Yoda",
  12969. "label_display": "center",
  12970. "px": 344.7032172278017,
  12971. "py": 173.2248136797028,
  12972. "shape": "circle",
  12973. "shape_attrs": {
  12974. "r": 15
  12975. },
  12976. "value": null,
  12977. "weight": 6,
  12978. "x": 344.7497343170941,
  12979. "y": 173.09932940645007
  12980. },
  12981. "target": {
  12982. "fixed": 0,
  12983. "index": 2,
  12984. "label": "Jabba Desilijic Tiure",
  12985. "label_display": "center",
  12986. "px": 319.0500913909853,
  12987. "py": 308.19970588879545,
  12988. "shape": "circle",
  12989. "shape_attrs": {
  12990. "r": 15
  12991. },
  12992. "value": null,
  12993. "weight": 6,
  12994. "x": 319.0744477861439,
  12995. "y": 308.331551040679
  12996. },
  12997. "value": 2
  12998. },
  12999. {
  13000. "source": {
  13001. "fixed": 0,
  13002. "index": 1,
  13003. "label": "Yoda",
  13004. "label_display": "center",
  13005. "px": 344.7032172278017,
  13006. "py": 173.2248136797028,
  13007. "shape": "circle",
  13008. "shape_attrs": {
  13009. "r": 15
  13010. },
  13011. "value": null,
  13012. "weight": 6,
  13013. "x": 344.7497343170941,
  13014. "y": 173.09932940645007
  13015. },
  13016. "target": {
  13017. "fixed": 0,
  13018. "index": 3,
  13019. "label": "Darth Vader",
  13020. "label_display": "center",
  13021. "px": 261.6153445847692,
  13022. "py": 282.0505097527645,
  13023. "shape": "circle",
  13024. "shape_attrs": {
  13025. "r": 15
  13026. },
  13027. "value": null,
  13028. "weight": 6,
  13029. "x": 261.53252739289604,
  13030. "y": 282.1408635383035
  13031. },
  13032. "value": 3
  13033. },
  13034. {
  13035. "source": {
  13036. "fixed": 0,
  13037. "index": 1,
  13038. "label": "Yoda",
  13039. "label_display": "center",
  13040. "px": 344.7032172278017,
  13041. "py": 173.2248136797028,
  13042. "shape": "circle",
  13043. "shape_attrs": {
  13044. "r": 15
  13045. },
  13046. "value": null,
  13047. "weight": 6,
  13048. "x": 344.7497343170941,
  13049. "y": 173.09932940645007
  13050. },
  13051. "target": {
  13052. "fixed": 0,
  13053. "index": 4,
  13054. "label": "Obi-Wan Kenobi",
  13055. "label_display": "center",
  13056. "px": 282.33059683827685,
  13057. "py": 176.33328170265347,
  13058. "shape": "circle",
  13059. "shape_attrs": {
  13060. "r": 15
  13061. },
  13062. "value": null,
  13063. "weight": 6,
  13064. "x": 282.26848124639537,
  13065. "y": 176.2302500875373
  13066. },
  13067. "value": 5
  13068. },
  13069. {
  13070. "source": {
  13071. "fixed": 0,
  13072. "index": 1,
  13073. "label": "Yoda",
  13074. "label_display": "center",
  13075. "px": 344.7032172278017,
  13076. "py": 173.2248136797028,
  13077. "shape": "circle",
  13078. "shape_attrs": {
  13079. "r": 15
  13080. },
  13081. "value": null,
  13082. "weight": 6,
  13083. "x": 344.7497343170941,
  13084. "y": 173.09932940645007
  13085. },
  13086. "target": {
  13087. "fixed": 0,
  13088. "index": 5,
  13089. "label": "Beru Whitesun lars",
  13090. "label_display": "center",
  13091. "px": 365.87321595358253,
  13092. "py": 261.9192744231372,
  13093. "shape": "circle",
  13094. "shape_attrs": {
  13095. "r": 15
  13096. },
  13097. "value": null,
  13098. "weight": 5,
  13099. "x": 365.95673275326357,
  13100. "y": 262.0225416274728
  13101. },
  13102. "value": 2
  13103. },
  13104. {
  13105. "source": {
  13106. "fixed": 0,
  13107. "index": 1,
  13108. "label": "Yoda",
  13109. "label_display": "center",
  13110. "px": 344.7032172278017,
  13111. "py": 173.2248136797028,
  13112. "shape": "circle",
  13113. "shape_attrs": {
  13114. "r": 15
  13115. },
  13116. "value": null,
  13117. "weight": 6,
  13118. "x": 344.7497343170941,
  13119. "y": 173.09932940645007
  13120. },
  13121. "target": {
  13122. "fixed": 0,
  13123. "index": 6,
  13124. "label": "Mon Mothma",
  13125. "label_display": "center",
  13126. "px": 372.27526818204024,
  13127. "py": 233.89742928824916,
  13128. "shape": "circle",
  13129. "shape_attrs": {
  13130. "r": 15
  13131. },
  13132. "value": null,
  13133. "weight": 5,
  13134. "x": 372.3944815738016,
  13135. "y": 233.81500707264271
  13136. },
  13137. "value": 1
  13138. },
  13139. {
  13140. "source": {
  13141. "fixed": 0,
  13142. "index": 2,
  13143. "label": "Jabba Desilijic Tiure",
  13144. "label_display": "center",
  13145. "px": 319.0500913909853,
  13146. "py": 308.19970588879545,
  13147. "shape": "circle",
  13148. "shape_attrs": {
  13149. "r": 15
  13150. },
  13151. "value": null,
  13152. "weight": 6,
  13153. "x": 319.0744477861439,
  13154. "y": 308.331551040679
  13155. },
  13156. "target": {
  13157. "fixed": 0,
  13158. "index": 3,
  13159. "label": "Darth Vader",
  13160. "label_display": "center",
  13161. "px": 261.6153445847692,
  13162. "py": 282.0505097527645,
  13163. "shape": "circle",
  13164. "shape_attrs": {
  13165. "r": 15
  13166. },
  13167. "value": null,
  13168. "weight": 6,
  13169. "x": 261.53252739289604,
  13170. "y": 282.1408635383035
  13171. },
  13172. "value": 2
  13173. },
  13174. {
  13175. "source": {
  13176. "fixed": 0,
  13177. "index": 2,
  13178. "label": "Jabba Desilijic Tiure",
  13179. "label_display": "center",
  13180. "px": 319.0500913909853,
  13181. "py": 308.19970588879545,
  13182. "shape": "circle",
  13183. "shape_attrs": {
  13184. "r": 15
  13185. },
  13186. "value": null,
  13187. "weight": 6,
  13188. "x": 319.0744477861439,
  13189. "y": 308.331551040679
  13190. },
  13191. "target": {
  13192. "fixed": 0,
  13193. "index": 4,
  13194. "label": "Obi-Wan Kenobi",
  13195. "label_display": "center",
  13196. "px": 282.33059683827685,
  13197. "py": 176.33328170265347,
  13198. "shape": "circle",
  13199. "shape_attrs": {
  13200. "r": 15
  13201. },
  13202. "value": null,
  13203. "weight": 6,
  13204. "x": 282.26848124639537,
  13205. "y": 176.2302500875373
  13206. },
  13207. "value": 3
  13208. },
  13209. {
  13210. "source": {
  13211. "fixed": 0,
  13212. "index": 2,
  13213. "label": "Jabba Desilijic Tiure",
  13214. "label_display": "center",
  13215. "px": 319.0500913909853,
  13216. "py": 308.19970588879545,
  13217. "shape": "circle",
  13218. "shape_attrs": {
  13219. "r": 15
  13220. },
  13221. "value": null,
  13222. "weight": 6,
  13223. "x": 319.0744477861439,
  13224. "y": 308.331551040679
  13225. },
  13226. "target": {
  13227. "fixed": 0,
  13228. "index": 5,
  13229. "label": "Beru Whitesun lars",
  13230. "label_display": "center",
  13231. "px": 365.87321595358253,
  13232. "py": 261.9192744231372,
  13233. "shape": "circle",
  13234. "shape_attrs": {
  13235. "r": 15
  13236. },
  13237. "value": null,
  13238. "weight": 5,
  13239. "x": 365.95673275326357,
  13240. "y": 262.0225416274728
  13241. },
  13242. "value": 1
  13243. },
  13244. {
  13245. "source": {
  13246. "fixed": 0,
  13247. "index": 2,
  13248. "label": "Jabba Desilijic Tiure",
  13249. "label_display": "center",
  13250. "px": 319.0500913909853,
  13251. "py": 308.19970588879545,
  13252. "shape": "circle",
  13253. "shape_attrs": {
  13254. "r": 15
  13255. },
  13256. "value": null,
  13257. "weight": 6,
  13258. "x": 319.0744477861439,
  13259. "y": 308.331551040679
  13260. },
  13261. "target": {
  13262. "fixed": 0,
  13263. "index": 6,
  13264. "label": "Mon Mothma",
  13265. "label_display": "center",
  13266. "px": 372.27526818204024,
  13267. "py": 233.89742928824916,
  13268. "shape": "circle",
  13269. "shape_attrs": {
  13270. "r": 15
  13271. },
  13272. "value": null,
  13273. "weight": 5,
  13274. "x": 372.3944815738016,
  13275. "y": 233.81500707264271
  13276. },
  13277. "value": 1
  13278. },
  13279. {
  13280. "source": {
  13281. "fixed": 0,
  13282. "index": 3,
  13283. "label": "Darth Vader",
  13284. "label_display": "center",
  13285. "px": 261.6153445847692,
  13286. "py": 282.0505097527645,
  13287. "shape": "circle",
  13288. "shape_attrs": {
  13289. "r": 15
  13290. },
  13291. "value": null,
  13292. "weight": 6,
  13293. "x": 261.53252739289604,
  13294. "y": 282.1408635383035
  13295. },
  13296. "target": {
  13297. "fixed": 0,
  13298. "index": 4,
  13299. "label": "Obi-Wan Kenobi",
  13300. "label_display": "center",
  13301. "px": 282.33059683827685,
  13302. "py": 176.33328170265347,
  13303. "shape": "circle",
  13304. "shape_attrs": {
  13305. "r": 15
  13306. },
  13307. "value": null,
  13308. "weight": 6,
  13309. "x": 282.26848124639537,
  13310. "y": 176.2302500875373
  13311. },
  13312. "value": 4
  13313. },
  13314. {
  13315. "source": {
  13316. "fixed": 0,
  13317. "index": 3,
  13318. "label": "Darth Vader",
  13319. "label_display": "center",
  13320. "px": 261.6153445847692,
  13321. "py": 282.0505097527645,
  13322. "shape": "circle",
  13323. "shape_attrs": {
  13324. "r": 15
  13325. },
  13326. "value": null,
  13327. "weight": 6,
  13328. "x": 261.53252739289604,
  13329. "y": 282.1408635383035
  13330. },
  13331. "target": {
  13332. "fixed": 0,
  13333. "index": 5,
  13334. "label": "Beru Whitesun lars",
  13335. "label_display": "center",
  13336. "px": 365.87321595358253,
  13337. "py": 261.9192744231372,
  13338. "shape": "circle",
  13339. "shape_attrs": {
  13340. "r": 15
  13341. },
  13342. "value": null,
  13343. "weight": 5,
  13344. "x": 365.95673275326357,
  13345. "y": 262.0225416274728
  13346. },
  13347. "value": 2
  13348. },
  13349. {
  13350. "source": {
  13351. "fixed": 0,
  13352. "index": 3,
  13353. "label": "Darth Vader",
  13354. "label_display": "center",
  13355. "px": 261.6153445847692,
  13356. "py": 282.0505097527645,
  13357. "shape": "circle",
  13358. "shape_attrs": {
  13359. "r": 15
  13360. },
  13361. "value": null,
  13362. "weight": 6,
  13363. "x": 261.53252739289604,
  13364. "y": 282.1408635383035
  13365. },
  13366. "target": {
  13367. "fixed": 0,
  13368. "index": 6,
  13369. "label": "Mon Mothma",
  13370. "label_display": "center",
  13371. "px": 372.27526818204024,
  13372. "py": 233.89742928824916,
  13373. "shape": "circle",
  13374. "shape_attrs": {
  13375. "r": 15
  13376. },
  13377. "value": null,
  13378. "weight": 5,
  13379. "x": 372.3944815738016,
  13380. "y": 233.81500707264271
  13381. },
  13382. "value": 1
  13383. },
  13384. {
  13385. "source": {
  13386. "fixed": 0,
  13387. "index": 4,
  13388. "label": "Obi-Wan Kenobi",
  13389. "label_display": "center",
  13390. "px": 282.33059683827685,
  13391. "py": 176.33328170265347,
  13392. "shape": "circle",
  13393. "shape_attrs": {
  13394. "r": 15
  13395. },
  13396. "value": null,
  13397. "weight": 6,
  13398. "x": 282.26848124639537,
  13399. "y": 176.2302500875373
  13400. },
  13401. "target": {
  13402. "fixed": 0,
  13403. "index": 5,
  13404. "label": "Beru Whitesun lars",
  13405. "label_display": "center",
  13406. "px": 365.87321595358253,
  13407. "py": 261.9192744231372,
  13408. "shape": "circle",
  13409. "shape_attrs": {
  13410. "r": 15
  13411. },
  13412. "value": null,
  13413. "weight": 5,
  13414. "x": 365.95673275326357,
  13415. "y": 262.0225416274728
  13416. },
  13417. "value": 3
  13418. },
  13419. {
  13420. "source": {
  13421. "fixed": 0,
  13422. "index": 4,
  13423. "label": "Obi-Wan Kenobi",
  13424. "label_display": "center",
  13425. "px": 282.33059683827685,
  13426. "py": 176.33328170265347,
  13427. "shape": "circle",
  13428. "shape_attrs": {
  13429. "r": 15
  13430. },
  13431. "value": null,
  13432. "weight": 6,
  13433. "x": 282.26848124639537,
  13434. "y": 176.2302500875373
  13435. },
  13436. "target": {
  13437. "fixed": 0,
  13438. "index": 6,
  13439. "label": "Mon Mothma",
  13440. "label_display": "center",
  13441. "px": 372.27526818204024,
  13442. "py": 233.89742928824916,
  13443. "shape": "circle",
  13444. "shape_attrs": {
  13445. "r": 15
  13446. },
  13447. "value": null,
  13448. "weight": 5,
  13449. "x": 372.3944815738016,
  13450. "y": 233.81500707264271
  13451. },
  13452. "value": 1
  13453. }
  13454. ],
  13455. "link_distance": 100,
  13456. "link_matrix": {
  13457. "type": "float",
  13458. "values": []
  13459. },
  13460. "link_type": "arc",
  13461. "node_data": [
  13462. "Boba Fett",
  13463. "Yoda",
  13464. "Jabba Desilijic Tiure",
  13465. "Darth Vader",
  13466. "Obi-Wan Kenobi",
  13467. "Beru Whitesun lars",
  13468. "Mon Mothma"
  13469. ],
  13470. "preserve_domain": {},
  13471. "scales": {},
  13472. "scales_metadata": {
  13473. "color": {
  13474. "dimension": "color"
  13475. },
  13476. "link_color": {
  13477. "dimension": "link_color"
  13478. },
  13479. "x": {
  13480. "dimension": "x",
  13481. "orientation": "horizontal"
  13482. },
  13483. "y": {
  13484. "dimension": "y",
  13485. "orientation": "vertical"
  13486. }
  13487. },
  13488. "selected": [
  13489. 2
  13490. ],
  13491. "selected_style": {},
  13492. "tooltip": "IPY_MODEL_b456bea291df441c8e6f80b5b6d54fba",
  13493. "tooltip_location": "mouse",
  13494. "tooltip_style": {
  13495. "opacity": 0.9
  13496. },
  13497. "unhovered_style": {},
  13498. "unselected_style": {},
  13499. "visible": true,
  13500. "x": {
  13501. "type": "float",
  13502. "values": []
  13503. },
  13504. "y": {
  13505. "type": "float",
  13506. "values": []
  13507. }
  13508. }
  13509. },
  13510. "9523fcd5668e4cf29fec9e4e4ccafc08": {
  13511. "model_module": "bqplot",
  13512. "model_module_version": "^0.4.1",
  13513. "model_name": "LinearScaleModel",
  13514. "state": {
  13515. "_model_module_version": "^0.4.1",
  13516. "_view_module_version": "^0.4.1",
  13517. "allow_padding": false,
  13518. "max": 1,
  13519. "min": 0,
  13520. "stabilized": false
  13521. }
  13522. },
  13523. "954e28986b5642c8866f50b329dd9a19": {
  13524. "model_module": "bqplot",
  13525. "model_module_version": "^0.4.1",
  13526. "model_name": "GraphModel",
  13527. "state": {
  13528. "_model_module": "bqplot",
  13529. "_model_module_version": "^0.4.1",
  13530. "_view_count": null,
  13531. "_view_module": "bqplot",
  13532. "_view_module_version": "^0.4.1",
  13533. "apply_clip": true,
  13534. "charge": -600,
  13535. "color": {
  13536. "type": null,
  13537. "values": null
  13538. },
  13539. "colors": [
  13540. "#1f77b4",
  13541. "#ff7f0e",
  13542. "#2ca02c",
  13543. "#d62728",
  13544. "#9467bd",
  13545. "#8c564b",
  13546. "#e377c2",
  13547. "#7f7f7f",
  13548. "#bcbd22",
  13549. "#17becf"
  13550. ],
  13551. "directed": true,
  13552. "display_legend": false,
  13553. "enable_hover": true,
  13554. "highlight_links": true,
  13555. "hovered_style": {},
  13556. "interactions": {
  13557. "click": "select",
  13558. "hover": "tooltip"
  13559. },
  13560. "labels": [],
  13561. "link_color": {
  13562. "type": "float",
  13563. "values": []
  13564. },
  13565. "link_data": [
  13566. {
  13567. "source": 0,
  13568. "target": 5,
  13569. "value": 1
  13570. },
  13571. {
  13572. "source": 1,
  13573. "target": 5,
  13574. "value": 2
  13575. },
  13576. {
  13577. "source": 2,
  13578. "target": 5,
  13579. "value": 1
  13580. },
  13581. {
  13582. "source": 3,
  13583. "target": 5,
  13584. "value": 2
  13585. },
  13586. {
  13587. "source": 4,
  13588. "target": 5,
  13589. "value": 3
  13590. }
  13591. ],
  13592. "link_distance": 100,
  13593. "link_matrix": {
  13594. "type": "float",
  13595. "values": []
  13596. },
  13597. "link_type": "arc",
  13598. "node_data": [
  13599. "Boba Fett",
  13600. "Yoda",
  13601. "Jabba Desilijic Tiure",
  13602. "Darth Vader",
  13603. "Obi-Wan Kenobi",
  13604. "Beru Whitesun lars",
  13605. "Mon Mothma"
  13606. ],
  13607. "preserve_domain": {},
  13608. "scales": {},
  13609. "scales_metadata": {
  13610. "color": {
  13611. "dimension": "color"
  13612. },
  13613. "link_color": {
  13614. "dimension": "link_color"
  13615. },
  13616. "x": {
  13617. "dimension": "x",
  13618. "orientation": "horizontal"
  13619. },
  13620. "y": {
  13621. "dimension": "y",
  13622. "orientation": "vertical"
  13623. }
  13624. },
  13625. "selected": [],
  13626. "selected_style": {},
  13627. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  13628. "tooltip_location": "mouse",
  13629. "tooltip_style": {
  13630. "opacity": 0.9
  13631. },
  13632. "unhovered_style": {},
  13633. "unselected_style": {},
  13634. "visible": true,
  13635. "x": {
  13636. "type": "float",
  13637. "values": []
  13638. },
  13639. "y": {
  13640. "type": "float",
  13641. "values": []
  13642. }
  13643. }
  13644. },
  13645. "9567492c5fec4f87ac07a91bb319f3d7": {
  13646. "model_module": "@jupyter-widgets/base",
  13647. "model_module_version": "1.1.0",
  13648. "model_name": "LayoutModel",
  13649. "state": {}
  13650. },
  13651. "960cb6e3830242438e544dd9eb3cdd86": {
  13652. "model_module": "bqplot",
  13653. "model_module_version": "^0.4.1",
  13654. "model_name": "GraphModel",
  13655. "state": {
  13656. "_model_module": "bqplot",
  13657. "_model_module_version": "^0.4.1",
  13658. "_view_count": null,
  13659. "_view_module": "bqplot",
  13660. "_view_module_version": "^0.4.1",
  13661. "apply_clip": true,
  13662. "charge": -600,
  13663. "color": {
  13664. "type": null,
  13665. "values": null
  13666. },
  13667. "colors": [
  13668. "#1f77b4",
  13669. "#ff7f0e",
  13670. "#2ca02c",
  13671. "#d62728",
  13672. "#9467bd",
  13673. "#8c564b",
  13674. "#e377c2",
  13675. "#7f7f7f",
  13676. "#bcbd22",
  13677. "#17becf"
  13678. ],
  13679. "directed": true,
  13680. "display_legend": false,
  13681. "enable_hover": true,
  13682. "highlight_links": true,
  13683. "hovered_style": {},
  13684. "interactions": {
  13685. "click": "select",
  13686. "hover": "tooltip"
  13687. },
  13688. "labels": [],
  13689. "link_color": {
  13690. "type": "float",
  13691. "values": []
  13692. },
  13693. "link_data": [
  13694. {
  13695. "source": 0,
  13696. "target": 5,
  13697. "value": 1
  13698. },
  13699. {
  13700. "source": 1,
  13701. "target": 5,
  13702. "value": 2
  13703. },
  13704. {
  13705. "source": 2,
  13706. "target": 5,
  13707. "value": 1
  13708. },
  13709. {
  13710. "source": 3,
  13711. "target": 5,
  13712. "value": 2
  13713. },
  13714. {
  13715. "source": 4,
  13716. "target": 5,
  13717. "value": 3
  13718. }
  13719. ],
  13720. "link_distance": 100,
  13721. "link_matrix": {
  13722. "type": "float",
  13723. "values": []
  13724. },
  13725. "link_type": "arc",
  13726. "node_data": [
  13727. "Boba Fett",
  13728. "Yoda",
  13729. "Jabba Desilijic Tiure",
  13730. "Darth Vader",
  13731. "Obi-Wan Kenobi",
  13732. "Beru Whitesun lars",
  13733. "Mon Mothma"
  13734. ],
  13735. "preserve_domain": {},
  13736. "scales": {},
  13737. "scales_metadata": {
  13738. "color": {
  13739. "dimension": "color"
  13740. },
  13741. "link_color": {
  13742. "dimension": "link_color"
  13743. },
  13744. "x": {
  13745. "dimension": "x",
  13746. "orientation": "horizontal"
  13747. },
  13748. "y": {
  13749. "dimension": "y",
  13750. "orientation": "vertical"
  13751. }
  13752. },
  13753. "selected": [],
  13754. "selected_style": {},
  13755. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  13756. "tooltip_location": "mouse",
  13757. "tooltip_style": {
  13758. "opacity": 0.9
  13759. },
  13760. "unhovered_style": {},
  13761. "unselected_style": {},
  13762. "visible": true,
  13763. "x": {
  13764. "type": "float",
  13765. "values": []
  13766. },
  13767. "y": {
  13768. "type": "float",
  13769. "values": []
  13770. }
  13771. }
  13772. },
  13773. "9723405b11534731a2c99e5f543fd94b": {
  13774. "model_module": "bqplot",
  13775. "model_module_version": "^0.4.1",
  13776. "model_name": "GraphModel",
  13777. "state": {
  13778. "_model_module": "bqplot",
  13779. "_model_module_version": "^0.4.1",
  13780. "_view_count": null,
  13781. "_view_module": "bqplot",
  13782. "_view_module_version": "^0.4.1",
  13783. "apply_clip": true,
  13784. "charge": -600,
  13785. "color": {
  13786. "type": null,
  13787. "values": null
  13788. },
  13789. "colors": [
  13790. "#1f77b4",
  13791. "#ff7f0e",
  13792. "#2ca02c",
  13793. "#d62728",
  13794. "#9467bd",
  13795. "#8c564b",
  13796. "#e377c2",
  13797. "#7f7f7f",
  13798. "#bcbd22",
  13799. "#17becf"
  13800. ],
  13801. "directed": true,
  13802. "display_legend": false,
  13803. "enable_hover": true,
  13804. "highlight_links": true,
  13805. "hovered_style": {},
  13806. "interactions": {
  13807. "click": "select",
  13808. "hover": "tooltip"
  13809. },
  13810. "labels": [],
  13811. "link_color": {
  13812. "type": "float",
  13813. "values": []
  13814. },
  13815. "link_data": [
  13816. {
  13817. "source": 3,
  13818. "target": 6,
  13819. "value": 1
  13820. }
  13821. ],
  13822. "link_distance": 100,
  13823. "link_matrix": {
  13824. "type": "float",
  13825. "values": []
  13826. },
  13827. "link_type": "arc",
  13828. "node_data": [
  13829. "Boba Fett",
  13830. "Yoda",
  13831. "Jabba Desilijic Tiure",
  13832. "Darth Vader",
  13833. "Obi-Wan Kenobi",
  13834. "Beru Whitesun lars",
  13835. "Mon Mothma"
  13836. ],
  13837. "preserve_domain": {},
  13838. "scales": {},
  13839. "scales_metadata": {
  13840. "color": {
  13841. "dimension": "color"
  13842. },
  13843. "link_color": {
  13844. "dimension": "link_color"
  13845. },
  13846. "x": {
  13847. "dimension": "x",
  13848. "orientation": "horizontal"
  13849. },
  13850. "y": {
  13851. "dimension": "y",
  13852. "orientation": "vertical"
  13853. }
  13854. },
  13855. "selected": [],
  13856. "selected_style": {},
  13857. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  13858. "tooltip_location": "mouse",
  13859. "tooltip_style": {
  13860. "opacity": 0.9
  13861. },
  13862. "unhovered_style": {},
  13863. "unselected_style": {},
  13864. "visible": true,
  13865. "x": {
  13866. "type": "float",
  13867. "values": []
  13868. },
  13869. "y": {
  13870. "type": "float",
  13871. "values": []
  13872. }
  13873. }
  13874. },
  13875. "984ab9e97e4744a9b5102ae849835a40": {
  13876. "model_module": "bqplot",
  13877. "model_module_version": "^0.4.1",
  13878. "model_name": "TooltipModel",
  13879. "state": {
  13880. "_model_module_version": "^0.4.1",
  13881. "_view_module_version": "^0.4.1",
  13882. "fields": [
  13883. "label"
  13884. ],
  13885. "layout": "IPY_MODEL_a0ed0de561134c53a25b1ad7750f26ed"
  13886. }
  13887. },
  13888. "984c82bae9934ef68c44b3dd48213ead": {
  13889. "model_module": "bqplot",
  13890. "model_module_version": "^0.4.1",
  13891. "model_name": "FigureModel",
  13892. "state": {
  13893. "_dom_classes": [],
  13894. "_model_module_version": "^0.4.1",
  13895. "_view_module_version": "^0.4.1",
  13896. "layout": "IPY_MODEL_61bd572a691d447d95a4d7a373ced96e",
  13897. "marks": [
  13898. "IPY_MODEL_3907290c381a4ffb8541f0535c4395ee"
  13899. ],
  13900. "scale_x": "IPY_MODEL_8883ea40b4fd4c459ec2032123d1c9c3",
  13901. "scale_y": "IPY_MODEL_c103776d3360476fbf7db6cf4117ceee"
  13902. }
  13903. },
  13904. "9a13c1f95bbb408a80dd5052486e33d3": {
  13905. "model_module": "bqplot",
  13906. "model_module_version": "^0.4.1",
  13907. "model_name": "LinearScaleModel",
  13908. "state": {
  13909. "_model_module_version": "^0.4.1",
  13910. "_view_module_version": "^0.4.1",
  13911. "allow_padding": false,
  13912. "max": 1,
  13913. "min": 0,
  13914. "stabilized": false
  13915. }
  13916. },
  13917. "9a6516d9fdbc4843ac7111e93181bc29": {
  13918. "model_module": "bqplot",
  13919. "model_module_version": "^0.4.1",
  13920. "model_name": "GraphModel",
  13921. "state": {
  13922. "_model_module": "bqplot",
  13923. "_model_module_version": "^0.4.1",
  13924. "_view_count": null,
  13925. "_view_module": "bqplot",
  13926. "_view_module_version": "^0.4.1",
  13927. "apply_clip": true,
  13928. "charge": -600,
  13929. "color": {
  13930. "type": null,
  13931. "values": null
  13932. },
  13933. "colors": [
  13934. "#1f77b4",
  13935. "#ff7f0e",
  13936. "#2ca02c",
  13937. "#d62728",
  13938. "#9467bd",
  13939. "#8c564b",
  13940. "#e377c2",
  13941. "#7f7f7f",
  13942. "#bcbd22",
  13943. "#17becf"
  13944. ],
  13945. "directed": true,
  13946. "display_legend": false,
  13947. "enable_hover": true,
  13948. "highlight_links": true,
  13949. "hovered_style": {},
  13950. "interactions": {
  13951. "click": "select",
  13952. "hover": "tooltip"
  13953. },
  13954. "labels": [],
  13955. "link_color": {
  13956. "type": "float",
  13957. "values": []
  13958. },
  13959. "link_data": [
  13960. {
  13961. "source": 3,
  13962. "target": 6,
  13963. "value": 1
  13964. }
  13965. ],
  13966. "link_distance": 100,
  13967. "link_matrix": {
  13968. "type": "float",
  13969. "values": []
  13970. },
  13971. "link_type": "arc",
  13972. "node_data": [
  13973. "Boba Fett",
  13974. "Yoda",
  13975. "Jabba Desilijic Tiure",
  13976. "Darth Vader",
  13977. "Obi-Wan Kenobi",
  13978. "Beru Whitesun lars",
  13979. "Mon Mothma"
  13980. ],
  13981. "preserve_domain": {},
  13982. "scales": {},
  13983. "scales_metadata": {
  13984. "color": {
  13985. "dimension": "color"
  13986. },
  13987. "link_color": {
  13988. "dimension": "link_color"
  13989. },
  13990. "x": {
  13991. "dimension": "x",
  13992. "orientation": "horizontal"
  13993. },
  13994. "y": {
  13995. "dimension": "y",
  13996. "orientation": "vertical"
  13997. }
  13998. },
  13999. "selected": [],
  14000. "selected_style": {},
  14001. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  14002. "tooltip_location": "mouse",
  14003. "tooltip_style": {
  14004. "opacity": 0.9
  14005. },
  14006. "unhovered_style": {},
  14007. "unselected_style": {},
  14008. "visible": true,
  14009. "x": {
  14010. "type": "float",
  14011. "values": []
  14012. },
  14013. "y": {
  14014. "type": "float",
  14015. "values": []
  14016. }
  14017. }
  14018. },
  14019. "9b5ee2534cfc45ddb8e8e0761f6302c7": {
  14020. "model_module": "bqplot",
  14021. "model_module_version": "^0.4.1",
  14022. "model_name": "GraphModel",
  14023. "state": {
  14024. "_model_module": "bqplot",
  14025. "_model_module_version": "^0.4.1",
  14026. "_view_count": null,
  14027. "_view_module": "bqplot",
  14028. "_view_module_version": "^0.4.1",
  14029. "apply_clip": true,
  14030. "charge": -600,
  14031. "color": {
  14032. "type": null,
  14033. "values": null
  14034. },
  14035. "colors": [
  14036. "#1f77b4",
  14037. "#ff7f0e",
  14038. "#2ca02c",
  14039. "#d62728",
  14040. "#9467bd",
  14041. "#8c564b",
  14042. "#e377c2",
  14043. "#7f7f7f",
  14044. "#bcbd22",
  14045. "#17becf"
  14046. ],
  14047. "directed": true,
  14048. "display_legend": false,
  14049. "enable_hover": true,
  14050. "highlight_links": true,
  14051. "hovered_style": {},
  14052. "interactions": {
  14053. "click": "select",
  14054. "hover": "tooltip"
  14055. },
  14056. "labels": [],
  14057. "link_color": {
  14058. "type": "float",
  14059. "values": []
  14060. },
  14061. "link_data": [
  14062. {
  14063. "source": 3,
  14064. "target": 6,
  14065. "value": 1
  14066. }
  14067. ],
  14068. "link_distance": 100,
  14069. "link_matrix": {
  14070. "type": "float",
  14071. "values": []
  14072. },
  14073. "link_type": "arc",
  14074. "node_data": [
  14075. "Boba Fett",
  14076. "Yoda",
  14077. "Jabba Desilijic Tiure",
  14078. "Darth Vader",
  14079. "Obi-Wan Kenobi",
  14080. "Beru Whitesun lars",
  14081. "Mon Mothma"
  14082. ],
  14083. "preserve_domain": {},
  14084. "scales": {},
  14085. "scales_metadata": {
  14086. "color": {
  14087. "dimension": "color"
  14088. },
  14089. "link_color": {
  14090. "dimension": "link_color"
  14091. },
  14092. "x": {
  14093. "dimension": "x",
  14094. "orientation": "horizontal"
  14095. },
  14096. "y": {
  14097. "dimension": "y",
  14098. "orientation": "vertical"
  14099. }
  14100. },
  14101. "selected": [],
  14102. "selected_style": {},
  14103. "tooltip": "IPY_MODEL_984ab9e97e4744a9b5102ae849835a40",
  14104. "tooltip_location": "mouse",
  14105. "tooltip_style": {
  14106. "opacity": 0.9
  14107. },
  14108. "unhovered_style": {},
  14109. "unselected_style": {},
  14110. "visible": true,
  14111. "x": {
  14112. "type": "float",
  14113. "values": []
  14114. },
  14115. "y": {
  14116. "type": "float",
  14117. "values": []
  14118. }
  14119. }
  14120. },
  14121. "9ba7a2d9c90346edaa1646c6143efbc4": {
  14122. "model_module": "bqplot",
  14123. "model_module_version": "^0.4.1",
  14124. "model_name": "TooltipModel",
  14125. "state": {
  14126. "_model_module_version": "^0.4.1",
  14127. "_view_module_version": "^0.4.1",
  14128. "fields": [
  14129. "label"
  14130. ],
  14131. "layout": "IPY_MODEL_6819791579944c3a93a305a50c4514a3"
  14132. }
  14133. },
  14134. "9efb6b4c80c84412b95d28d5f6257027": {
  14135. "model_module": "bqplot",
  14136. "model_module_version": "^0.4.1",
  14137. "model_name": "GraphModel",
  14138. "state": {
  14139. "_model_module": "bqplot",
  14140. "_model_module_version": "^0.4.1",
  14141. "_view_count": null,
  14142. "_view_module": "bqplot",
  14143. "_view_module_version": "^0.4.1",
  14144. "apply_clip": true,
  14145. "charge": -600,
  14146. "color": {
  14147. "type": null,
  14148. "values": null
  14149. },
  14150. "colors": [
  14151. "#1f77b4",
  14152. "#ff7f0e",
  14153. "#2ca02c",
  14154. "#d62728",
  14155. "#9467bd",
  14156. "#8c564b",
  14157. "#e377c2",
  14158. "#7f7f7f",
  14159. "#bcbd22",
  14160. "#17becf"
  14161. ],
  14162. "directed": true,
  14163. "display_legend": false,
  14164. "enable_hover": true,
  14165. "highlight_links": true,
  14166. "hovered_style": {},
  14167. "interactions": {
  14168. "click": "select",
  14169. "hover": "tooltip"
  14170. },
  14171. "labels": [],
  14172. "link_color": {
  14173. "type": "float",
  14174. "values": []
  14175. },
  14176. "link_data": [
  14177. {
  14178. "source": 0,
  14179. "target": 5,
  14180. "value": 1
  14181. },
  14182. {
  14183. "source": 1,
  14184. "target": 5,
  14185. "value": 2
  14186. },
  14187. {
  14188. "source": 2,
  14189. "target": 5,
  14190. "value": 1
  14191. },
  14192. {
  14193. "source": 3,
  14194. "target": 5,
  14195. "value": 2
  14196. },
  14197. {
  14198. "source": 4,
  14199. "target": 5,
  14200. "value": 3
  14201. }
  14202. ],
  14203. "link_distance": 100,
  14204. "link_matrix": {
  14205. "type": "float",
  14206. "values": []
  14207. },
  14208. "link_type": "arc",
  14209. "node_data": [
  14210. "Boba Fett",
  14211. "Yoda",
  14212. "Jabba Desilijic Tiure",
  14213. "Darth Vader",
  14214. "Obi-Wan Kenobi",
  14215. "Beru Whitesun lars",
  14216. "Mon Mothma"
  14217. ],
  14218. "preserve_domain": {},
  14219. "scales": {},
  14220. "scales_metadata": {
  14221. "color": {
  14222. "dimension": "color"
  14223. },
  14224. "link_color": {
  14225. "dimension": "link_color"
  14226. },
  14227. "x": {
  14228. "dimension": "x",
  14229. "orientation": "horizontal"
  14230. },
  14231. "y": {
  14232. "dimension": "y",
  14233. "orientation": "vertical"
  14234. }
  14235. },
  14236. "selected": [],
  14237. "selected_style": {},
  14238. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  14239. "tooltip_location": "mouse",
  14240. "tooltip_style": {
  14241. "opacity": 0.9
  14242. },
  14243. "unhovered_style": {},
  14244. "unselected_style": {},
  14245. "visible": true,
  14246. "x": {
  14247. "type": "float",
  14248. "values": []
  14249. },
  14250. "y": {
  14251. "type": "float",
  14252. "values": []
  14253. }
  14254. }
  14255. },
  14256. "a01bf4ffd663470984bf80164deaf035": {
  14257. "model_module": "bqplot",
  14258. "model_module_version": "^0.4.1",
  14259. "model_name": "LinearScaleModel",
  14260. "state": {
  14261. "_model_module_version": "^0.4.1",
  14262. "_view_module_version": "^0.4.1",
  14263. "allow_padding": false,
  14264. "max": 1,
  14265. "min": 0,
  14266. "stabilized": false
  14267. }
  14268. },
  14269. "a0ac6cf818d4403aa548f51fc99b3b39": {
  14270. "model_module": "bqplot",
  14271. "model_module_version": "^0.4.1",
  14272. "model_name": "GraphModel",
  14273. "state": {
  14274. "_model_module": "bqplot",
  14275. "_model_module_version": "^0.4.1",
  14276. "_view_count": null,
  14277. "_view_module": "bqplot",
  14278. "_view_module_version": "^0.4.1",
  14279. "apply_clip": true,
  14280. "charge": -600,
  14281. "color": {
  14282. "type": null,
  14283. "values": null
  14284. },
  14285. "colors": [
  14286. "#1f77b4",
  14287. "#ff7f0e",
  14288. "#2ca02c",
  14289. "#d62728",
  14290. "#9467bd",
  14291. "#8c564b",
  14292. "#e377c2",
  14293. "#7f7f7f",
  14294. "#bcbd22",
  14295. "#17becf"
  14296. ],
  14297. "directed": true,
  14298. "display_legend": false,
  14299. "enable_hover": true,
  14300. "highlight_links": true,
  14301. "hovered_style": {},
  14302. "interactions": {
  14303. "click": "select",
  14304. "hover": "tooltip"
  14305. },
  14306. "labels": [],
  14307. "link_color": {
  14308. "type": "float",
  14309. "values": []
  14310. },
  14311. "link_data": [
  14312. {
  14313. "source": 3,
  14314. "target": 6,
  14315. "value": 1
  14316. }
  14317. ],
  14318. "link_distance": 100,
  14319. "link_matrix": {
  14320. "type": "float",
  14321. "values": []
  14322. },
  14323. "link_type": "arc",
  14324. "node_data": [
  14325. "Boba Fett",
  14326. "Yoda",
  14327. "Jabba Desilijic Tiure",
  14328. "Darth Vader",
  14329. "Obi-Wan Kenobi",
  14330. "Beru Whitesun lars",
  14331. "Mon Mothma"
  14332. ],
  14333. "preserve_domain": {},
  14334. "scales": {},
  14335. "scales_metadata": {
  14336. "color": {
  14337. "dimension": "color"
  14338. },
  14339. "link_color": {
  14340. "dimension": "link_color"
  14341. },
  14342. "x": {
  14343. "dimension": "x",
  14344. "orientation": "horizontal"
  14345. },
  14346. "y": {
  14347. "dimension": "y",
  14348. "orientation": "vertical"
  14349. }
  14350. },
  14351. "selected": [],
  14352. "selected_style": {},
  14353. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  14354. "tooltip_location": "mouse",
  14355. "tooltip_style": {
  14356. "opacity": 0.9
  14357. },
  14358. "unhovered_style": {},
  14359. "unselected_style": {},
  14360. "visible": true,
  14361. "x": {
  14362. "type": "float",
  14363. "values": []
  14364. },
  14365. "y": {
  14366. "type": "float",
  14367. "values": []
  14368. }
  14369. }
  14370. },
  14371. "a0ed0de561134c53a25b1ad7750f26ed": {
  14372. "model_module": "@jupyter-widgets/base",
  14373. "model_module_version": "1.1.0",
  14374. "model_name": "LayoutModel",
  14375. "state": {}
  14376. },
  14377. "a304b439a0194efaa2a7ee4c1c1768a3": {
  14378. "model_module": "bqplot",
  14379. "model_module_version": "^0.4.1",
  14380. "model_name": "LinearScaleModel",
  14381. "state": {
  14382. "_model_module_version": "^0.4.1",
  14383. "_view_module_version": "^0.4.1",
  14384. "allow_padding": false,
  14385. "max": 1,
  14386. "min": 0,
  14387. "stabilized": false
  14388. }
  14389. },
  14390. "a47ce31f4f4f4d42b6b76c2d85b6044f": {
  14391. "model_module": "bqplot",
  14392. "model_module_version": "^0.4.1",
  14393. "model_name": "TooltipModel",
  14394. "state": {
  14395. "_model_module_version": "^0.4.1",
  14396. "_view_module_version": "^0.4.1",
  14397. "fields": [
  14398. "label"
  14399. ],
  14400. "layout": "IPY_MODEL_f093458356414d469ca20d4dfd751169"
  14401. }
  14402. },
  14403. "a5655dd59983454394474bdf423f4456": {
  14404. "model_module": "bqplot",
  14405. "model_module_version": "^0.4.1",
  14406. "model_name": "LinearScaleModel",
  14407. "state": {
  14408. "_model_module_version": "^0.4.1",
  14409. "_view_module_version": "^0.4.1",
  14410. "allow_padding": false,
  14411. "max": 1,
  14412. "min": 0,
  14413. "stabilized": false
  14414. }
  14415. },
  14416. "a733ea6821db474d90232c28f6b69077": {
  14417. "model_module": "bqplot",
  14418. "model_module_version": "^0.4.1",
  14419. "model_name": "GraphModel",
  14420. "state": {
  14421. "_model_module": "bqplot",
  14422. "_model_module_version": "^0.4.1",
  14423. "_view_count": null,
  14424. "_view_module": "bqplot",
  14425. "_view_module_version": "^0.4.1",
  14426. "apply_clip": true,
  14427. "charge": -600,
  14428. "color": {
  14429. "type": null,
  14430. "values": null
  14431. },
  14432. "colors": [
  14433. "#1f77b4",
  14434. "#ff7f0e",
  14435. "#2ca02c",
  14436. "#d62728",
  14437. "#9467bd",
  14438. "#8c564b",
  14439. "#e377c2",
  14440. "#7f7f7f",
  14441. "#bcbd22",
  14442. "#17becf"
  14443. ],
  14444. "directed": true,
  14445. "display_legend": false,
  14446. "enable_hover": true,
  14447. "highlight_links": true,
  14448. "hovered_style": {},
  14449. "interactions": {
  14450. "click": "select",
  14451. "hover": "tooltip"
  14452. },
  14453. "labels": [],
  14454. "link_color": {
  14455. "type": "float",
  14456. "values": []
  14457. },
  14458. "link_data": [
  14459. {
  14460. "source": 3,
  14461. "target": 6,
  14462. "value": 1
  14463. }
  14464. ],
  14465. "link_distance": 100,
  14466. "link_matrix": {
  14467. "type": "float",
  14468. "values": []
  14469. },
  14470. "link_type": "arc",
  14471. "node_data": [
  14472. "Boba Fett",
  14473. "Yoda",
  14474. "Jabba Desilijic Tiure",
  14475. "Darth Vader",
  14476. "Obi-Wan Kenobi",
  14477. "Beru Whitesun lars",
  14478. "Mon Mothma"
  14479. ],
  14480. "preserve_domain": {},
  14481. "scales": {},
  14482. "scales_metadata": {
  14483. "color": {
  14484. "dimension": "color"
  14485. },
  14486. "link_color": {
  14487. "dimension": "link_color"
  14488. },
  14489. "x": {
  14490. "dimension": "x",
  14491. "orientation": "horizontal"
  14492. },
  14493. "y": {
  14494. "dimension": "y",
  14495. "orientation": "vertical"
  14496. }
  14497. },
  14498. "selected": [],
  14499. "selected_style": {},
  14500. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  14501. "tooltip_location": "mouse",
  14502. "tooltip_style": {
  14503. "opacity": 0.9
  14504. },
  14505. "unhovered_style": {},
  14506. "unselected_style": {},
  14507. "visible": true,
  14508. "x": {
  14509. "type": "float",
  14510. "values": []
  14511. },
  14512. "y": {
  14513. "type": "float",
  14514. "values": []
  14515. }
  14516. }
  14517. },
  14518. "a8a3f98b02094e57b9c9e3daea4bf22d": {
  14519. "model_module": "bqplot",
  14520. "model_module_version": "^0.4.1",
  14521. "model_name": "TooltipModel",
  14522. "state": {
  14523. "_model_module_version": "^0.4.1",
  14524. "_view_module_version": "^0.4.1",
  14525. "fields": [
  14526. "label"
  14527. ],
  14528. "layout": "IPY_MODEL_9567492c5fec4f87ac07a91bb319f3d7"
  14529. }
  14530. },
  14531. "aa65e40513be453b9831bfcbbf95c16a": {
  14532. "model_module": "bqplot",
  14533. "model_module_version": "^0.4.1",
  14534. "model_name": "GraphModel",
  14535. "state": {
  14536. "_model_module": "bqplot",
  14537. "_model_module_version": "^0.4.1",
  14538. "_view_count": null,
  14539. "_view_module": "bqplot",
  14540. "_view_module_version": "^0.4.1",
  14541. "apply_clip": true,
  14542. "charge": -600,
  14543. "color": {
  14544. "type": null,
  14545. "values": null
  14546. },
  14547. "colors": [
  14548. "#1f77b4",
  14549. "#ff7f0e",
  14550. "#2ca02c",
  14551. "#d62728",
  14552. "#9467bd",
  14553. "#8c564b",
  14554. "#e377c2",
  14555. "#7f7f7f",
  14556. "#bcbd22",
  14557. "#17becf"
  14558. ],
  14559. "directed": true,
  14560. "display_legend": false,
  14561. "enable_hover": true,
  14562. "highlight_links": true,
  14563. "hovered_style": {},
  14564. "interactions": {
  14565. "click": "select",
  14566. "hover": "tooltip"
  14567. },
  14568. "labels": [],
  14569. "link_color": {
  14570. "type": "float",
  14571. "values": []
  14572. },
  14573. "link_data": [
  14574. {
  14575. "source": 0,
  14576. "target": 5,
  14577. "value": 1
  14578. },
  14579. {
  14580. "source": 1,
  14581. "target": 5,
  14582. "value": 2
  14583. },
  14584. {
  14585. "source": 2,
  14586. "target": 5,
  14587. "value": 1
  14588. },
  14589. {
  14590. "source": 3,
  14591. "target": 5,
  14592. "value": 2
  14593. },
  14594. {
  14595. "source": 4,
  14596. "target": 5,
  14597. "value": 3
  14598. }
  14599. ],
  14600. "link_distance": 100,
  14601. "link_matrix": {
  14602. "type": "float",
  14603. "values": []
  14604. },
  14605. "link_type": "arc",
  14606. "node_data": [
  14607. "Boba Fett",
  14608. "Yoda",
  14609. "Jabba Desilijic Tiure",
  14610. "Darth Vader",
  14611. "Obi-Wan Kenobi",
  14612. "Beru Whitesun lars",
  14613. "Mon Mothma"
  14614. ],
  14615. "preserve_domain": {},
  14616. "scales": {},
  14617. "scales_metadata": {
  14618. "color": {
  14619. "dimension": "color"
  14620. },
  14621. "link_color": {
  14622. "dimension": "link_color"
  14623. },
  14624. "x": {
  14625. "dimension": "x",
  14626. "orientation": "horizontal"
  14627. },
  14628. "y": {
  14629. "dimension": "y",
  14630. "orientation": "vertical"
  14631. }
  14632. },
  14633. "selected": [],
  14634. "selected_style": {},
  14635. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  14636. "tooltip_location": "mouse",
  14637. "tooltip_style": {
  14638. "opacity": 0.9
  14639. },
  14640. "unhovered_style": {},
  14641. "unselected_style": {},
  14642. "visible": true,
  14643. "x": {
  14644. "type": "float",
  14645. "values": []
  14646. },
  14647. "y": {
  14648. "type": "float",
  14649. "values": []
  14650. }
  14651. }
  14652. },
  14653. "aa83f737105c458a9d6e0532e17ba094": {
  14654. "model_module": "bqplot",
  14655. "model_module_version": "^0.4.1",
  14656. "model_name": "LinearScaleModel",
  14657. "state": {
  14658. "_model_module_version": "^0.4.1",
  14659. "_view_module_version": "^0.4.1",
  14660. "allow_padding": false,
  14661. "max": 1,
  14662. "min": 0,
  14663. "stabilized": false
  14664. }
  14665. },
  14666. "aad9d69b9d16464c8de928f95b774fc8": {
  14667. "model_module": "bqplot",
  14668. "model_module_version": "^0.4.1",
  14669. "model_name": "TooltipModel",
  14670. "state": {
  14671. "_model_module_version": "^0.4.1",
  14672. "_view_module_version": "^0.4.1",
  14673. "fields": [
  14674. "label"
  14675. ],
  14676. "layout": "IPY_MODEL_bdde0b4939ac431da3a4e023fe606dba"
  14677. }
  14678. },
  14679. "ad5585b04e8e4a4cbc631b0fdfde9d50": {
  14680. "model_module": "@jupyter-widgets/base",
  14681. "model_module_version": "1.1.0",
  14682. "model_name": "LayoutModel",
  14683. "state": {
  14684. "min_width": "125px"
  14685. }
  14686. },
  14687. "adb885a039c74661af4eba2982ddd7aa": {
  14688. "model_module": "bqplot",
  14689. "model_module_version": "^0.4.1",
  14690. "model_name": "FigureModel",
  14691. "state": {
  14692. "_dom_classes": [],
  14693. "_model_module_version": "^0.4.1",
  14694. "_view_module_version": "^0.4.1",
  14695. "layout": "IPY_MODEL_c282648c3434401783fc9766f91a191b",
  14696. "marks": [
  14697. "IPY_MODEL_69d13e06ac4e45d4af7513be2d90be9c"
  14698. ],
  14699. "scale_x": "IPY_MODEL_a01bf4ffd663470984bf80164deaf035",
  14700. "scale_y": "IPY_MODEL_321f812904774f9a8d69f2a94e76c774"
  14701. }
  14702. },
  14703. "ae71ec02fbe64a30a85280b3127efec7": {
  14704. "model_module": "bqplot",
  14705. "model_module_version": "^0.4.1",
  14706. "model_name": "LinearScaleModel",
  14707. "state": {
  14708. "_model_module_version": "^0.4.1",
  14709. "_view_module_version": "^0.4.1",
  14710. "allow_padding": false,
  14711. "max": 1,
  14712. "min": 0,
  14713. "stabilized": false
  14714. }
  14715. },
  14716. "b001169e1e004533b2639324366f95f7": {
  14717. "model_module": "bqplot",
  14718. "model_module_version": "^0.4.1",
  14719. "model_name": "GraphModel",
  14720. "state": {
  14721. "_model_module": "bqplot",
  14722. "_model_module_version": "^0.4.1",
  14723. "_view_count": null,
  14724. "_view_module": "bqplot",
  14725. "_view_module_version": "^0.4.1",
  14726. "apply_clip": true,
  14727. "charge": -600,
  14728. "color": {
  14729. "type": null,
  14730. "values": null
  14731. },
  14732. "colors": [
  14733. "#1f77b4",
  14734. "#ff7f0e",
  14735. "#2ca02c",
  14736. "#d62728",
  14737. "#9467bd",
  14738. "#8c564b",
  14739. "#e377c2",
  14740. "#7f7f7f",
  14741. "#bcbd22",
  14742. "#17becf"
  14743. ],
  14744. "directed": true,
  14745. "display_legend": false,
  14746. "enable_hover": true,
  14747. "highlight_links": true,
  14748. "hovered_style": {},
  14749. "interactions": {
  14750. "click": "select",
  14751. "hover": "tooltip"
  14752. },
  14753. "labels": [],
  14754. "link_color": {
  14755. "type": "float",
  14756. "values": []
  14757. },
  14758. "link_data": [
  14759. {
  14760. "source": 0,
  14761. "target": 5,
  14762. "value": 1
  14763. },
  14764. {
  14765. "source": 1,
  14766. "target": 5,
  14767. "value": 2
  14768. },
  14769. {
  14770. "source": 2,
  14771. "target": 5,
  14772. "value": 1
  14773. },
  14774. {
  14775. "source": 3,
  14776. "target": 5,
  14777. "value": 2
  14778. },
  14779. {
  14780. "source": 4,
  14781. "target": 5,
  14782. "value": 3
  14783. }
  14784. ],
  14785. "link_distance": 100,
  14786. "link_matrix": {
  14787. "type": "float",
  14788. "values": []
  14789. },
  14790. "link_type": "arc",
  14791. "node_data": [
  14792. "Boba Fett",
  14793. "Yoda",
  14794. "Jabba Desilijic Tiure",
  14795. "Darth Vader",
  14796. "Obi-Wan Kenobi",
  14797. "Beru Whitesun lars",
  14798. "Mon Mothma"
  14799. ],
  14800. "preserve_domain": {},
  14801. "scales": {},
  14802. "scales_metadata": {
  14803. "color": {
  14804. "dimension": "color"
  14805. },
  14806. "link_color": {
  14807. "dimension": "link_color"
  14808. },
  14809. "x": {
  14810. "dimension": "x",
  14811. "orientation": "horizontal"
  14812. },
  14813. "y": {
  14814. "dimension": "y",
  14815. "orientation": "vertical"
  14816. }
  14817. },
  14818. "selected": [],
  14819. "selected_style": {},
  14820. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  14821. "tooltip_location": "mouse",
  14822. "tooltip_style": {
  14823. "opacity": 0.9
  14824. },
  14825. "unhovered_style": {},
  14826. "unselected_style": {},
  14827. "visible": true,
  14828. "x": {
  14829. "type": "float",
  14830. "values": []
  14831. },
  14832. "y": {
  14833. "type": "float",
  14834. "values": []
  14835. }
  14836. }
  14837. },
  14838. "b081a92dfaab4133a026ce7d8c7379f0": {
  14839. "model_module": "bqplot",
  14840. "model_module_version": "^0.4.1",
  14841. "model_name": "LinearScaleModel",
  14842. "state": {
  14843. "_model_module_version": "^0.4.1",
  14844. "_view_module_version": "^0.4.1",
  14845. "allow_padding": false,
  14846. "max": 1,
  14847. "min": 0,
  14848. "stabilized": false
  14849. }
  14850. },
  14851. "b297f9245c5f4d3da01cbef72820bee4": {
  14852. "model_module": "@jupyter-widgets/base",
  14853. "model_module_version": "1.1.0",
  14854. "model_name": "LayoutModel",
  14855. "state": {
  14856. "min_width": "125px"
  14857. }
  14858. },
  14859. "b382f16c2e0345459c85e1cd20750454": {
  14860. "model_module": "bqplot",
  14861. "model_module_version": "^0.4.1",
  14862. "model_name": "GraphModel",
  14863. "state": {
  14864. "_model_module": "bqplot",
  14865. "_model_module_version": "^0.4.1",
  14866. "_view_count": null,
  14867. "_view_module": "bqplot",
  14868. "_view_module_version": "^0.4.1",
  14869. "apply_clip": true,
  14870. "charge": -600,
  14871. "color": {
  14872. "type": null,
  14873. "values": null
  14874. },
  14875. "colors": [
  14876. "#1f77b4",
  14877. "#ff7f0e",
  14878. "#2ca02c",
  14879. "#d62728",
  14880. "#9467bd",
  14881. "#8c564b",
  14882. "#e377c2",
  14883. "#7f7f7f",
  14884. "#bcbd22",
  14885. "#17becf"
  14886. ],
  14887. "directed": true,
  14888. "display_legend": false,
  14889. "enable_hover": true,
  14890. "highlight_links": true,
  14891. "hovered_style": {},
  14892. "interactions": {
  14893. "click": "select",
  14894. "hover": "tooltip"
  14895. },
  14896. "labels": [],
  14897. "link_color": {
  14898. "type": "float",
  14899. "values": []
  14900. },
  14901. "link_data": [
  14902. {
  14903. "source": 3,
  14904. "target": 6,
  14905. "value": 1
  14906. }
  14907. ],
  14908. "link_distance": 100,
  14909. "link_matrix": {
  14910. "type": "float",
  14911. "values": []
  14912. },
  14913. "link_type": "arc",
  14914. "node_data": [
  14915. "Boba Fett",
  14916. "Yoda",
  14917. "Jabba Desilijic Tiure",
  14918. "Darth Vader",
  14919. "Obi-Wan Kenobi",
  14920. "Beru Whitesun lars",
  14921. "Mon Mothma"
  14922. ],
  14923. "preserve_domain": {},
  14924. "scales": {},
  14925. "scales_metadata": {
  14926. "color": {
  14927. "dimension": "color"
  14928. },
  14929. "link_color": {
  14930. "dimension": "link_color"
  14931. },
  14932. "x": {
  14933. "dimension": "x",
  14934. "orientation": "horizontal"
  14935. },
  14936. "y": {
  14937. "dimension": "y",
  14938. "orientation": "vertical"
  14939. }
  14940. },
  14941. "selected": [],
  14942. "selected_style": {},
  14943. "tooltip": "IPY_MODEL_fd3e381aab9a449cb9f015502973168f",
  14944. "tooltip_location": "mouse",
  14945. "tooltip_style": {
  14946. "opacity": 0.9
  14947. },
  14948. "unhovered_style": {},
  14949. "unselected_style": {},
  14950. "visible": true,
  14951. "x": {
  14952. "type": "float",
  14953. "values": []
  14954. },
  14955. "y": {
  14956. "type": "float",
  14957. "values": []
  14958. }
  14959. }
  14960. },
  14961. "b4250ff8a57c4a13a649cc7a52a5bd45": {
  14962. "model_module": "bqplot",
  14963. "model_module_version": "^0.4.1",
  14964. "model_name": "GraphModel",
  14965. "state": {
  14966. "_model_module": "bqplot",
  14967. "_model_module_version": "^0.4.1",
  14968. "_view_count": null,
  14969. "_view_module": "bqplot",
  14970. "_view_module_version": "^0.4.1",
  14971. "apply_clip": true,
  14972. "charge": -600,
  14973. "color": {
  14974. "type": null,
  14975. "values": null
  14976. },
  14977. "colors": [
  14978. "#1f77b4",
  14979. "#ff7f0e",
  14980. "#2ca02c",
  14981. "#d62728",
  14982. "#9467bd",
  14983. "#8c564b",
  14984. "#e377c2",
  14985. "#7f7f7f",
  14986. "#bcbd22",
  14987. "#17becf"
  14988. ],
  14989. "directed": true,
  14990. "display_legend": false,
  14991. "enable_hover": true,
  14992. "highlight_links": true,
  14993. "hovered_style": {},
  14994. "interactions": {
  14995. "click": "select",
  14996. "hover": "tooltip"
  14997. },
  14998. "labels": [],
  14999. "link_color": {
  15000. "type": "float",
  15001. "values": []
  15002. },
  15003. "link_data": [
  15004. {
  15005. "source": 3,
  15006. "target": 6,
  15007. "value": 1
  15008. }
  15009. ],
  15010. "link_distance": 100,
  15011. "link_matrix": {
  15012. "type": "float",
  15013. "values": []
  15014. },
  15015. "link_type": "arc",
  15016. "node_data": [
  15017. "Boba Fett",
  15018. "Yoda",
  15019. "Jabba Desilijic Tiure",
  15020. "Darth Vader",
  15021. "Obi-Wan Kenobi",
  15022. "Beru Whitesun lars",
  15023. "Mon Mothma"
  15024. ],
  15025. "preserve_domain": {},
  15026. "scales": {},
  15027. "scales_metadata": {
  15028. "color": {
  15029. "dimension": "color"
  15030. },
  15031. "link_color": {
  15032. "dimension": "link_color"
  15033. },
  15034. "x": {
  15035. "dimension": "x",
  15036. "orientation": "horizontal"
  15037. },
  15038. "y": {
  15039. "dimension": "y",
  15040. "orientation": "vertical"
  15041. }
  15042. },
  15043. "selected": [],
  15044. "selected_style": {},
  15045. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  15046. "tooltip_location": "mouse",
  15047. "tooltip_style": {
  15048. "opacity": 0.9
  15049. },
  15050. "unhovered_style": {},
  15051. "unselected_style": {},
  15052. "visible": true,
  15053. "x": {
  15054. "type": "float",
  15055. "values": []
  15056. },
  15057. "y": {
  15058. "type": "float",
  15059. "values": []
  15060. }
  15061. }
  15062. },
  15063. "b456bea291df441c8e6f80b5b6d54fba": {
  15064. "model_module": "bqplot",
  15065. "model_module_version": "^0.4.1",
  15066. "model_name": "TooltipModel",
  15067. "state": {
  15068. "_model_module_version": "^0.4.1",
  15069. "_view_module_version": "^0.4.1",
  15070. "fields": [
  15071. "label"
  15072. ],
  15073. "layout": "IPY_MODEL_90b23b06c3a748e0987c8bb52754b32c"
  15074. }
  15075. },
  15076. "b91ef9da5a9f4342b8b232f61148e76b": {
  15077. "model_module": "bqplot",
  15078. "model_module_version": "^0.4.1",
  15079. "model_name": "GraphModel",
  15080. "state": {
  15081. "_model_module": "bqplot",
  15082. "_model_module_version": "^0.4.1",
  15083. "_view_count": null,
  15084. "_view_module": "bqplot",
  15085. "_view_module_version": "^0.4.1",
  15086. "apply_clip": true,
  15087. "charge": -600,
  15088. "color": {
  15089. "type": null,
  15090. "values": null
  15091. },
  15092. "colors": [
  15093. "#1f77b4",
  15094. "#ff7f0e",
  15095. "#2ca02c",
  15096. "#d62728",
  15097. "#9467bd",
  15098. "#8c564b",
  15099. "#e377c2",
  15100. "#7f7f7f",
  15101. "#bcbd22",
  15102. "#17becf"
  15103. ],
  15104. "directed": true,
  15105. "display_legend": false,
  15106. "enable_hover": true,
  15107. "highlight_links": true,
  15108. "hovered_style": {},
  15109. "interactions": {
  15110. "click": "select",
  15111. "hover": "tooltip"
  15112. },
  15113. "labels": [],
  15114. "link_color": {
  15115. "type": "float",
  15116. "values": []
  15117. },
  15118. "link_data": [
  15119. {
  15120. "source": 0,
  15121. "target": 5,
  15122. "value": 1
  15123. },
  15124. {
  15125. "source": 1,
  15126. "target": 5,
  15127. "value": 2
  15128. },
  15129. {
  15130. "source": 2,
  15131. "target": 5,
  15132. "value": 1
  15133. },
  15134. {
  15135. "source": 3,
  15136. "target": 5,
  15137. "value": 2
  15138. },
  15139. {
  15140. "source": 4,
  15141. "target": 5,
  15142. "value": 3
  15143. }
  15144. ],
  15145. "link_distance": 100,
  15146. "link_matrix": {
  15147. "type": "float",
  15148. "values": []
  15149. },
  15150. "link_type": "arc",
  15151. "node_data": [
  15152. "Boba Fett",
  15153. "Yoda",
  15154. "Jabba Desilijic Tiure",
  15155. "Darth Vader",
  15156. "Obi-Wan Kenobi",
  15157. "Beru Whitesun lars",
  15158. "Mon Mothma"
  15159. ],
  15160. "preserve_domain": {},
  15161. "scales": {},
  15162. "scales_metadata": {
  15163. "color": {
  15164. "dimension": "color"
  15165. },
  15166. "link_color": {
  15167. "dimension": "link_color"
  15168. },
  15169. "x": {
  15170. "dimension": "x",
  15171. "orientation": "horizontal"
  15172. },
  15173. "y": {
  15174. "dimension": "y",
  15175. "orientation": "vertical"
  15176. }
  15177. },
  15178. "selected": [],
  15179. "selected_style": {},
  15180. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  15181. "tooltip_location": "mouse",
  15182. "tooltip_style": {
  15183. "opacity": 0.9
  15184. },
  15185. "unhovered_style": {},
  15186. "unselected_style": {},
  15187. "visible": true,
  15188. "x": {
  15189. "type": "float",
  15190. "values": []
  15191. },
  15192. "y": {
  15193. "type": "float",
  15194. "values": []
  15195. }
  15196. }
  15197. },
  15198. "ba64d40b9e1449e6bed759a3790e124a": {
  15199. "model_module": "bqplot",
  15200. "model_module_version": "^0.4.1",
  15201. "model_name": "TooltipModel",
  15202. "state": {
  15203. "_model_module_version": "^0.4.1",
  15204. "_view_module_version": "^0.4.1",
  15205. "fields": [
  15206. "label"
  15207. ],
  15208. "layout": "IPY_MODEL_dedbc3bc6f604ef38ff9c04123418c06"
  15209. }
  15210. },
  15211. "bbc08acba6b34ad685de789143a1ff44": {
  15212. "model_module": "bqplot",
  15213. "model_module_version": "^0.4.1",
  15214. "model_name": "FigureModel",
  15215. "state": {
  15216. "_dom_classes": [],
  15217. "_model_module_version": "^0.4.1",
  15218. "_view_module_version": "^0.4.1",
  15219. "layout": "IPY_MODEL_388c388729024409b15e47426bebd361",
  15220. "marks": [
  15221. "IPY_MODEL_64122d168f9e40289fea26d3a4a4366a"
  15222. ],
  15223. "scale_x": "IPY_MODEL_aa83f737105c458a9d6e0532e17ba094",
  15224. "scale_y": "IPY_MODEL_7e562ff14c194c91a402e65d09c066a1"
  15225. }
  15226. },
  15227. "bbf7817f57c747cd9b4660d034cacccb": {
  15228. "model_module": "bqplot",
  15229. "model_module_version": "^0.4.1",
  15230. "model_name": "GraphModel",
  15231. "state": {
  15232. "_model_module": "bqplot",
  15233. "_model_module_version": "^0.4.1",
  15234. "_view_count": null,
  15235. "_view_module": "bqplot",
  15236. "_view_module_version": "^0.4.1",
  15237. "apply_clip": true,
  15238. "charge": -600,
  15239. "color": {
  15240. "type": null,
  15241. "values": null
  15242. },
  15243. "colors": [
  15244. "#1f77b4",
  15245. "#ff7f0e",
  15246. "#2ca02c",
  15247. "#d62728",
  15248. "#9467bd",
  15249. "#8c564b",
  15250. "#e377c2",
  15251. "#7f7f7f",
  15252. "#bcbd22",
  15253. "#17becf"
  15254. ],
  15255. "directed": true,
  15256. "display_legend": false,
  15257. "enable_hover": true,
  15258. "highlight_links": true,
  15259. "hovered_style": {},
  15260. "interactions": {
  15261. "click": "select",
  15262. "hover": "tooltip"
  15263. },
  15264. "labels": [],
  15265. "link_color": {
  15266. "type": "float",
  15267. "values": []
  15268. },
  15269. "link_data": [
  15270. {
  15271. "source": 3,
  15272. "target": 6,
  15273. "value": 1
  15274. }
  15275. ],
  15276. "link_distance": 100,
  15277. "link_matrix": {
  15278. "type": "float",
  15279. "values": []
  15280. },
  15281. "link_type": "arc",
  15282. "node_data": [
  15283. "Boba Fett",
  15284. "Yoda",
  15285. "Jabba Desilijic Tiure",
  15286. "Darth Vader",
  15287. "Obi-Wan Kenobi",
  15288. "Beru Whitesun lars",
  15289. "Mon Mothma"
  15290. ],
  15291. "preserve_domain": {},
  15292. "scales": {},
  15293. "scales_metadata": {
  15294. "color": {
  15295. "dimension": "color"
  15296. },
  15297. "link_color": {
  15298. "dimension": "link_color"
  15299. },
  15300. "x": {
  15301. "dimension": "x",
  15302. "orientation": "horizontal"
  15303. },
  15304. "y": {
  15305. "dimension": "y",
  15306. "orientation": "vertical"
  15307. }
  15308. },
  15309. "selected": [],
  15310. "selected_style": {},
  15311. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  15312. "tooltip_location": "mouse",
  15313. "tooltip_style": {
  15314. "opacity": 0.9
  15315. },
  15316. "unhovered_style": {},
  15317. "unselected_style": {},
  15318. "visible": true,
  15319. "x": {
  15320. "type": "float",
  15321. "values": []
  15322. },
  15323. "y": {
  15324. "type": "float",
  15325. "values": []
  15326. }
  15327. }
  15328. },
  15329. "bc5ed23b465f44f484504d2b2b89bed8": {
  15330. "model_module": "bqplot",
  15331. "model_module_version": "^0.4.1",
  15332. "model_name": "FigureModel",
  15333. "state": {
  15334. "_dom_classes": [],
  15335. "_model_module_version": "^0.4.1",
  15336. "_view_module_version": "^0.4.1",
  15337. "layout": "IPY_MODEL_6d28211de27c420397267f24246f2a15",
  15338. "marks": [
  15339. "IPY_MODEL_29e6ddb100254eca92f88ca05a3d00af"
  15340. ],
  15341. "scale_x": "IPY_MODEL_a5655dd59983454394474bdf423f4456",
  15342. "scale_y": "IPY_MODEL_21820edaa45348a09af2eea692b387ab"
  15343. }
  15344. },
  15345. "bd0db7d884f8498abb1b3e02b7809863": {
  15346. "model_module": "bqplot",
  15347. "model_module_version": "^0.4.1",
  15348. "model_name": "GraphModel",
  15349. "state": {
  15350. "_model_module": "bqplot",
  15351. "_model_module_version": "^0.4.1",
  15352. "_view_count": null,
  15353. "_view_module": "bqplot",
  15354. "_view_module_version": "^0.4.1",
  15355. "apply_clip": true,
  15356. "charge": -600,
  15357. "color": {
  15358. "type": null,
  15359. "values": null
  15360. },
  15361. "colors": [
  15362. "#1f77b4",
  15363. "#ff7f0e",
  15364. "#2ca02c",
  15365. "#d62728",
  15366. "#9467bd",
  15367. "#8c564b",
  15368. "#e377c2",
  15369. "#7f7f7f",
  15370. "#bcbd22",
  15371. "#17becf"
  15372. ],
  15373. "directed": true,
  15374. "display_legend": false,
  15375. "enable_hover": true,
  15376. "highlight_links": true,
  15377. "hovered_style": {},
  15378. "interactions": {
  15379. "click": "select",
  15380. "hover": "tooltip"
  15381. },
  15382. "labels": [],
  15383. "link_color": {
  15384. "type": "float",
  15385. "values": []
  15386. },
  15387. "link_data": [
  15388. {
  15389. "source": 3,
  15390. "target": 6,
  15391. "value": 1
  15392. }
  15393. ],
  15394. "link_distance": 100,
  15395. "link_matrix": {
  15396. "type": "float",
  15397. "values": []
  15398. },
  15399. "link_type": "arc",
  15400. "node_data": [
  15401. "Boba Fett",
  15402. "Yoda",
  15403. "Jabba Desilijic Tiure",
  15404. "Darth Vader",
  15405. "Obi-Wan Kenobi",
  15406. "Beru Whitesun lars",
  15407. "Mon Mothma"
  15408. ],
  15409. "preserve_domain": {},
  15410. "scales": {},
  15411. "scales_metadata": {
  15412. "color": {
  15413. "dimension": "color"
  15414. },
  15415. "link_color": {
  15416. "dimension": "link_color"
  15417. },
  15418. "x": {
  15419. "dimension": "x",
  15420. "orientation": "horizontal"
  15421. },
  15422. "y": {
  15423. "dimension": "y",
  15424. "orientation": "vertical"
  15425. }
  15426. },
  15427. "selected": [],
  15428. "selected_style": {},
  15429. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  15430. "tooltip_location": "mouse",
  15431. "tooltip_style": {
  15432. "opacity": 0.9
  15433. },
  15434. "unhovered_style": {},
  15435. "unselected_style": {},
  15436. "visible": true,
  15437. "x": {
  15438. "type": "float",
  15439. "values": []
  15440. },
  15441. "y": {
  15442. "type": "float",
  15443. "values": []
  15444. }
  15445. }
  15446. },
  15447. "bd20f421a743407a818a789f2222415e": {
  15448. "model_module": "bqplot",
  15449. "model_module_version": "^0.4.1",
  15450. "model_name": "GraphModel",
  15451. "state": {
  15452. "_model_module": "bqplot",
  15453. "_model_module_version": "^0.4.1",
  15454. "_view_count": null,
  15455. "_view_module": "bqplot",
  15456. "_view_module_version": "^0.4.1",
  15457. "apply_clip": true,
  15458. "charge": -600,
  15459. "color": {
  15460. "type": null,
  15461. "values": null
  15462. },
  15463. "colors": [
  15464. "#1f77b4",
  15465. "#ff7f0e",
  15466. "#2ca02c",
  15467. "#d62728",
  15468. "#9467bd",
  15469. "#8c564b",
  15470. "#e377c2",
  15471. "#7f7f7f",
  15472. "#bcbd22",
  15473. "#17becf"
  15474. ],
  15475. "directed": true,
  15476. "display_legend": false,
  15477. "enable_hover": true,
  15478. "highlight_links": true,
  15479. "hovered_style": {},
  15480. "interactions": {
  15481. "click": "select",
  15482. "hover": "tooltip"
  15483. },
  15484. "labels": [],
  15485. "link_color": {
  15486. "type": "float",
  15487. "values": []
  15488. },
  15489. "link_data": [
  15490. {
  15491. "source": 0,
  15492. "target": 5,
  15493. "value": 1
  15494. },
  15495. {
  15496. "source": 1,
  15497. "target": 5,
  15498. "value": 2
  15499. },
  15500. {
  15501. "source": 2,
  15502. "target": 5,
  15503. "value": 1
  15504. },
  15505. {
  15506. "source": 3,
  15507. "target": 5,
  15508. "value": 2
  15509. },
  15510. {
  15511. "source": 4,
  15512. "target": 5,
  15513. "value": 3
  15514. }
  15515. ],
  15516. "link_distance": 100,
  15517. "link_matrix": {
  15518. "type": "float",
  15519. "values": []
  15520. },
  15521. "link_type": "arc",
  15522. "node_data": [
  15523. "Boba Fett",
  15524. "Yoda",
  15525. "Jabba Desilijic Tiure",
  15526. "Darth Vader",
  15527. "Obi-Wan Kenobi",
  15528. "Beru Whitesun lars",
  15529. "Mon Mothma"
  15530. ],
  15531. "preserve_domain": {},
  15532. "scales": {},
  15533. "scales_metadata": {
  15534. "color": {
  15535. "dimension": "color"
  15536. },
  15537. "link_color": {
  15538. "dimension": "link_color"
  15539. },
  15540. "x": {
  15541. "dimension": "x",
  15542. "orientation": "horizontal"
  15543. },
  15544. "y": {
  15545. "dimension": "y",
  15546. "orientation": "vertical"
  15547. }
  15548. },
  15549. "selected": [],
  15550. "selected_style": {},
  15551. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  15552. "tooltip_location": "mouse",
  15553. "tooltip_style": {
  15554. "opacity": 0.9
  15555. },
  15556. "unhovered_style": {},
  15557. "unselected_style": {},
  15558. "visible": true,
  15559. "x": {
  15560. "type": "float",
  15561. "values": []
  15562. },
  15563. "y": {
  15564. "type": "float",
  15565. "values": []
  15566. }
  15567. }
  15568. },
  15569. "bdde0b4939ac431da3a4e023fe606dba": {
  15570. "model_module": "@jupyter-widgets/base",
  15571. "model_module_version": "1.1.0",
  15572. "model_name": "LayoutModel",
  15573. "state": {}
  15574. },
  15575. "be288b0e2c15418e97f837b4a4ad1c27": {
  15576. "model_module": "bqplot",
  15577. "model_module_version": "^0.4.1",
  15578. "model_name": "GraphModel",
  15579. "state": {
  15580. "_model_module": "bqplot",
  15581. "_model_module_version": "^0.4.1",
  15582. "_view_count": null,
  15583. "_view_module": "bqplot",
  15584. "_view_module_version": "^0.4.1",
  15585. "apply_clip": true,
  15586. "charge": -600,
  15587. "color": {
  15588. "type": null,
  15589. "values": null
  15590. },
  15591. "colors": [
  15592. "#1f77b4",
  15593. "#ff7f0e",
  15594. "#2ca02c",
  15595. "#d62728",
  15596. "#9467bd",
  15597. "#8c564b",
  15598. "#e377c2",
  15599. "#7f7f7f",
  15600. "#bcbd22",
  15601. "#17becf"
  15602. ],
  15603. "directed": true,
  15604. "display_legend": false,
  15605. "enable_hover": true,
  15606. "highlight_links": true,
  15607. "hovered_style": {},
  15608. "interactions": {
  15609. "click": "select",
  15610. "hover": "tooltip"
  15611. },
  15612. "labels": [],
  15613. "link_color": {
  15614. "type": "float",
  15615. "values": []
  15616. },
  15617. "link_data": [
  15618. {
  15619. "source": 3,
  15620. "target": 6,
  15621. "value": 1
  15622. }
  15623. ],
  15624. "link_distance": 100,
  15625. "link_matrix": {
  15626. "type": "float",
  15627. "values": []
  15628. },
  15629. "link_type": "arc",
  15630. "node_data": [
  15631. "Boba Fett",
  15632. "Yoda",
  15633. "Jabba Desilijic Tiure",
  15634. "Darth Vader",
  15635. "Obi-Wan Kenobi",
  15636. "Beru Whitesun lars",
  15637. "Mon Mothma"
  15638. ],
  15639. "preserve_domain": {},
  15640. "scales": {},
  15641. "scales_metadata": {
  15642. "color": {
  15643. "dimension": "color"
  15644. },
  15645. "link_color": {
  15646. "dimension": "link_color"
  15647. },
  15648. "x": {
  15649. "dimension": "x",
  15650. "orientation": "horizontal"
  15651. },
  15652. "y": {
  15653. "dimension": "y",
  15654. "orientation": "vertical"
  15655. }
  15656. },
  15657. "selected": [],
  15658. "selected_style": {},
  15659. "tooltip": "IPY_MODEL_197e72274ba74de0bcaa52d9cc67c7f1",
  15660. "tooltip_location": "mouse",
  15661. "tooltip_style": {
  15662. "opacity": 0.9
  15663. },
  15664. "unhovered_style": {},
  15665. "unselected_style": {},
  15666. "visible": true,
  15667. "x": {
  15668. "type": "float",
  15669. "values": []
  15670. },
  15671. "y": {
  15672. "type": "float",
  15673. "values": []
  15674. }
  15675. }
  15676. },
  15677. "bf28493d5f7843bb8e2be323fbab1674": {
  15678. "model_module": "bqplot",
  15679. "model_module_version": "^0.4.1",
  15680. "model_name": "GraphModel",
  15681. "state": {
  15682. "_model_module": "bqplot",
  15683. "_model_module_version": "^0.4.1",
  15684. "_view_count": null,
  15685. "_view_module": "bqplot",
  15686. "_view_module_version": "^0.4.1",
  15687. "apply_clip": true,
  15688. "charge": -600,
  15689. "color": {
  15690. "type": null,
  15691. "values": null
  15692. },
  15693. "colors": [
  15694. "#1f77b4",
  15695. "#ff7f0e",
  15696. "#2ca02c",
  15697. "#d62728",
  15698. "#9467bd",
  15699. "#8c564b",
  15700. "#e377c2",
  15701. "#7f7f7f",
  15702. "#bcbd22",
  15703. "#17becf"
  15704. ],
  15705. "directed": true,
  15706. "display_legend": false,
  15707. "enable_hover": true,
  15708. "highlight_links": true,
  15709. "hovered_style": {},
  15710. "interactions": {
  15711. "click": "select",
  15712. "hover": "tooltip"
  15713. },
  15714. "labels": [],
  15715. "link_color": {
  15716. "type": "float",
  15717. "values": []
  15718. },
  15719. "link_data": [
  15720. {
  15721. "source": 0,
  15722. "target": 5,
  15723. "value": 1
  15724. },
  15725. {
  15726. "source": 1,
  15727. "target": 5,
  15728. "value": 2
  15729. },
  15730. {
  15731. "source": 2,
  15732. "target": 5,
  15733. "value": 1
  15734. },
  15735. {
  15736. "source": 3,
  15737. "target": 5,
  15738. "value": 2
  15739. },
  15740. {
  15741. "source": 4,
  15742. "target": 5,
  15743. "value": 3
  15744. }
  15745. ],
  15746. "link_distance": 100,
  15747. "link_matrix": {
  15748. "type": "float",
  15749. "values": []
  15750. },
  15751. "link_type": "arc",
  15752. "node_data": [
  15753. "Boba Fett",
  15754. "Yoda",
  15755. "Jabba Desilijic Tiure",
  15756. "Darth Vader",
  15757. "Obi-Wan Kenobi",
  15758. "Beru Whitesun lars",
  15759. "Mon Mothma"
  15760. ],
  15761. "preserve_domain": {},
  15762. "scales": {},
  15763. "scales_metadata": {
  15764. "color": {
  15765. "dimension": "color"
  15766. },
  15767. "link_color": {
  15768. "dimension": "link_color"
  15769. },
  15770. "x": {
  15771. "dimension": "x",
  15772. "orientation": "horizontal"
  15773. },
  15774. "y": {
  15775. "dimension": "y",
  15776. "orientation": "vertical"
  15777. }
  15778. },
  15779. "selected": [],
  15780. "selected_style": {},
  15781. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  15782. "tooltip_location": "mouse",
  15783. "tooltip_style": {
  15784. "opacity": 0.9
  15785. },
  15786. "unhovered_style": {},
  15787. "unselected_style": {},
  15788. "visible": true,
  15789. "x": {
  15790. "type": "float",
  15791. "values": []
  15792. },
  15793. "y": {
  15794. "type": "float",
  15795. "values": []
  15796. }
  15797. }
  15798. },
  15799. "c00632edba4346329af67a3745948da3": {
  15800. "model_module": "bqplot",
  15801. "model_module_version": "^0.4.1",
  15802. "model_name": "FigureModel",
  15803. "state": {
  15804. "_dom_classes": [],
  15805. "_model_module_version": "^0.4.1",
  15806. "_view_module_version": "^0.4.1",
  15807. "layout": "IPY_MODEL_5b57a04219aa4780b9927e4e0693c1b3",
  15808. "marks": [
  15809. "IPY_MODEL_46f5fc62c737409a8ee4760d6003f485"
  15810. ],
  15811. "scale_x": "IPY_MODEL_c2772b9e371048608255666b116e328e",
  15812. "scale_y": "IPY_MODEL_64672f147b2244a88f0c9a6981e92ac5"
  15813. }
  15814. },
  15815. "c103776d3360476fbf7db6cf4117ceee": {
  15816. "model_module": "bqplot",
  15817. "model_module_version": "^0.4.1",
  15818. "model_name": "LinearScaleModel",
  15819. "state": {
  15820. "_model_module_version": "^0.4.1",
  15821. "_view_module_version": "^0.4.1",
  15822. "allow_padding": false,
  15823. "max": 1,
  15824. "min": 0,
  15825. "stabilized": false
  15826. }
  15827. },
  15828. "c2772b9e371048608255666b116e328e": {
  15829. "model_module": "bqplot",
  15830. "model_module_version": "^0.4.1",
  15831. "model_name": "LinearScaleModel",
  15832. "state": {
  15833. "_model_module_version": "^0.4.1",
  15834. "_view_module_version": "^0.4.1",
  15835. "allow_padding": false,
  15836. "max": 1,
  15837. "min": 0,
  15838. "stabilized": false
  15839. }
  15840. },
  15841. "c282648c3434401783fc9766f91a191b": {
  15842. "model_module": "@jupyter-widgets/base",
  15843. "model_module_version": "1.1.0",
  15844. "model_name": "LayoutModel",
  15845. "state": {
  15846. "min_width": "125px"
  15847. }
  15848. },
  15849. "c7f3f0d6b2914aa4abedfaba5db07850": {
  15850. "model_module": "bqplot",
  15851. "model_module_version": "^0.4.1",
  15852. "model_name": "LinearScaleModel",
  15853. "state": {
  15854. "_model_module_version": "^0.4.1",
  15855. "_view_module_version": "^0.4.1",
  15856. "allow_padding": false,
  15857. "max": 1,
  15858. "min": 0,
  15859. "stabilized": false
  15860. }
  15861. },
  15862. "c953d406e905474bb94b75425f9f7c33": {
  15863. "model_module": "bqplot",
  15864. "model_module_version": "^0.4.1",
  15865. "model_name": "GraphModel",
  15866. "state": {
  15867. "_model_module": "bqplot",
  15868. "_model_module_version": "^0.4.1",
  15869. "_view_count": null,
  15870. "_view_module": "bqplot",
  15871. "_view_module_version": "^0.4.1",
  15872. "apply_clip": true,
  15873. "charge": -600,
  15874. "color": {
  15875. "type": null,
  15876. "values": null
  15877. },
  15878. "colors": [
  15879. "#1f77b4",
  15880. "#ff7f0e",
  15881. "#2ca02c",
  15882. "#d62728",
  15883. "#9467bd",
  15884. "#8c564b",
  15885. "#e377c2",
  15886. "#7f7f7f",
  15887. "#bcbd22",
  15888. "#17becf"
  15889. ],
  15890. "directed": true,
  15891. "display_legend": false,
  15892. "enable_hover": true,
  15893. "highlight_links": true,
  15894. "hovered_style": {},
  15895. "interactions": {
  15896. "click": "select",
  15897. "hover": "tooltip"
  15898. },
  15899. "labels": [],
  15900. "link_color": {
  15901. "type": "float",
  15902. "values": []
  15903. },
  15904. "link_data": [
  15905. {
  15906. "source": 0,
  15907. "target": 5,
  15908. "value": 1
  15909. },
  15910. {
  15911. "source": 1,
  15912. "target": 5,
  15913. "value": 2
  15914. },
  15915. {
  15916. "source": 2,
  15917. "target": 5,
  15918. "value": 1
  15919. },
  15920. {
  15921. "source": 3,
  15922. "target": 5,
  15923. "value": 2
  15924. },
  15925. {
  15926. "source": 4,
  15927. "target": 5,
  15928. "value": 3
  15929. }
  15930. ],
  15931. "link_distance": 100,
  15932. "link_matrix": {
  15933. "type": "float",
  15934. "values": []
  15935. },
  15936. "link_type": "arc",
  15937. "node_data": [
  15938. "Boba Fett",
  15939. "Yoda",
  15940. "Jabba Desilijic Tiure",
  15941. "Darth Vader",
  15942. "Obi-Wan Kenobi",
  15943. "Beru Whitesun lars",
  15944. "Mon Mothma"
  15945. ],
  15946. "preserve_domain": {},
  15947. "scales": {},
  15948. "scales_metadata": {
  15949. "color": {
  15950. "dimension": "color"
  15951. },
  15952. "link_color": {
  15953. "dimension": "link_color"
  15954. },
  15955. "x": {
  15956. "dimension": "x",
  15957. "orientation": "horizontal"
  15958. },
  15959. "y": {
  15960. "dimension": "y",
  15961. "orientation": "vertical"
  15962. }
  15963. },
  15964. "selected": [],
  15965. "selected_style": {},
  15966. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  15967. "tooltip_location": "mouse",
  15968. "tooltip_style": {
  15969. "opacity": 0.9
  15970. },
  15971. "unhovered_style": {},
  15972. "unselected_style": {},
  15973. "visible": true,
  15974. "x": {
  15975. "type": "float",
  15976. "values": []
  15977. },
  15978. "y": {
  15979. "type": "float",
  15980. "values": []
  15981. }
  15982. }
  15983. },
  15984. "ca0e3e5fc4ad41a5b136314b36096ce5": {
  15985. "model_module": "bqplot",
  15986. "model_module_version": "^0.4.1",
  15987. "model_name": "GraphModel",
  15988. "state": {
  15989. "_model_module": "bqplot",
  15990. "_model_module_version": "^0.4.1",
  15991. "_view_count": null,
  15992. "_view_module": "bqplot",
  15993. "_view_module_version": "^0.4.1",
  15994. "apply_clip": true,
  15995. "charge": -600,
  15996. "color": {
  15997. "type": null,
  15998. "values": null
  15999. },
  16000. "colors": [
  16001. "#1f77b4",
  16002. "#ff7f0e",
  16003. "#2ca02c",
  16004. "#d62728",
  16005. "#9467bd",
  16006. "#8c564b",
  16007. "#e377c2",
  16008. "#7f7f7f",
  16009. "#bcbd22",
  16010. "#17becf"
  16011. ],
  16012. "directed": true,
  16013. "display_legend": false,
  16014. "enable_hover": true,
  16015. "highlight_links": true,
  16016. "hovered_style": {},
  16017. "interactions": {
  16018. "click": "select",
  16019. "hover": "tooltip"
  16020. },
  16021. "labels": [],
  16022. "link_color": {
  16023. "type": "float",
  16024. "values": []
  16025. },
  16026. "link_data": [
  16027. {
  16028. "source": {
  16029. "index": 0,
  16030. "label": "Boba Fett",
  16031. "label_display": "center",
  16032. "px": 373.5872232844583,
  16033. "py": 193.44508983064924,
  16034. "shape": "circle",
  16035. "shape_attrs": {
  16036. "r": 15
  16037. },
  16038. "value": null,
  16039. "weight": 6,
  16040. "x": 373.68382850733957,
  16041. "y": 193.35829527427939
  16042. },
  16043. "target": {
  16044. "index": 1,
  16045. "label": "Yoda",
  16046. "label_display": "center",
  16047. "px": 318.3575856743119,
  16048. "py": 233.24111198498593,
  16049. "shape": "circle",
  16050. "shape_attrs": {
  16051. "r": 15
  16052. },
  16053. "value": null,
  16054. "weight": 6,
  16055. "x": 318.35633200948735,
  16056. "y": 233.23745898558153
  16057. },
  16058. "value": 3
  16059. },
  16060. {
  16061. "source": {
  16062. "index": 0,
  16063. "label": "Boba Fett",
  16064. "label_display": "center",
  16065. "px": 373.5872232844583,
  16066. "py": 193.44508983064924,
  16067. "shape": "circle",
  16068. "shape_attrs": {
  16069. "r": 15
  16070. },
  16071. "value": null,
  16072. "weight": 6,
  16073. "x": 373.68382850733957,
  16074. "y": 193.35829527427939
  16075. },
  16076. "target": {
  16077. "index": 2,
  16078. "label": "Jabba Desilijic Tiure",
  16079. "label_display": "center",
  16080. "px": 269.7758114307298,
  16081. "py": 287.1137148132305,
  16082. "shape": "circle",
  16083. "shape_attrs": {
  16084. "r": 15
  16085. },
  16086. "value": null,
  16087. "weight": 6,
  16088. "x": 269.6868822744752,
  16089. "y": 287.19874109920744
  16090. },
  16091. "value": 1
  16092. },
  16093. {
  16094. "source": {
  16095. "index": 0,
  16096. "label": "Boba Fett",
  16097. "label_display": "center",
  16098. "px": 373.5872232844583,
  16099. "py": 193.44508983064924,
  16100. "shape": "circle",
  16101. "shape_attrs": {
  16102. "r": 15
  16103. },
  16104. "value": null,
  16105. "weight": 6,
  16106. "x": 373.68382850733957,
  16107. "y": 193.35829527427939
  16108. },
  16109. "target": {
  16110. "fixed": 0,
  16111. "index": 3,
  16112. "label": "Darth Vader",
  16113. "label_display": "center",
  16114. "px": 251.33846860553356,
  16115. "py": 219.72308510709544,
  16116. "shape": "circle",
  16117. "shape_attrs": {
  16118. "r": 15
  16119. },
  16120. "value": null,
  16121. "weight": 6,
  16122. "x": 251.2184640127402,
  16123. "y": 219.68404691700837
  16124. },
  16125. "value": 2
  16126. },
  16127. {
  16128. "source": {
  16129. "index": 0,
  16130. "label": "Boba Fett",
  16131. "label_display": "center",
  16132. "px": 373.5872232844583,
  16133. "py": 193.44508983064924,
  16134. "shape": "circle",
  16135. "shape_attrs": {
  16136. "r": 15
  16137. },
  16138. "value": null,
  16139. "weight": 6,
  16140. "x": 373.68382850733957,
  16141. "y": 193.35829527427939
  16142. },
  16143. "target": {
  16144. "index": 4,
  16145. "label": "Obi-Wan Kenobi",
  16146. "label_display": "center",
  16147. "px": 382.9109904711429,
  16148. "py": 263.70118064325,
  16149. "shape": "circle",
  16150. "shape_attrs": {
  16151. "r": 15
  16152. },
  16153. "value": null,
  16154. "weight": 6,
  16155. "x": 383.02260051803114,
  16156. "y": 263.745382143533
  16157. },
  16158. "value": 3
  16159. },
  16160. {
  16161. "source": {
  16162. "index": 0,
  16163. "label": "Boba Fett",
  16164. "label_display": "center",
  16165. "px": 373.5872232844583,
  16166. "py": 193.44508983064924,
  16167. "shape": "circle",
  16168. "shape_attrs": {
  16169. "r": 15
  16170. },
  16171. "value": null,
  16172. "weight": 6,
  16173. "x": 373.68382850733957,
  16174. "y": 193.35829527427939
  16175. },
  16176. "target": {
  16177. "index": 5,
  16178. "label": "Beru Whitesun lars",
  16179. "label_display": "center",
  16180. "px": 337.2256446016495,
  16181. "py": 325.65138903538286,
  16182. "shape": "circle",
  16183. "shape_attrs": {
  16184. "r": 15
  16185. },
  16186. "value": null,
  16187. "weight": 5,
  16188. "x": 337.25256985430184,
  16189. "y": 325.77317678222596
  16190. },
  16191. "value": 1
  16192. },
  16193. {
  16194. "source": {
  16195. "index": 0,
  16196. "label": "Boba Fett",
  16197. "label_display": "center",
  16198. "px": 373.5872232844583,
  16199. "py": 193.44508983064924,
  16200. "shape": "circle",
  16201. "shape_attrs": {
  16202. "r": 15
  16203. },
  16204. "value": null,
  16205. "weight": 6,
  16206. "x": 373.68382850733957,
  16207. "y": 193.35829527427939
  16208. },
  16209. "target": {
  16210. "fixed": 0,
  16211. "index": 6,
  16212. "label": "Mon Mothma",
  16213. "label_display": "center",
  16214. "px": 300.2539968250791,
  16215. "py": 152.58562806225194,
  16216. "shape": "circle",
  16217. "shape_attrs": {
  16218. "r": 15
  16219. },
  16220. "value": null,
  16221. "weight": 5,
  16222. "x": 300.22547371745225,
  16223. "y": 152.46057300615132
  16224. },
  16225. "value": 1
  16226. },
  16227. {
  16228. "source": {
  16229. "index": 1,
  16230. "label": "Yoda",
  16231. "label_display": "center",
  16232. "px": 318.3575856743119,
  16233. "py": 233.24111198498593,
  16234. "shape": "circle",
  16235. "shape_attrs": {
  16236. "r": 15
  16237. },
  16238. "value": null,
  16239. "weight": 6,
  16240. "x": 318.35633200948735,
  16241. "y": 233.23745898558153
  16242. },
  16243. "target": {
  16244. "index": 2,
  16245. "label": "Jabba Desilijic Tiure",
  16246. "label_display": "center",
  16247. "px": 269.7758114307298,
  16248. "py": 287.1137148132305,
  16249. "shape": "circle",
  16250. "shape_attrs": {
  16251. "r": 15
  16252. },
  16253. "value": null,
  16254. "weight": 6,
  16255. "x": 269.6868822744752,
  16256. "y": 287.19874109920744
  16257. },
  16258. "value": 2
  16259. },
  16260. {
  16261. "source": {
  16262. "index": 1,
  16263. "label": "Yoda",
  16264. "label_display": "center",
  16265. "px": 318.3575856743119,
  16266. "py": 233.24111198498593,
  16267. "shape": "circle",
  16268. "shape_attrs": {
  16269. "r": 15
  16270. },
  16271. "value": null,
  16272. "weight": 6,
  16273. "x": 318.35633200948735,
  16274. "y": 233.23745898558153
  16275. },
  16276. "target": {
  16277. "fixed": 0,
  16278. "index": 3,
  16279. "label": "Darth Vader",
  16280. "label_display": "center",
  16281. "px": 251.33846860553356,
  16282. "py": 219.72308510709544,
  16283. "shape": "circle",
  16284. "shape_attrs": {
  16285. "r": 15
  16286. },
  16287. "value": null,
  16288. "weight": 6,
  16289. "x": 251.2184640127402,
  16290. "y": 219.68404691700837
  16291. },
  16292. "value": 3
  16293. },
  16294. {
  16295. "source": {
  16296. "index": 1,
  16297. "label": "Yoda",
  16298. "label_display": "center",
  16299. "px": 318.3575856743119,
  16300. "py": 233.24111198498593,
  16301. "shape": "circle",
  16302. "shape_attrs": {
  16303. "r": 15
  16304. },
  16305. "value": null,
  16306. "weight": 6,
  16307. "x": 318.35633200948735,
  16308. "y": 233.23745898558153
  16309. },
  16310. "target": {
  16311. "index": 4,
  16312. "label": "Obi-Wan Kenobi",
  16313. "label_display": "center",
  16314. "px": 382.9109904711429,
  16315. "py": 263.70118064325,
  16316. "shape": "circle",
  16317. "shape_attrs": {
  16318. "r": 15
  16319. },
  16320. "value": null,
  16321. "weight": 6,
  16322. "x": 383.02260051803114,
  16323. "y": 263.745382143533
  16324. },
  16325. "value": 5
  16326. },
  16327. {
  16328. "source": {
  16329. "index": 1,
  16330. "label": "Yoda",
  16331. "label_display": "center",
  16332. "px": 318.3575856743119,
  16333. "py": 233.24111198498593,
  16334. "shape": "circle",
  16335. "shape_attrs": {
  16336. "r": 15
  16337. },
  16338. "value": null,
  16339. "weight": 6,
  16340. "x": 318.35633200948735,
  16341. "y": 233.23745898558153
  16342. },
  16343. "target": {
  16344. "index": 5,
  16345. "label": "Beru Whitesun lars",
  16346. "label_display": "center",
  16347. "px": 337.2256446016495,
  16348. "py": 325.65138903538286,
  16349. "shape": "circle",
  16350. "shape_attrs": {
  16351. "r": 15
  16352. },
  16353. "value": null,
  16354. "weight": 5,
  16355. "x": 337.25256985430184,
  16356. "y": 325.77317678222596
  16357. },
  16358. "value": 2
  16359. },
  16360. {
  16361. "source": {
  16362. "index": 1,
  16363. "label": "Yoda",
  16364. "label_display": "center",
  16365. "px": 318.3575856743119,
  16366. "py": 233.24111198498593,
  16367. "shape": "circle",
  16368. "shape_attrs": {
  16369. "r": 15
  16370. },
  16371. "value": null,
  16372. "weight": 6,
  16373. "x": 318.35633200948735,
  16374. "y": 233.23745898558153
  16375. },
  16376. "target": {
  16377. "fixed": 0,
  16378. "index": 6,
  16379. "label": "Mon Mothma",
  16380. "label_display": "center",
  16381. "px": 300.2539968250791,
  16382. "py": 152.58562806225194,
  16383. "shape": "circle",
  16384. "shape_attrs": {
  16385. "r": 15
  16386. },
  16387. "value": null,
  16388. "weight": 5,
  16389. "x": 300.22547371745225,
  16390. "y": 152.46057300615132
  16391. },
  16392. "value": 1
  16393. },
  16394. {
  16395. "source": {
  16396. "index": 2,
  16397. "label": "Jabba Desilijic Tiure",
  16398. "label_display": "center",
  16399. "px": 269.7758114307298,
  16400. "py": 287.1137148132305,
  16401. "shape": "circle",
  16402. "shape_attrs": {
  16403. "r": 15
  16404. },
  16405. "value": null,
  16406. "weight": 6,
  16407. "x": 269.6868822744752,
  16408. "y": 287.19874109920744
  16409. },
  16410. "target": {
  16411. "fixed": 0,
  16412. "index": 3,
  16413. "label": "Darth Vader",
  16414. "label_display": "center",
  16415. "px": 251.33846860553356,
  16416. "py": 219.72308510709544,
  16417. "shape": "circle",
  16418. "shape_attrs": {
  16419. "r": 15
  16420. },
  16421. "value": null,
  16422. "weight": 6,
  16423. "x": 251.2184640127402,
  16424. "y": 219.68404691700837
  16425. },
  16426. "value": 2
  16427. },
  16428. {
  16429. "source": {
  16430. "index": 2,
  16431. "label": "Jabba Desilijic Tiure",
  16432. "label_display": "center",
  16433. "px": 269.7758114307298,
  16434. "py": 287.1137148132305,
  16435. "shape": "circle",
  16436. "shape_attrs": {
  16437. "r": 15
  16438. },
  16439. "value": null,
  16440. "weight": 6,
  16441. "x": 269.6868822744752,
  16442. "y": 287.19874109920744
  16443. },
  16444. "target": {
  16445. "index": 4,
  16446. "label": "Obi-Wan Kenobi",
  16447. "label_display": "center",
  16448. "px": 382.9109904711429,
  16449. "py": 263.70118064325,
  16450. "shape": "circle",
  16451. "shape_attrs": {
  16452. "r": 15
  16453. },
  16454. "value": null,
  16455. "weight": 6,
  16456. "x": 383.02260051803114,
  16457. "y": 263.745382143533
  16458. },
  16459. "value": 3
  16460. },
  16461. {
  16462. "source": {
  16463. "index": 2,
  16464. "label": "Jabba Desilijic Tiure",
  16465. "label_display": "center",
  16466. "px": 269.7758114307298,
  16467. "py": 287.1137148132305,
  16468. "shape": "circle",
  16469. "shape_attrs": {
  16470. "r": 15
  16471. },
  16472. "value": null,
  16473. "weight": 6,
  16474. "x": 269.6868822744752,
  16475. "y": 287.19874109920744
  16476. },
  16477. "target": {
  16478. "index": 5,
  16479. "label": "Beru Whitesun lars",
  16480. "label_display": "center",
  16481. "px": 337.2256446016495,
  16482. "py": 325.65138903538286,
  16483. "shape": "circle",
  16484. "shape_attrs": {
  16485. "r": 15
  16486. },
  16487. "value": null,
  16488. "weight": 5,
  16489. "x": 337.25256985430184,
  16490. "y": 325.77317678222596
  16491. },
  16492. "value": 1
  16493. },
  16494. {
  16495. "source": {
  16496. "index": 2,
  16497. "label": "Jabba Desilijic Tiure",
  16498. "label_display": "center",
  16499. "px": 269.7758114307298,
  16500. "py": 287.1137148132305,
  16501. "shape": "circle",
  16502. "shape_attrs": {
  16503. "r": 15
  16504. },
  16505. "value": null,
  16506. "weight": 6,
  16507. "x": 269.6868822744752,
  16508. "y": 287.19874109920744
  16509. },
  16510. "target": {
  16511. "fixed": 0,
  16512. "index": 6,
  16513. "label": "Mon Mothma",
  16514. "label_display": "center",
  16515. "px": 300.2539968250791,
  16516. "py": 152.58562806225194,
  16517. "shape": "circle",
  16518. "shape_attrs": {
  16519. "r": 15
  16520. },
  16521. "value": null,
  16522. "weight": 5,
  16523. "x": 300.22547371745225,
  16524. "y": 152.46057300615132
  16525. },
  16526. "value": 1
  16527. },
  16528. {
  16529. "source": {
  16530. "fixed": 0,
  16531. "index": 3,
  16532. "label": "Darth Vader",
  16533. "label_display": "center",
  16534. "px": 251.33846860553356,
  16535. "py": 219.72308510709544,
  16536. "shape": "circle",
  16537. "shape_attrs": {
  16538. "r": 15
  16539. },
  16540. "value": null,
  16541. "weight": 6,
  16542. "x": 251.2184640127402,
  16543. "y": 219.68404691700837
  16544. },
  16545. "target": {
  16546. "index": 4,
  16547. "label": "Obi-Wan Kenobi",
  16548. "label_display": "center",
  16549. "px": 382.9109904711429,
  16550. "py": 263.70118064325,
  16551. "shape": "circle",
  16552. "shape_attrs": {
  16553. "r": 15
  16554. },
  16555. "value": null,
  16556. "weight": 6,
  16557. "x": 383.02260051803114,
  16558. "y": 263.745382143533
  16559. },
  16560. "value": 4
  16561. },
  16562. {
  16563. "source": {
  16564. "fixed": 0,
  16565. "index": 3,
  16566. "label": "Darth Vader",
  16567. "label_display": "center",
  16568. "px": 251.33846860553356,
  16569. "py": 219.72308510709544,
  16570. "shape": "circle",
  16571. "shape_attrs": {
  16572. "r": 15
  16573. },
  16574. "value": null,
  16575. "weight": 6,
  16576. "x": 251.2184640127402,
  16577. "y": 219.68404691700837
  16578. },
  16579. "target": {
  16580. "index": 5,
  16581. "label": "Beru Whitesun lars",
  16582. "label_display": "center",
  16583. "px": 337.2256446016495,
  16584. "py": 325.65138903538286,
  16585. "shape": "circle",
  16586. "shape_attrs": {
  16587. "r": 15
  16588. },
  16589. "value": null,
  16590. "weight": 5,
  16591. "x": 337.25256985430184,
  16592. "y": 325.77317678222596
  16593. },
  16594. "value": 2
  16595. },
  16596. {
  16597. "source": {
  16598. "fixed": 0,
  16599. "index": 3,
  16600. "label": "Darth Vader",
  16601. "label_display": "center",
  16602. "px": 251.33846860553356,
  16603. "py": 219.72308510709544,
  16604. "shape": "circle",
  16605. "shape_attrs": {
  16606. "r": 15
  16607. },
  16608. "value": null,
  16609. "weight": 6,
  16610. "x": 251.2184640127402,
  16611. "y": 219.68404691700837
  16612. },
  16613. "target": {
  16614. "fixed": 0,
  16615. "index": 6,
  16616. "label": "Mon Mothma",
  16617. "label_display": "center",
  16618. "px": 300.2539968250791,
  16619. "py": 152.58562806225194,
  16620. "shape": "circle",
  16621. "shape_attrs": {
  16622. "r": 15
  16623. },
  16624. "value": null,
  16625. "weight": 5,
  16626. "x": 300.22547371745225,
  16627. "y": 152.46057300615132
  16628. },
  16629. "value": 1
  16630. },
  16631. {
  16632. "source": {
  16633. "index": 4,
  16634. "label": "Obi-Wan Kenobi",
  16635. "label_display": "center",
  16636. "px": 382.9109904711429,
  16637. "py": 263.70118064325,
  16638. "shape": "circle",
  16639. "shape_attrs": {
  16640. "r": 15
  16641. },
  16642. "value": null,
  16643. "weight": 6,
  16644. "x": 383.02260051803114,
  16645. "y": 263.745382143533
  16646. },
  16647. "target": {
  16648. "index": 5,
  16649. "label": "Beru Whitesun lars",
  16650. "label_display": "center",
  16651. "px": 337.2256446016495,
  16652. "py": 325.65138903538286,
  16653. "shape": "circle",
  16654. "shape_attrs": {
  16655. "r": 15
  16656. },
  16657. "value": null,
  16658. "weight": 5,
  16659. "x": 337.25256985430184,
  16660. "y": 325.77317678222596
  16661. },
  16662. "value": 3
  16663. },
  16664. {
  16665. "source": {
  16666. "index": 4,
  16667. "label": "Obi-Wan Kenobi",
  16668. "label_display": "center",
  16669. "px": 382.9109904711429,
  16670. "py": 263.70118064325,
  16671. "shape": "circle",
  16672. "shape_attrs": {
  16673. "r": 15
  16674. },
  16675. "value": null,
  16676. "weight": 6,
  16677. "x": 383.02260051803114,
  16678. "y": 263.745382143533
  16679. },
  16680. "target": {
  16681. "fixed": 0,
  16682. "index": 6,
  16683. "label": "Mon Mothma",
  16684. "label_display": "center",
  16685. "px": 300.2539968250791,
  16686. "py": 152.58562806225194,
  16687. "shape": "circle",
  16688. "shape_attrs": {
  16689. "r": 15
  16690. },
  16691. "value": null,
  16692. "weight": 5,
  16693. "x": 300.22547371745225,
  16694. "y": 152.46057300615132
  16695. },
  16696. "value": 1
  16697. }
  16698. ],
  16699. "link_distance": 100,
  16700. "link_matrix": {
  16701. "type": "float",
  16702. "values": []
  16703. },
  16704. "link_type": "arc",
  16705. "node_data": [
  16706. "Boba Fett",
  16707. "Yoda",
  16708. "Jabba Desilijic Tiure",
  16709. "Darth Vader",
  16710. "Obi-Wan Kenobi",
  16711. "Beru Whitesun lars",
  16712. "Mon Mothma"
  16713. ],
  16714. "preserve_domain": {},
  16715. "scales": {},
  16716. "scales_metadata": {
  16717. "color": {
  16718. "dimension": "color"
  16719. },
  16720. "link_color": {
  16721. "dimension": "link_color"
  16722. },
  16723. "x": {
  16724. "dimension": "x",
  16725. "orientation": "horizontal"
  16726. },
  16727. "y": {
  16728. "dimension": "y",
  16729. "orientation": "vertical"
  16730. }
  16731. },
  16732. "selected": [
  16733. 6
  16734. ],
  16735. "selected_style": {},
  16736. "tooltip": "IPY_MODEL_56f8827244054cd9849b89755929db0f",
  16737. "tooltip_location": "mouse",
  16738. "tooltip_style": {
  16739. "opacity": 0.9
  16740. },
  16741. "unhovered_style": {},
  16742. "unselected_style": {},
  16743. "visible": true,
  16744. "x": {
  16745. "type": "float",
  16746. "values": []
  16747. },
  16748. "y": {
  16749. "type": "float",
  16750. "values": []
  16751. }
  16752. }
  16753. },
  16754. "ca75cf8790684b2d979573039aa35b53": {
  16755. "model_module": "bqplot",
  16756. "model_module_version": "^0.4.1",
  16757. "model_name": "GraphModel",
  16758. "state": {
  16759. "_model_module": "bqplot",
  16760. "_model_module_version": "^0.4.1",
  16761. "_view_count": null,
  16762. "_view_module": "bqplot",
  16763. "_view_module_version": "^0.4.1",
  16764. "apply_clip": true,
  16765. "charge": -600,
  16766. "color": {
  16767. "type": null,
  16768. "values": null
  16769. },
  16770. "colors": [
  16771. "#1f77b4",
  16772. "#ff7f0e",
  16773. "#2ca02c",
  16774. "#d62728",
  16775. "#9467bd",
  16776. "#8c564b",
  16777. "#e377c2",
  16778. "#7f7f7f",
  16779. "#bcbd22",
  16780. "#17becf"
  16781. ],
  16782. "directed": true,
  16783. "display_legend": false,
  16784. "enable_hover": true,
  16785. "highlight_links": true,
  16786. "hovered_style": {},
  16787. "interactions": {
  16788. "click": "select",
  16789. "hover": "tooltip"
  16790. },
  16791. "labels": [],
  16792. "link_color": {
  16793. "type": "float",
  16794. "values": []
  16795. },
  16796. "link_data": [
  16797. {
  16798. "source": 3,
  16799. "target": 6,
  16800. "value": 1
  16801. }
  16802. ],
  16803. "link_distance": 100,
  16804. "link_matrix": {
  16805. "type": "float",
  16806. "values": []
  16807. },
  16808. "link_type": "arc",
  16809. "node_data": [
  16810. "Boba Fett",
  16811. "Yoda",
  16812. "Jabba Desilijic Tiure",
  16813. "Darth Vader",
  16814. "Obi-Wan Kenobi",
  16815. "Beru Whitesun lars",
  16816. "Mon Mothma"
  16817. ],
  16818. "preserve_domain": {},
  16819. "scales": {},
  16820. "scales_metadata": {
  16821. "color": {
  16822. "dimension": "color"
  16823. },
  16824. "link_color": {
  16825. "dimension": "link_color"
  16826. },
  16827. "x": {
  16828. "dimension": "x",
  16829. "orientation": "horizontal"
  16830. },
  16831. "y": {
  16832. "dimension": "y",
  16833. "orientation": "vertical"
  16834. }
  16835. },
  16836. "selected": [],
  16837. "selected_style": {},
  16838. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  16839. "tooltip_location": "mouse",
  16840. "tooltip_style": {
  16841. "opacity": 0.9
  16842. },
  16843. "unhovered_style": {},
  16844. "unselected_style": {},
  16845. "visible": true,
  16846. "x": {
  16847. "type": "float",
  16848. "values": []
  16849. },
  16850. "y": {
  16851. "type": "float",
  16852. "values": []
  16853. }
  16854. }
  16855. },
  16856. "ca85ebe9c1c94b5a8060e15a56ad02f2": {
  16857. "model_module": "bqplot",
  16858. "model_module_version": "^0.4.1",
  16859. "model_name": "GraphModel",
  16860. "state": {
  16861. "_model_module": "bqplot",
  16862. "_model_module_version": "^0.4.1",
  16863. "_view_count": null,
  16864. "_view_module": "bqplot",
  16865. "_view_module_version": "^0.4.1",
  16866. "apply_clip": true,
  16867. "charge": -600,
  16868. "color": {
  16869. "type": null,
  16870. "values": null
  16871. },
  16872. "colors": [
  16873. "#1f77b4",
  16874. "#ff7f0e",
  16875. "#2ca02c",
  16876. "#d62728",
  16877. "#9467bd",
  16878. "#8c564b",
  16879. "#e377c2",
  16880. "#7f7f7f",
  16881. "#bcbd22",
  16882. "#17becf"
  16883. ],
  16884. "directed": true,
  16885. "display_legend": false,
  16886. "enable_hover": true,
  16887. "highlight_links": true,
  16888. "hovered_style": {},
  16889. "interactions": {
  16890. "click": "select",
  16891. "hover": "tooltip"
  16892. },
  16893. "labels": [],
  16894. "link_color": {
  16895. "type": "float",
  16896. "values": []
  16897. },
  16898. "link_data": [
  16899. {
  16900. "source": {
  16901. "index": 0,
  16902. "label": "Boba Fett",
  16903. "label_display": "center",
  16904. "px": 333.6795107832476,
  16905. "py": 310.3838252007357,
  16906. "shape": "circle",
  16907. "shape_attrs": {
  16908. "r": 15
  16909. },
  16910. "value": null,
  16911. "weight": 6,
  16912. "x": 333.72527634170456,
  16913. "y": 310.5051033170358
  16914. },
  16915. "target": {
  16916. "index": 1,
  16917. "label": "Yoda",
  16918. "label_display": "center",
  16919. "px": 302.12990191676215,
  16920. "py": 173.75305011642553,
  16921. "shape": "circle",
  16922. "shape_attrs": {
  16923. "r": 15
  16924. },
  16925. "value": null,
  16926. "weight": 6,
  16927. "x": 302.0838295892894,
  16928. "y": 173.63178038456914
  16929. },
  16930. "value": 3
  16931. },
  16932. {
  16933. "source": {
  16934. "index": 0,
  16935. "label": "Boba Fett",
  16936. "label_display": "center",
  16937. "px": 333.6795107832476,
  16938. "py": 310.3838252007357,
  16939. "shape": "circle",
  16940. "shape_attrs": {
  16941. "r": 15
  16942. },
  16943. "value": null,
  16944. "weight": 6,
  16945. "x": 333.72527634170456,
  16946. "y": 310.5051033170358
  16947. },
  16948. "target": {
  16949. "index": 2,
  16950. "label": "Jabba Desilijic Tiure",
  16951. "label_display": "center",
  16952. "px": 325.72093585020235,
  16953. "py": 242.1508840833397,
  16954. "shape": "circle",
  16955. "shape_attrs": {
  16956. "r": 15
  16957. },
  16958. "value": null,
  16959. "weight": 6,
  16960. "x": 325.7078283852082,
  16961. "y": 242.14688773502309
  16962. },
  16963. "value": 1
  16964. },
  16965. {
  16966. "source": {
  16967. "index": 0,
  16968. "label": "Boba Fett",
  16969. "label_display": "center",
  16970. "px": 333.6795107832476,
  16971. "py": 310.3838252007357,
  16972. "shape": "circle",
  16973. "shape_attrs": {
  16974. "r": 15
  16975. },
  16976. "value": null,
  16977. "weight": 6,
  16978. "x": 333.72527634170456,
  16979. "y": 310.5051033170358
  16980. },
  16981. "target": {
  16982. "index": 3,
  16983. "label": "Darth Vader",
  16984. "label_display": "center",
  16985. "px": 370.5078612638532,
  16986. "py": 191.24527748064213,
  16987. "shape": "circle",
  16988. "shape_attrs": {
  16989. "r": 15
  16990. },
  16991. "value": null,
  16992. "weight": 6,
  16993. "x": 370.59001742304525,
  16994. "y": 191.15632259972384
  16995. },
  16996. "value": 2
  16997. },
  16998. {
  16999. "source": {
  17000. "index": 0,
  17001. "label": "Boba Fett",
  17002. "label_display": "center",
  17003. "px": 333.6795107832476,
  17004. "py": 310.3838252007357,
  17005. "shape": "circle",
  17006. "shape_attrs": {
  17007. "r": 15
  17008. },
  17009. "value": null,
  17010. "weight": 6,
  17011. "x": 333.72527634170456,
  17012. "y": 310.5051033170358
  17013. },
  17014. "target": {
  17015. "index": 4,
  17016. "label": "Obi-Wan Kenobi",
  17017. "label_display": "center",
  17018. "px": 268.2125704165794,
  17019. "py": 285.1150528585682,
  17020. "shape": "circle",
  17021. "shape_attrs": {
  17022. "r": 15
  17023. },
  17024. "value": null,
  17025. "weight": 6,
  17026. "x": 268.12682532005954,
  17027. "y": 285.2139877892187
  17028. },
  17029. "value": 3
  17030. },
  17031. {
  17032. "source": {
  17033. "index": 0,
  17034. "label": "Boba Fett",
  17035. "label_display": "center",
  17036. "px": 333.6795107832476,
  17037. "py": 310.3838252007357,
  17038. "shape": "circle",
  17039. "shape_attrs": {
  17040. "r": 15
  17041. },
  17042. "value": null,
  17043. "weight": 6,
  17044. "x": 333.72527634170456,
  17045. "y": 310.5051033170358
  17046. },
  17047. "target": {
  17048. "index": 5,
  17049. "label": "Beru Whitesun lars",
  17050. "label_display": "center",
  17051. "px": 405.01958497509753,
  17052. "py": 266.77625024807196,
  17053. "shape": "circle",
  17054. "shape_attrs": {
  17055. "r": 15
  17056. },
  17057. "value": null,
  17058. "weight": 5,
  17059. "x": 405.14300721518134,
  17060. "y": 266.79621980234094
  17061. },
  17062. "value": 1
  17063. },
  17064. {
  17065. "source": {
  17066. "index": 0,
  17067. "label": "Boba Fett",
  17068. "label_display": "center",
  17069. "px": 333.6795107832476,
  17070. "py": 310.3838252007357,
  17071. "shape": "circle",
  17072. "shape_attrs": {
  17073. "r": 15
  17074. },
  17075. "value": null,
  17076. "weight": 6,
  17077. "x": 333.72527634170456,
  17078. "y": 310.5051033170358
  17079. },
  17080. "target": {
  17081. "index": 6,
  17082. "label": "Mon Mothma",
  17083. "label_display": "center",
  17084. "px": 235.49317331386132,
  17085. "py": 215.4553162858288,
  17086. "shape": "circle",
  17087. "shape_attrs": {
  17088. "r": 15
  17089. },
  17090. "value": null,
  17091. "weight": 5,
  17092. "x": 235.36096473821488,
  17093. "y": 215.44356109836068
  17094. },
  17095. "value": 1
  17096. },
  17097. {
  17098. "source": {
  17099. "index": 1,
  17100. "label": "Yoda",
  17101. "label_display": "center",
  17102. "px": 302.12990191676215,
  17103. "py": 173.75305011642553,
  17104. "shape": "circle",
  17105. "shape_attrs": {
  17106. "r": 15
  17107. },
  17108. "value": null,
  17109. "weight": 6,
  17110. "x": 302.0838295892894,
  17111. "y": 173.63178038456914
  17112. },
  17113. "target": {
  17114. "index": 2,
  17115. "label": "Jabba Desilijic Tiure",
  17116. "label_display": "center",
  17117. "px": 325.72093585020235,
  17118. "py": 242.1508840833397,
  17119. "shape": "circle",
  17120. "shape_attrs": {
  17121. "r": 15
  17122. },
  17123. "value": null,
  17124. "weight": 6,
  17125. "x": 325.7078283852082,
  17126. "y": 242.14688773502309
  17127. },
  17128. "value": 2
  17129. },
  17130. {
  17131. "source": {
  17132. "index": 1,
  17133. "label": "Yoda",
  17134. "label_display": "center",
  17135. "px": 302.12990191676215,
  17136. "py": 173.75305011642553,
  17137. "shape": "circle",
  17138. "shape_attrs": {
  17139. "r": 15
  17140. },
  17141. "value": null,
  17142. "weight": 6,
  17143. "x": 302.0838295892894,
  17144. "y": 173.63178038456914
  17145. },
  17146. "target": {
  17147. "index": 3,
  17148. "label": "Darth Vader",
  17149. "label_display": "center",
  17150. "px": 370.5078612638532,
  17151. "py": 191.24527748064213,
  17152. "shape": "circle",
  17153. "shape_attrs": {
  17154. "r": 15
  17155. },
  17156. "value": null,
  17157. "weight": 6,
  17158. "x": 370.59001742304525,
  17159. "y": 191.15632259972384
  17160. },
  17161. "value": 3
  17162. },
  17163. {
  17164. "source": {
  17165. "index": 1,
  17166. "label": "Yoda",
  17167. "label_display": "center",
  17168. "px": 302.12990191676215,
  17169. "py": 173.75305011642553,
  17170. "shape": "circle",
  17171. "shape_attrs": {
  17172. "r": 15
  17173. },
  17174. "value": null,
  17175. "weight": 6,
  17176. "x": 302.0838295892894,
  17177. "y": 173.63178038456914
  17178. },
  17179. "target": {
  17180. "index": 4,
  17181. "label": "Obi-Wan Kenobi",
  17182. "label_display": "center",
  17183. "px": 268.2125704165794,
  17184. "py": 285.1150528585682,
  17185. "shape": "circle",
  17186. "shape_attrs": {
  17187. "r": 15
  17188. },
  17189. "value": null,
  17190. "weight": 6,
  17191. "x": 268.12682532005954,
  17192. "y": 285.2139877892187
  17193. },
  17194. "value": 5
  17195. },
  17196. {
  17197. "source": {
  17198. "index": 1,
  17199. "label": "Yoda",
  17200. "label_display": "center",
  17201. "px": 302.12990191676215,
  17202. "py": 173.75305011642553,
  17203. "shape": "circle",
  17204. "shape_attrs": {
  17205. "r": 15
  17206. },
  17207. "value": null,
  17208. "weight": 6,
  17209. "x": 302.0838295892894,
  17210. "y": 173.63178038456914
  17211. },
  17212. "target": {
  17213. "index": 5,
  17214. "label": "Beru Whitesun lars",
  17215. "label_display": "center",
  17216. "px": 405.01958497509753,
  17217. "py": 266.77625024807196,
  17218. "shape": "circle",
  17219. "shape_attrs": {
  17220. "r": 15
  17221. },
  17222. "value": null,
  17223. "weight": 5,
  17224. "x": 405.14300721518134,
  17225. "y": 266.79621980234094
  17226. },
  17227. "value": 2
  17228. },
  17229. {
  17230. "source": {
  17231. "index": 1,
  17232. "label": "Yoda",
  17233. "label_display": "center",
  17234. "px": 302.12990191676215,
  17235. "py": 173.75305011642553,
  17236. "shape": "circle",
  17237. "shape_attrs": {
  17238. "r": 15
  17239. },
  17240. "value": null,
  17241. "weight": 6,
  17242. "x": 302.0838295892894,
  17243. "y": 173.63178038456914
  17244. },
  17245. "target": {
  17246. "index": 6,
  17247. "label": "Mon Mothma",
  17248. "label_display": "center",
  17249. "px": 235.49317331386132,
  17250. "py": 215.4553162858288,
  17251. "shape": "circle",
  17252. "shape_attrs": {
  17253. "r": 15
  17254. },
  17255. "value": null,
  17256. "weight": 5,
  17257. "x": 235.36096473821488,
  17258. "y": 215.44356109836068
  17259. },
  17260. "value": 1
  17261. },
  17262. {
  17263. "source": {
  17264. "index": 2,
  17265. "label": "Jabba Desilijic Tiure",
  17266. "label_display": "center",
  17267. "px": 325.72093585020235,
  17268. "py": 242.1508840833397,
  17269. "shape": "circle",
  17270. "shape_attrs": {
  17271. "r": 15
  17272. },
  17273. "value": null,
  17274. "weight": 6,
  17275. "x": 325.7078283852082,
  17276. "y": 242.14688773502309
  17277. },
  17278. "target": {
  17279. "index": 3,
  17280. "label": "Darth Vader",
  17281. "label_display": "center",
  17282. "px": 370.5078612638532,
  17283. "py": 191.24527748064213,
  17284. "shape": "circle",
  17285. "shape_attrs": {
  17286. "r": 15
  17287. },
  17288. "value": null,
  17289. "weight": 6,
  17290. "x": 370.59001742304525,
  17291. "y": 191.15632259972384
  17292. },
  17293. "value": 2
  17294. },
  17295. {
  17296. "source": {
  17297. "index": 2,
  17298. "label": "Jabba Desilijic Tiure",
  17299. "label_display": "center",
  17300. "px": 325.72093585020235,
  17301. "py": 242.1508840833397,
  17302. "shape": "circle",
  17303. "shape_attrs": {
  17304. "r": 15
  17305. },
  17306. "value": null,
  17307. "weight": 6,
  17308. "x": 325.7078283852082,
  17309. "y": 242.14688773502309
  17310. },
  17311. "target": {
  17312. "index": 4,
  17313. "label": "Obi-Wan Kenobi",
  17314. "label_display": "center",
  17315. "px": 268.2125704165794,
  17316. "py": 285.1150528585682,
  17317. "shape": "circle",
  17318. "shape_attrs": {
  17319. "r": 15
  17320. },
  17321. "value": null,
  17322. "weight": 6,
  17323. "x": 268.12682532005954,
  17324. "y": 285.2139877892187
  17325. },
  17326. "value": 3
  17327. },
  17328. {
  17329. "source": {
  17330. "index": 2,
  17331. "label": "Jabba Desilijic Tiure",
  17332. "label_display": "center",
  17333. "px": 325.72093585020235,
  17334. "py": 242.1508840833397,
  17335. "shape": "circle",
  17336. "shape_attrs": {
  17337. "r": 15
  17338. },
  17339. "value": null,
  17340. "weight": 6,
  17341. "x": 325.7078283852082,
  17342. "y": 242.14688773502309
  17343. },
  17344. "target": {
  17345. "index": 5,
  17346. "label": "Beru Whitesun lars",
  17347. "label_display": "center",
  17348. "px": 405.01958497509753,
  17349. "py": 266.77625024807196,
  17350. "shape": "circle",
  17351. "shape_attrs": {
  17352. "r": 15
  17353. },
  17354. "value": null,
  17355. "weight": 5,
  17356. "x": 405.14300721518134,
  17357. "y": 266.79621980234094
  17358. },
  17359. "value": 1
  17360. },
  17361. {
  17362. "source": {
  17363. "index": 2,
  17364. "label": "Jabba Desilijic Tiure",
  17365. "label_display": "center",
  17366. "px": 325.72093585020235,
  17367. "py": 242.1508840833397,
  17368. "shape": "circle",
  17369. "shape_attrs": {
  17370. "r": 15
  17371. },
  17372. "value": null,
  17373. "weight": 6,
  17374. "x": 325.7078283852082,
  17375. "y": 242.14688773502309
  17376. },
  17377. "target": {
  17378. "index": 6,
  17379. "label": "Mon Mothma",
  17380. "label_display": "center",
  17381. "px": 235.49317331386132,
  17382. "py": 215.4553162858288,
  17383. "shape": "circle",
  17384. "shape_attrs": {
  17385. "r": 15
  17386. },
  17387. "value": null,
  17388. "weight": 5,
  17389. "x": 235.36096473821488,
  17390. "y": 215.44356109836068
  17391. },
  17392. "value": 1
  17393. },
  17394. {
  17395. "source": {
  17396. "index": 3,
  17397. "label": "Darth Vader",
  17398. "label_display": "center",
  17399. "px": 370.5078612638532,
  17400. "py": 191.24527748064213,
  17401. "shape": "circle",
  17402. "shape_attrs": {
  17403. "r": 15
  17404. },
  17405. "value": null,
  17406. "weight": 6,
  17407. "x": 370.59001742304525,
  17408. "y": 191.15632259972384
  17409. },
  17410. "target": {
  17411. "index": 4,
  17412. "label": "Obi-Wan Kenobi",
  17413. "label_display": "center",
  17414. "px": 268.2125704165794,
  17415. "py": 285.1150528585682,
  17416. "shape": "circle",
  17417. "shape_attrs": {
  17418. "r": 15
  17419. },
  17420. "value": null,
  17421. "weight": 6,
  17422. "x": 268.12682532005954,
  17423. "y": 285.2139877892187
  17424. },
  17425. "value": 4
  17426. },
  17427. {
  17428. "source": {
  17429. "index": 3,
  17430. "label": "Darth Vader",
  17431. "label_display": "center",
  17432. "px": 370.5078612638532,
  17433. "py": 191.24527748064213,
  17434. "shape": "circle",
  17435. "shape_attrs": {
  17436. "r": 15
  17437. },
  17438. "value": null,
  17439. "weight": 6,
  17440. "x": 370.59001742304525,
  17441. "y": 191.15632259972384
  17442. },
  17443. "target": {
  17444. "index": 5,
  17445. "label": "Beru Whitesun lars",
  17446. "label_display": "center",
  17447. "px": 405.01958497509753,
  17448. "py": 266.77625024807196,
  17449. "shape": "circle",
  17450. "shape_attrs": {
  17451. "r": 15
  17452. },
  17453. "value": null,
  17454. "weight": 5,
  17455. "x": 405.14300721518134,
  17456. "y": 266.79621980234094
  17457. },
  17458. "value": 2
  17459. },
  17460. {
  17461. "source": {
  17462. "index": 3,
  17463. "label": "Darth Vader",
  17464. "label_display": "center",
  17465. "px": 370.5078612638532,
  17466. "py": 191.24527748064213,
  17467. "shape": "circle",
  17468. "shape_attrs": {
  17469. "r": 15
  17470. },
  17471. "value": null,
  17472. "weight": 6,
  17473. "x": 370.59001742304525,
  17474. "y": 191.15632259972384
  17475. },
  17476. "target": {
  17477. "index": 6,
  17478. "label": "Mon Mothma",
  17479. "label_display": "center",
  17480. "px": 235.49317331386132,
  17481. "py": 215.4553162858288,
  17482. "shape": "circle",
  17483. "shape_attrs": {
  17484. "r": 15
  17485. },
  17486. "value": null,
  17487. "weight": 5,
  17488. "x": 235.36096473821488,
  17489. "y": 215.44356109836068
  17490. },
  17491. "value": 1
  17492. },
  17493. {
  17494. "source": {
  17495. "index": 4,
  17496. "label": "Obi-Wan Kenobi",
  17497. "label_display": "center",
  17498. "px": 268.2125704165794,
  17499. "py": 285.1150528585682,
  17500. "shape": "circle",
  17501. "shape_attrs": {
  17502. "r": 15
  17503. },
  17504. "value": null,
  17505. "weight": 6,
  17506. "x": 268.12682532005954,
  17507. "y": 285.2139877892187
  17508. },
  17509. "target": {
  17510. "index": 5,
  17511. "label": "Beru Whitesun lars",
  17512. "label_display": "center",
  17513. "px": 405.01958497509753,
  17514. "py": 266.77625024807196,
  17515. "shape": "circle",
  17516. "shape_attrs": {
  17517. "r": 15
  17518. },
  17519. "value": null,
  17520. "weight": 5,
  17521. "x": 405.14300721518134,
  17522. "y": 266.79621980234094
  17523. },
  17524. "value": 3
  17525. },
  17526. {
  17527. "source": {
  17528. "index": 4,
  17529. "label": "Obi-Wan Kenobi",
  17530. "label_display": "center",
  17531. "px": 268.2125704165794,
  17532. "py": 285.1150528585682,
  17533. "shape": "circle",
  17534. "shape_attrs": {
  17535. "r": 15
  17536. },
  17537. "value": null,
  17538. "weight": 6,
  17539. "x": 268.12682532005954,
  17540. "y": 285.2139877892187
  17541. },
  17542. "target": {
  17543. "index": 6,
  17544. "label": "Mon Mothma",
  17545. "label_display": "center",
  17546. "px": 235.49317331386132,
  17547. "py": 215.4553162858288,
  17548. "shape": "circle",
  17549. "shape_attrs": {
  17550. "r": 15
  17551. },
  17552. "value": null,
  17553. "weight": 5,
  17554. "x": 235.36096473821488,
  17555. "y": 215.44356109836068
  17556. },
  17557. "value": 1
  17558. }
  17559. ],
  17560. "link_distance": 100,
  17561. "link_matrix": {
  17562. "type": "float",
  17563. "values": []
  17564. },
  17565. "link_type": "arc",
  17566. "node_data": [
  17567. "Boba Fett",
  17568. "Yoda",
  17569. "Jabba Desilijic Tiure",
  17570. "Darth Vader",
  17571. "Obi-Wan Kenobi",
  17572. "Beru Whitesun lars",
  17573. "Mon Mothma"
  17574. ],
  17575. "preserve_domain": {},
  17576. "scales": {},
  17577. "scales_metadata": {
  17578. "color": {
  17579. "dimension": "color"
  17580. },
  17581. "link_color": {
  17582. "dimension": "link_color"
  17583. },
  17584. "x": {
  17585. "dimension": "x",
  17586. "orientation": "horizontal"
  17587. },
  17588. "y": {
  17589. "dimension": "y",
  17590. "orientation": "vertical"
  17591. }
  17592. },
  17593. "selected": [],
  17594. "selected_style": {},
  17595. "tooltip": "IPY_MODEL_59fc3be77a544a9dbc317cbe2f38797b",
  17596. "tooltip_location": "mouse",
  17597. "tooltip_style": {
  17598. "opacity": 0.9
  17599. },
  17600. "unhovered_style": {},
  17601. "unselected_style": {},
  17602. "visible": true,
  17603. "x": {
  17604. "type": "float",
  17605. "values": []
  17606. },
  17607. "y": {
  17608. "type": "float",
  17609. "values": []
  17610. }
  17611. }
  17612. },
  17613. "cb761d34af8d4e1ab24f5ddc8ffa42c9": {
  17614. "model_module": "bqplot",
  17615. "model_module_version": "^0.4.1",
  17616. "model_name": "FigureModel",
  17617. "state": {
  17618. "_dom_classes": [],
  17619. "_model_module_version": "^0.4.1",
  17620. "_view_module_version": "^0.4.1",
  17621. "layout": "IPY_MODEL_dd97d1d84c734d3fb8651a4e093072ba",
  17622. "marks": [
  17623. "IPY_MODEL_93e757762e1847e7bc04df9c29747c63"
  17624. ],
  17625. "scale_x": "IPY_MODEL_2fa4e6dc7ddf44baae1397ab9145f5ff",
  17626. "scale_y": "IPY_MODEL_07e716605f9447a9a658af5e8bdf9958"
  17627. }
  17628. },
  17629. "ce42dab1394e44c184780ca5616e3a8f": {
  17630. "model_module": "@jupyter-widgets/base",
  17631. "model_module_version": "1.1.0",
  17632. "model_name": "LayoutModel",
  17633. "state": {}
  17634. },
  17635. "cf280a9fb5194b89a7936bf875c9bef2": {
  17636. "model_module": "bqplot",
  17637. "model_module_version": "^0.4.1",
  17638. "model_name": "TooltipModel",
  17639. "state": {
  17640. "_model_module_version": "^0.4.1",
  17641. "_view_module_version": "^0.4.1",
  17642. "fields": [
  17643. "label"
  17644. ],
  17645. "layout": "IPY_MODEL_df77e68130b14a18b9950b06571ccc60"
  17646. }
  17647. },
  17648. "cfb081ebd2c64ed8a62218e8d9879254": {
  17649. "model_module": "bqplot",
  17650. "model_module_version": "^0.4.1",
  17651. "model_name": "FigureModel",
  17652. "state": {
  17653. "_dom_classes": [],
  17654. "_model_module_version": "^0.4.1",
  17655. "_view_module_version": "^0.4.1",
  17656. "layout": "IPY_MODEL_911aeb5b513043f5ace845220148ea83",
  17657. "marks": [
  17658. "IPY_MODEL_ca0e3e5fc4ad41a5b136314b36096ce5"
  17659. ],
  17660. "scale_x": "IPY_MODEL_3ed4d67af74b4f0da38d30c1ec11cd67",
  17661. "scale_y": "IPY_MODEL_ae71ec02fbe64a30a85280b3127efec7"
  17662. }
  17663. },
  17664. "d040fac2bddd413c99a9880795eeb8c2": {
  17665. "model_module": "bqplot",
  17666. "model_module_version": "^0.4.1",
  17667. "model_name": "FigureModel",
  17668. "state": {
  17669. "_dom_classes": [],
  17670. "_model_module_version": "^0.4.1",
  17671. "_view_module_version": "^0.4.1",
  17672. "layout": "IPY_MODEL_42165b6d23464c9c95efe781953eca99",
  17673. "marks": [
  17674. "IPY_MODEL_ca85ebe9c1c94b5a8060e15a56ad02f2"
  17675. ],
  17676. "scale_x": "IPY_MODEL_4fafce047c084d71b47debf8fcb32113",
  17677. "scale_y": "IPY_MODEL_e704507469204e1eaf020c3c7ce814ff"
  17678. }
  17679. },
  17680. "d38f69368bab45c2bea68f596badb6e2": {
  17681. "model_module": "@jupyter-widgets/base",
  17682. "model_module_version": "1.1.0",
  17683. "model_name": "LayoutModel",
  17684. "state": {}
  17685. },
  17686. "dd97d1d84c734d3fb8651a4e093072ba": {
  17687. "model_module": "@jupyter-widgets/base",
  17688. "model_module_version": "1.1.0",
  17689. "model_name": "LayoutModel",
  17690. "state": {
  17691. "min_width": "125px"
  17692. }
  17693. },
  17694. "dedbc3bc6f604ef38ff9c04123418c06": {
  17695. "model_module": "@jupyter-widgets/base",
  17696. "model_module_version": "1.1.0",
  17697. "model_name": "LayoutModel",
  17698. "state": {}
  17699. },
  17700. "df1e08c43e62428f8856cc3e2a0bd20c": {
  17701. "model_module": "@jupyter-widgets/base",
  17702. "model_module_version": "1.1.0",
  17703. "model_name": "LayoutModel",
  17704. "state": {
  17705. "min_width": "125px"
  17706. }
  17707. },
  17708. "df77e68130b14a18b9950b06571ccc60": {
  17709. "model_module": "@jupyter-widgets/base",
  17710. "model_module_version": "1.1.0",
  17711. "model_name": "LayoutModel",
  17712. "state": {}
  17713. },
  17714. "dfd80360f1e54ef983d3d70becb248ee": {
  17715. "model_module": "@jupyter-widgets/base",
  17716. "model_module_version": "1.1.0",
  17717. "model_name": "LayoutModel",
  17718. "state": {}
  17719. },
  17720. "e001d2805b9140288dd85a61d50ec364": {
  17721. "model_module": "bqplot",
  17722. "model_module_version": "^0.4.1",
  17723. "model_name": "GraphModel",
  17724. "state": {
  17725. "_model_module": "bqplot",
  17726. "_model_module_version": "^0.4.1",
  17727. "_view_count": null,
  17728. "_view_module": "bqplot",
  17729. "_view_module_version": "^0.4.1",
  17730. "apply_clip": true,
  17731. "charge": -600,
  17732. "color": {
  17733. "type": null,
  17734. "values": null
  17735. },
  17736. "colors": [
  17737. "#1f77b4",
  17738. "#ff7f0e",
  17739. "#2ca02c",
  17740. "#d62728",
  17741. "#9467bd",
  17742. "#8c564b",
  17743. "#e377c2",
  17744. "#7f7f7f",
  17745. "#bcbd22",
  17746. "#17becf"
  17747. ],
  17748. "directed": true,
  17749. "display_legend": false,
  17750. "enable_hover": true,
  17751. "highlight_links": true,
  17752. "hovered_style": {},
  17753. "interactions": {
  17754. "click": "select",
  17755. "hover": "tooltip"
  17756. },
  17757. "labels": [],
  17758. "link_color": {
  17759. "type": "float",
  17760. "values": []
  17761. },
  17762. "link_data": [
  17763. {
  17764. "source": 3,
  17765. "target": 6,
  17766. "value": 1
  17767. }
  17768. ],
  17769. "link_distance": 100,
  17770. "link_matrix": {
  17771. "type": "float",
  17772. "values": []
  17773. },
  17774. "link_type": "arc",
  17775. "node_data": [
  17776. "Boba Fett",
  17777. "Yoda",
  17778. "Jabba Desilijic Tiure",
  17779. "Darth Vader",
  17780. "Obi-Wan Kenobi",
  17781. "Beru Whitesun lars",
  17782. "Mon Mothma"
  17783. ],
  17784. "preserve_domain": {},
  17785. "scales": {},
  17786. "scales_metadata": {
  17787. "color": {
  17788. "dimension": "color"
  17789. },
  17790. "link_color": {
  17791. "dimension": "link_color"
  17792. },
  17793. "x": {
  17794. "dimension": "x",
  17795. "orientation": "horizontal"
  17796. },
  17797. "y": {
  17798. "dimension": "y",
  17799. "orientation": "vertical"
  17800. }
  17801. },
  17802. "selected": [],
  17803. "selected_style": {},
  17804. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  17805. "tooltip_location": "mouse",
  17806. "tooltip_style": {
  17807. "opacity": 0.9
  17808. },
  17809. "unhovered_style": {},
  17810. "unselected_style": {},
  17811. "visible": true,
  17812. "x": {
  17813. "type": "float",
  17814. "values": []
  17815. },
  17816. "y": {
  17817. "type": "float",
  17818. "values": []
  17819. }
  17820. }
  17821. },
  17822. "e0bfcc4f1bff46d6bf328e80f5cfb3a9": {
  17823. "model_module": "bqplot",
  17824. "model_module_version": "^0.4.1",
  17825. "model_name": "GraphModel",
  17826. "state": {
  17827. "_model_module": "bqplot",
  17828. "_model_module_version": "^0.4.1",
  17829. "_view_count": null,
  17830. "_view_module": "bqplot",
  17831. "_view_module_version": "^0.4.1",
  17832. "apply_clip": true,
  17833. "charge": -600,
  17834. "color": {
  17835. "type": null,
  17836. "values": null
  17837. },
  17838. "colors": [
  17839. "#1f77b4",
  17840. "#ff7f0e",
  17841. "#2ca02c",
  17842. "#d62728",
  17843. "#9467bd",
  17844. "#8c564b",
  17845. "#e377c2",
  17846. "#7f7f7f",
  17847. "#bcbd22",
  17848. "#17becf"
  17849. ],
  17850. "directed": true,
  17851. "display_legend": false,
  17852. "enable_hover": true,
  17853. "highlight_links": true,
  17854. "hovered_style": {},
  17855. "interactions": {
  17856. "click": "select",
  17857. "hover": "tooltip"
  17858. },
  17859. "labels": [],
  17860. "link_color": {
  17861. "type": "float",
  17862. "values": []
  17863. },
  17864. "link_data": [
  17865. {
  17866. "source": 3,
  17867. "target": 6,
  17868. "value": 1
  17869. },
  17870. {
  17871. "source": 3,
  17872. "target": 6,
  17873. "value": 1
  17874. }
  17875. ],
  17876. "link_distance": 100,
  17877. "link_matrix": {
  17878. "type": "float",
  17879. "values": []
  17880. },
  17881. "link_type": "arc",
  17882. "node_data": [
  17883. "Boba Fett",
  17884. "Yoda",
  17885. "Jabba Desilijic Tiure",
  17886. "Darth Vader",
  17887. "Obi-Wan Kenobi",
  17888. "Beru Whitesun lars",
  17889. "Mon Mothma"
  17890. ],
  17891. "preserve_domain": {},
  17892. "scales": {},
  17893. "scales_metadata": {
  17894. "color": {
  17895. "dimension": "color"
  17896. },
  17897. "link_color": {
  17898. "dimension": "link_color"
  17899. },
  17900. "x": {
  17901. "dimension": "x",
  17902. "orientation": "horizontal"
  17903. },
  17904. "y": {
  17905. "dimension": "y",
  17906. "orientation": "vertical"
  17907. }
  17908. },
  17909. "selected": [],
  17910. "selected_style": {},
  17911. "tooltip": "IPY_MODEL_56f8827244054cd9849b89755929db0f",
  17912. "tooltip_location": "mouse",
  17913. "tooltip_style": {
  17914. "opacity": 0.9
  17915. },
  17916. "unhovered_style": {},
  17917. "unselected_style": {},
  17918. "visible": true,
  17919. "x": {
  17920. "type": "float",
  17921. "values": []
  17922. },
  17923. "y": {
  17924. "type": "float",
  17925. "values": []
  17926. }
  17927. }
  17928. },
  17929. "e1b28484265b4ebebec91d90218ace04": {
  17930. "model_module": "bqplot",
  17931. "model_module_version": "^0.4.1",
  17932. "model_name": "GraphModel",
  17933. "state": {
  17934. "_model_module": "bqplot",
  17935. "_model_module_version": "^0.4.1",
  17936. "_view_count": null,
  17937. "_view_module": "bqplot",
  17938. "_view_module_version": "^0.4.1",
  17939. "apply_clip": true,
  17940. "charge": -600,
  17941. "color": {
  17942. "type": null,
  17943. "values": null
  17944. },
  17945. "colors": [
  17946. "#1f77b4",
  17947. "#ff7f0e",
  17948. "#2ca02c",
  17949. "#d62728",
  17950. "#9467bd",
  17951. "#8c564b",
  17952. "#e377c2",
  17953. "#7f7f7f",
  17954. "#bcbd22",
  17955. "#17becf"
  17956. ],
  17957. "directed": true,
  17958. "display_legend": false,
  17959. "enable_hover": true,
  17960. "highlight_links": true,
  17961. "hovered_style": {},
  17962. "interactions": {
  17963. "click": "select",
  17964. "hover": "tooltip"
  17965. },
  17966. "labels": [],
  17967. "link_color": {
  17968. "type": "float",
  17969. "values": []
  17970. },
  17971. "link_data": [
  17972. {
  17973. "source": 3,
  17974. "target": 6,
  17975. "value": 1
  17976. }
  17977. ],
  17978. "link_distance": 100,
  17979. "link_matrix": {
  17980. "type": "float",
  17981. "values": []
  17982. },
  17983. "link_type": "arc",
  17984. "node_data": [
  17985. "Boba Fett",
  17986. "Yoda",
  17987. "Jabba Desilijic Tiure",
  17988. "Darth Vader",
  17989. "Obi-Wan Kenobi",
  17990. "Beru Whitesun lars",
  17991. "Mon Mothma"
  17992. ],
  17993. "preserve_domain": {},
  17994. "scales": {},
  17995. "scales_metadata": {
  17996. "color": {
  17997. "dimension": "color"
  17998. },
  17999. "link_color": {
  18000. "dimension": "link_color"
  18001. },
  18002. "x": {
  18003. "dimension": "x",
  18004. "orientation": "horizontal"
  18005. },
  18006. "y": {
  18007. "dimension": "y",
  18008. "orientation": "vertical"
  18009. }
  18010. },
  18011. "selected": [],
  18012. "selected_style": {},
  18013. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  18014. "tooltip_location": "mouse",
  18015. "tooltip_style": {
  18016. "opacity": 0.9
  18017. },
  18018. "unhovered_style": {},
  18019. "unselected_style": {},
  18020. "visible": true,
  18021. "x": {
  18022. "type": "float",
  18023. "values": []
  18024. },
  18025. "y": {
  18026. "type": "float",
  18027. "values": []
  18028. }
  18029. }
  18030. },
  18031. "e54d8b8a5c294238ba4354a39b25184c": {
  18032. "model_module": "bqplot",
  18033. "model_module_version": "^0.4.1",
  18034. "model_name": "GraphModel",
  18035. "state": {
  18036. "_model_module": "bqplot",
  18037. "_model_module_version": "^0.4.1",
  18038. "_view_count": null,
  18039. "_view_module": "bqplot",
  18040. "_view_module_version": "^0.4.1",
  18041. "apply_clip": true,
  18042. "charge": -600,
  18043. "color": {
  18044. "type": null,
  18045. "values": null
  18046. },
  18047. "colors": [
  18048. "#1f77b4",
  18049. "#ff7f0e",
  18050. "#2ca02c",
  18051. "#d62728",
  18052. "#9467bd",
  18053. "#8c564b",
  18054. "#e377c2",
  18055. "#7f7f7f",
  18056. "#bcbd22",
  18057. "#17becf"
  18058. ],
  18059. "directed": true,
  18060. "display_legend": false,
  18061. "enable_hover": true,
  18062. "highlight_links": true,
  18063. "hovered_style": {},
  18064. "interactions": {
  18065. "click": "select",
  18066. "hover": "tooltip"
  18067. },
  18068. "labels": [],
  18069. "link_color": {
  18070. "type": "float",
  18071. "values": []
  18072. },
  18073. "link_data": [
  18074. {
  18075. "source": 0,
  18076. "target": 5,
  18077. "value": 1
  18078. },
  18079. {
  18080. "source": 1,
  18081. "target": 5,
  18082. "value": 2
  18083. },
  18084. {
  18085. "source": 2,
  18086. "target": 5,
  18087. "value": 1
  18088. },
  18089. {
  18090. "source": 3,
  18091. "target": 5,
  18092. "value": 2
  18093. },
  18094. {
  18095. "source": 4,
  18096. "target": 5,
  18097. "value": 3
  18098. }
  18099. ],
  18100. "link_distance": 100,
  18101. "link_matrix": {
  18102. "type": "float",
  18103. "values": []
  18104. },
  18105. "link_type": "arc",
  18106. "node_data": [
  18107. "Boba Fett",
  18108. "Yoda",
  18109. "Jabba Desilijic Tiure",
  18110. "Darth Vader",
  18111. "Obi-Wan Kenobi",
  18112. "Beru Whitesun lars",
  18113. "Mon Mothma"
  18114. ],
  18115. "preserve_domain": {},
  18116. "scales": {},
  18117. "scales_metadata": {
  18118. "color": {
  18119. "dimension": "color"
  18120. },
  18121. "link_color": {
  18122. "dimension": "link_color"
  18123. },
  18124. "x": {
  18125. "dimension": "x",
  18126. "orientation": "horizontal"
  18127. },
  18128. "y": {
  18129. "dimension": "y",
  18130. "orientation": "vertical"
  18131. }
  18132. },
  18133. "selected": [],
  18134. "selected_style": {},
  18135. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  18136. "tooltip_location": "mouse",
  18137. "tooltip_style": {
  18138. "opacity": 0.9
  18139. },
  18140. "unhovered_style": {},
  18141. "unselected_style": {},
  18142. "visible": true,
  18143. "x": {
  18144. "type": "float",
  18145. "values": []
  18146. },
  18147. "y": {
  18148. "type": "float",
  18149. "values": []
  18150. }
  18151. }
  18152. },
  18153. "e704507469204e1eaf020c3c7ce814ff": {
  18154. "model_module": "bqplot",
  18155. "model_module_version": "^0.4.1",
  18156. "model_name": "LinearScaleModel",
  18157. "state": {
  18158. "_model_module_version": "^0.4.1",
  18159. "_view_module_version": "^0.4.1",
  18160. "allow_padding": false,
  18161. "max": 1,
  18162. "min": 0,
  18163. "stabilized": false
  18164. }
  18165. },
  18166. "e7a2c65fa9ee45c686766c31dc52a31d": {
  18167. "model_module": "bqplot",
  18168. "model_module_version": "^0.4.1",
  18169. "model_name": "FigureModel",
  18170. "state": {
  18171. "_dom_classes": [],
  18172. "_model_module_version": "^0.4.1",
  18173. "_view_module_version": "^0.4.1",
  18174. "layout": "IPY_MODEL_22bd674b3a0b4546996226373757b56e",
  18175. "marks": [
  18176. "IPY_MODEL_7134bfe186344ae69b4f36e7aa5c9e1e"
  18177. ],
  18178. "scale_x": "IPY_MODEL_c7f3f0d6b2914aa4abedfaba5db07850",
  18179. "scale_y": "IPY_MODEL_6cec50639c3441ca8e76dcfb39845417"
  18180. }
  18181. },
  18182. "e7d12443a21d4ebfa8a3562cc4a4cda4": {
  18183. "model_module": "bqplot",
  18184. "model_module_version": "^0.4.1",
  18185. "model_name": "GraphModel",
  18186. "state": {
  18187. "_model_module": "bqplot",
  18188. "_model_module_version": "^0.4.1",
  18189. "_view_count": null,
  18190. "_view_module": "bqplot",
  18191. "_view_module_version": "^0.4.1",
  18192. "apply_clip": true,
  18193. "charge": -600,
  18194. "color": {
  18195. "type": null,
  18196. "values": null
  18197. },
  18198. "colors": [
  18199. "#1f77b4",
  18200. "#ff7f0e",
  18201. "#2ca02c",
  18202. "#d62728",
  18203. "#9467bd",
  18204. "#8c564b",
  18205. "#e377c2",
  18206. "#7f7f7f",
  18207. "#bcbd22",
  18208. "#17becf"
  18209. ],
  18210. "directed": true,
  18211. "display_legend": false,
  18212. "enable_hover": true,
  18213. "highlight_links": true,
  18214. "hovered_style": {},
  18215. "interactions": {
  18216. "click": "select",
  18217. "hover": "tooltip"
  18218. },
  18219. "labels": [],
  18220. "link_color": {
  18221. "type": "float",
  18222. "values": []
  18223. },
  18224. "link_data": [
  18225. {
  18226. "source": 0,
  18227. "target": 5,
  18228. "value": 1
  18229. },
  18230. {
  18231. "source": 1,
  18232. "target": 5,
  18233. "value": 2
  18234. },
  18235. {
  18236. "source": 2,
  18237. "target": 5,
  18238. "value": 1
  18239. },
  18240. {
  18241. "source": 3,
  18242. "target": 5,
  18243. "value": 2
  18244. },
  18245. {
  18246. "source": 4,
  18247. "target": 5,
  18248. "value": 3
  18249. }
  18250. ],
  18251. "link_distance": 100,
  18252. "link_matrix": {
  18253. "type": "float",
  18254. "values": []
  18255. },
  18256. "link_type": "arc",
  18257. "node_data": [
  18258. "Boba Fett",
  18259. "Yoda",
  18260. "Jabba Desilijic Tiure",
  18261. "Darth Vader",
  18262. "Obi-Wan Kenobi",
  18263. "Beru Whitesun lars",
  18264. "Mon Mothma"
  18265. ],
  18266. "preserve_domain": {},
  18267. "scales": {},
  18268. "scales_metadata": {
  18269. "color": {
  18270. "dimension": "color"
  18271. },
  18272. "link_color": {
  18273. "dimension": "link_color"
  18274. },
  18275. "x": {
  18276. "dimension": "x",
  18277. "orientation": "horizontal"
  18278. },
  18279. "y": {
  18280. "dimension": "y",
  18281. "orientation": "vertical"
  18282. }
  18283. },
  18284. "selected": [],
  18285. "selected_style": {},
  18286. "tooltip": "IPY_MODEL_26032330155d4bfa81b14e12300f0a05",
  18287. "tooltip_location": "mouse",
  18288. "tooltip_style": {
  18289. "opacity": 0.9
  18290. },
  18291. "unhovered_style": {},
  18292. "unselected_style": {},
  18293. "visible": true,
  18294. "x": {
  18295. "type": "float",
  18296. "values": []
  18297. },
  18298. "y": {
  18299. "type": "float",
  18300. "values": []
  18301. }
  18302. }
  18303. },
  18304. "e7dc568972ab4db89675562e576bec62": {
  18305. "model_module": "bqplot",
  18306. "model_module_version": "^0.4.1",
  18307. "model_name": "GraphModel",
  18308. "state": {
  18309. "_model_module": "bqplot",
  18310. "_model_module_version": "^0.4.1",
  18311. "_view_count": null,
  18312. "_view_module": "bqplot",
  18313. "_view_module_version": "^0.4.1",
  18314. "apply_clip": true,
  18315. "charge": -600,
  18316. "color": {
  18317. "type": null,
  18318. "values": null
  18319. },
  18320. "colors": [
  18321. "#1f77b4",
  18322. "#ff7f0e",
  18323. "#2ca02c",
  18324. "#d62728",
  18325. "#9467bd",
  18326. "#8c564b",
  18327. "#e377c2",
  18328. "#7f7f7f",
  18329. "#bcbd22",
  18330. "#17becf"
  18331. ],
  18332. "directed": true,
  18333. "display_legend": false,
  18334. "enable_hover": true,
  18335. "highlight_links": true,
  18336. "hovered_style": {},
  18337. "interactions": {
  18338. "click": "select",
  18339. "hover": "tooltip"
  18340. },
  18341. "labels": [],
  18342. "link_color": {
  18343. "type": "float",
  18344. "values": []
  18345. },
  18346. "link_data": [
  18347. {
  18348. "source": 0,
  18349. "target": 1,
  18350. "value": 3
  18351. },
  18352. {
  18353. "source": 1,
  18354. "target": 2,
  18355. "value": 2
  18356. },
  18357. {
  18358. "source": 1,
  18359. "target": 3,
  18360. "value": 3
  18361. },
  18362. {
  18363. "source": 1,
  18364. "target": 4,
  18365. "value": 5
  18366. },
  18367. {
  18368. "source": 1,
  18369. "target": 5,
  18370. "value": 2
  18371. },
  18372. {
  18373. "source": 1,
  18374. "target": 6,
  18375. "value": 1
  18376. }
  18377. ],
  18378. "link_distance": 100,
  18379. "link_matrix": {
  18380. "type": "float",
  18381. "values": []
  18382. },
  18383. "link_type": "arc",
  18384. "node_data": [
  18385. "Boba Fett",
  18386. "Yoda",
  18387. "Jabba Desilijic Tiure",
  18388. "Darth Vader",
  18389. "Obi-Wan Kenobi",
  18390. "Beru Whitesun lars",
  18391. "Mon Mothma"
  18392. ],
  18393. "preserve_domain": {},
  18394. "scales": {},
  18395. "scales_metadata": {
  18396. "color": {
  18397. "dimension": "color"
  18398. },
  18399. "link_color": {
  18400. "dimension": "link_color"
  18401. },
  18402. "x": {
  18403. "dimension": "x",
  18404. "orientation": "horizontal"
  18405. },
  18406. "y": {
  18407. "dimension": "y",
  18408. "orientation": "vertical"
  18409. }
  18410. },
  18411. "selected": [],
  18412. "selected_style": {},
  18413. "tooltip": "IPY_MODEL_62690498382749429ced35ed52d01815",
  18414. "tooltip_location": "mouse",
  18415. "tooltip_style": {
  18416. "opacity": 0.9
  18417. },
  18418. "unhovered_style": {},
  18419. "unselected_style": {},
  18420. "visible": true,
  18421. "x": {
  18422. "type": "float",
  18423. "values": []
  18424. },
  18425. "y": {
  18426. "type": "float",
  18427. "values": []
  18428. }
  18429. }
  18430. },
  18431. "ea56d1d70df048f4affecdd7ec421788": {
  18432. "model_module": "bqplot",
  18433. "model_module_version": "^0.4.1",
  18434. "model_name": "GraphModel",
  18435. "state": {
  18436. "_model_module": "bqplot",
  18437. "_model_module_version": "^0.4.1",
  18438. "_view_count": null,
  18439. "_view_module": "bqplot",
  18440. "_view_module_version": "^0.4.1",
  18441. "apply_clip": true,
  18442. "charge": -600,
  18443. "color": {
  18444. "type": null,
  18445. "values": null
  18446. },
  18447. "colors": [
  18448. "#1f77b4",
  18449. "#ff7f0e",
  18450. "#2ca02c",
  18451. "#d62728",
  18452. "#9467bd",
  18453. "#8c564b",
  18454. "#e377c2",
  18455. "#7f7f7f",
  18456. "#bcbd22",
  18457. "#17becf"
  18458. ],
  18459. "directed": true,
  18460. "display_legend": false,
  18461. "enable_hover": true,
  18462. "highlight_links": true,
  18463. "hovered_style": {},
  18464. "interactions": {
  18465. "click": "select",
  18466. "hover": "tooltip"
  18467. },
  18468. "labels": [],
  18469. "link_color": {
  18470. "type": "float",
  18471. "values": []
  18472. },
  18473. "link_data": [
  18474. {
  18475. "source": {
  18476. "index": 0,
  18477. "label": "Boba Fett",
  18478. "label_display": "center",
  18479. "px": 370.27794418626564,
  18480. "py": 195.15830075668646,
  18481. "shape": "circle",
  18482. "shape_attrs": {
  18483. "r": 15
  18484. },
  18485. "value": null,
  18486. "weight": 6,
  18487. "x": 370.364105440943,
  18488. "y": 195.07461600588687
  18489. },
  18490. "target": {
  18491. "index": 1,
  18492. "label": "Yoda",
  18493. "label_display": "center",
  18494. "px": 386.36071596885046,
  18495. "py": 264.42428995197497,
  18496. "shape": "circle",
  18497. "shape_attrs": {
  18498. "r": 15
  18499. },
  18500. "value": null,
  18501. "weight": 6,
  18502. "x": 386.48293007643673,
  18503. "y": 264.46766699993447
  18504. },
  18505. "value": 3
  18506. },
  18507. {
  18508. "source": {
  18509. "index": 0,
  18510. "label": "Boba Fett",
  18511. "label_display": "center",
  18512. "px": 370.27794418626564,
  18513. "py": 195.15830075668646,
  18514. "shape": "circle",
  18515. "shape_attrs": {
  18516. "r": 15
  18517. },
  18518. "value": null,
  18519. "weight": 6,
  18520. "x": 370.364105440943,
  18521. "y": 195.07461600588687
  18522. },
  18523. "target": {
  18524. "index": 2,
  18525. "label": "Jabba Desilijic Tiure",
  18526. "label_display": "center",
  18527. "px": 320.61436032143973,
  18528. "py": 245.1683506792368,
  18529. "shape": "circle",
  18530. "shape_attrs": {
  18531. "r": 15
  18532. },
  18533. "value": null,
  18534. "weight": 6,
  18535. "x": 320.6142100933348,
  18536. "y": 245.17477976780552
  18537. },
  18538. "value": 1
  18539. },
  18540. {
  18541. "source": {
  18542. "index": 0,
  18543. "label": "Boba Fett",
  18544. "label_display": "center",
  18545. "px": 370.27794418626564,
  18546. "py": 195.15830075668646,
  18547. "shape": "circle",
  18548. "shape_attrs": {
  18549. "r": 15
  18550. },
  18551. "value": null,
  18552. "weight": 6,
  18553. "x": 370.364105440943,
  18554. "y": 195.07461600588687
  18555. },
  18556. "target": {
  18557. "index": 3,
  18558. "label": "Darth Vader",
  18559. "label_display": "center",
  18560. "px": 264.1951753711214,
  18561. "py": 284.7683016066135,
  18562. "shape": "circle",
  18563. "shape_attrs": {
  18564. "r": 15
  18565. },
  18566. "value": null,
  18567. "weight": 6,
  18568. "x": 264.0979611995474,
  18569. "y": 284.8480277143318
  18570. },
  18571. "value": 2
  18572. },
  18573. {
  18574. "source": {
  18575. "index": 0,
  18576. "label": "Boba Fett",
  18577. "label_display": "center",
  18578. "px": 370.27794418626564,
  18579. "py": 195.15830075668646,
  18580. "shape": "circle",
  18581. "shape_attrs": {
  18582. "r": 15
  18583. },
  18584. "value": null,
  18585. "weight": 6,
  18586. "x": 370.364105440943,
  18587. "y": 195.07461600588687
  18588. },
  18589. "target": {
  18590. "index": 4,
  18591. "label": "Obi-Wan Kenobi",
  18592. "label_display": "center",
  18593. "px": 255.16688899624128,
  18594. "py": 215.26574105978509,
  18595. "shape": "circle",
  18596. "shape_attrs": {
  18597. "r": 15
  18598. },
  18599. "value": null,
  18600. "weight": 6,
  18601. "x": 255.0534755222213,
  18602. "y": 215.21941039448637
  18603. },
  18604. "value": 3
  18605. },
  18606. {
  18607. "source": {
  18608. "index": 0,
  18609. "label": "Boba Fett",
  18610. "label_display": "center",
  18611. "px": 370.27794418626564,
  18612. "py": 195.15830075668646,
  18613. "shape": "circle",
  18614. "shape_attrs": {
  18615. "r": 15
  18616. },
  18617. "value": null,
  18618. "weight": 6,
  18619. "x": 370.364105440943,
  18620. "y": 195.07461600588687
  18621. },
  18622. "target": {
  18623. "index": 5,
  18624. "label": "Beru Whitesun lars",
  18625. "label_display": "center",
  18626. "px": 304.5397543639683,
  18627. "py": 154.13716799833145,
  18628. "shape": "circle",
  18629. "shape_attrs": {
  18630. "r": 15
  18631. },
  18632. "value": null,
  18633. "weight": 5,
  18634. "x": 304.5178679959615,
  18635. "y": 154.01421249278243
  18636. },
  18637. "value": 1
  18638. },
  18639. {
  18640. "source": {
  18641. "index": 0,
  18642. "label": "Boba Fett",
  18643. "label_display": "center",
  18644. "px": 370.27794418626564,
  18645. "py": 195.15830075668646,
  18646. "shape": "circle",
  18647. "shape_attrs": {
  18648. "r": 15
  18649. },
  18650. "value": null,
  18651. "weight": 6,
  18652. "x": 370.364105440943,
  18653. "y": 195.07461600588687
  18654. },
  18655. "target": {
  18656. "fixed": 0,
  18657. "index": 6,
  18658. "label": "Mon Mothma",
  18659. "label_display": "center",
  18660. "px": 333.491395649751,
  18661. "py": 328.57247667441794,
  18662. "shape": "circle",
  18663. "shape_attrs": {
  18664. "r": 15
  18665. },
  18666. "value": null,
  18667. "weight": 5,
  18668. "x": 333.51290513682875,
  18669. "y": 328.69856904781966
  18670. },
  18671. "value": 1
  18672. },
  18673. {
  18674. "source": {
  18675. "index": 1,
  18676. "label": "Yoda",
  18677. "label_display": "center",
  18678. "px": 386.36071596885046,
  18679. "py": 264.42428995197497,
  18680. "shape": "circle",
  18681. "shape_attrs": {
  18682. "r": 15
  18683. },
  18684. "value": null,
  18685. "weight": 6,
  18686. "x": 386.48293007643673,
  18687. "y": 264.46766699993447
  18688. },
  18689. "target": {
  18690. "index": 2,
  18691. "label": "Jabba Desilijic Tiure",
  18692. "label_display": "center",
  18693. "px": 320.61436032143973,
  18694. "py": 245.1683506792368,
  18695. "shape": "circle",
  18696. "shape_attrs": {
  18697. "r": 15
  18698. },
  18699. "value": null,
  18700. "weight": 6,
  18701. "x": 320.6142100933348,
  18702. "y": 245.17477976780552
  18703. },
  18704. "value": 2
  18705. },
  18706. {
  18707. "source": {
  18708. "index": 1,
  18709. "label": "Yoda",
  18710. "label_display": "center",
  18711. "px": 386.36071596885046,
  18712. "py": 264.42428995197497,
  18713. "shape": "circle",
  18714. "shape_attrs": {
  18715. "r": 15
  18716. },
  18717. "value": null,
  18718. "weight": 6,
  18719. "x": 386.48293007643673,
  18720. "y": 264.46766699993447
  18721. },
  18722. "target": {
  18723. "index": 3,
  18724. "label": "Darth Vader",
  18725. "label_display": "center",
  18726. "px": 264.1951753711214,
  18727. "py": 284.7683016066135,
  18728. "shape": "circle",
  18729. "shape_attrs": {
  18730. "r": 15
  18731. },
  18732. "value": null,
  18733. "weight": 6,
  18734. "x": 264.0979611995474,
  18735. "y": 284.8480277143318
  18736. },
  18737. "value": 3
  18738. },
  18739. {
  18740. "source": {
  18741. "index": 1,
  18742. "label": "Yoda",
  18743. "label_display": "center",
  18744. "px": 386.36071596885046,
  18745. "py": 264.42428995197497,
  18746. "shape": "circle",
  18747. "shape_attrs": {
  18748. "r": 15
  18749. },
  18750. "value": null,
  18751. "weight": 6,
  18752. "x": 386.48293007643673,
  18753. "y": 264.46766699993447
  18754. },
  18755. "target": {
  18756. "index": 4,
  18757. "label": "Obi-Wan Kenobi",
  18758. "label_display": "center",
  18759. "px": 255.16688899624128,
  18760. "py": 215.26574105978509,
  18761. "shape": "circle",
  18762. "shape_attrs": {
  18763. "r": 15
  18764. },
  18765. "value": null,
  18766. "weight": 6,
  18767. "x": 255.0534755222213,
  18768. "y": 215.21941039448637
  18769. },
  18770. "value": 5
  18771. },
  18772. {
  18773. "source": {
  18774. "index": 1,
  18775. "label": "Yoda",
  18776. "label_display": "center",
  18777. "px": 386.36071596885046,
  18778. "py": 264.42428995197497,
  18779. "shape": "circle",
  18780. "shape_attrs": {
  18781. "r": 15
  18782. },
  18783. "value": null,
  18784. "weight": 6,
  18785. "x": 386.48293007643673,
  18786. "y": 264.46766699993447
  18787. },
  18788. "target": {
  18789. "index": 5,
  18790. "label": "Beru Whitesun lars",
  18791. "label_display": "center",
  18792. "px": 304.5397543639683,
  18793. "py": 154.13716799833145,
  18794. "shape": "circle",
  18795. "shape_attrs": {
  18796. "r": 15
  18797. },
  18798. "value": null,
  18799. "weight": 5,
  18800. "x": 304.5178679959615,
  18801. "y": 154.01421249278243
  18802. },
  18803. "value": 2
  18804. },
  18805. {
  18806. "source": {
  18807. "index": 1,
  18808. "label": "Yoda",
  18809. "label_display": "center",
  18810. "px": 386.36071596885046,
  18811. "py": 264.42428995197497,
  18812. "shape": "circle",
  18813. "shape_attrs": {
  18814. "r": 15
  18815. },
  18816. "value": null,
  18817. "weight": 6,
  18818. "x": 386.48293007643673,
  18819. "y": 264.46766699993447
  18820. },
  18821. "target": {
  18822. "fixed": 0,
  18823. "index": 6,
  18824. "label": "Mon Mothma",
  18825. "label_display": "center",
  18826. "px": 333.491395649751,
  18827. "py": 328.57247667441794,
  18828. "shape": "circle",
  18829. "shape_attrs": {
  18830. "r": 15
  18831. },
  18832. "value": null,
  18833. "weight": 5,
  18834. "x": 333.51290513682875,
  18835. "y": 328.69856904781966
  18836. },
  18837. "value": 1
  18838. },
  18839. {
  18840. "source": {
  18841. "index": 2,
  18842. "label": "Jabba Desilijic Tiure",
  18843. "label_display": "center",
  18844. "px": 320.61436032143973,
  18845. "py": 245.1683506792368,
  18846. "shape": "circle",
  18847. "shape_attrs": {
  18848. "r": 15
  18849. },
  18850. "value": null,
  18851. "weight": 6,
  18852. "x": 320.6142100933348,
  18853. "y": 245.17477976780552
  18854. },
  18855. "target": {
  18856. "index": 3,
  18857. "label": "Darth Vader",
  18858. "label_display": "center",
  18859. "px": 264.1951753711214,
  18860. "py": 284.7683016066135,
  18861. "shape": "circle",
  18862. "shape_attrs": {
  18863. "r": 15
  18864. },
  18865. "value": null,
  18866. "weight": 6,
  18867. "x": 264.0979611995474,
  18868. "y": 284.8480277143318
  18869. },
  18870. "value": 2
  18871. },
  18872. {
  18873. "source": {
  18874. "index": 2,
  18875. "label": "Jabba Desilijic Tiure",
  18876. "label_display": "center",
  18877. "px": 320.61436032143973,
  18878. "py": 245.1683506792368,
  18879. "shape": "circle",
  18880. "shape_attrs": {
  18881. "r": 15
  18882. },
  18883. "value": null,
  18884. "weight": 6,
  18885. "x": 320.6142100933348,
  18886. "y": 245.17477976780552
  18887. },
  18888. "target": {
  18889. "index": 4,
  18890. "label": "Obi-Wan Kenobi",
  18891. "label_display": "center",
  18892. "px": 255.16688899624128,
  18893. "py": 215.26574105978509,
  18894. "shape": "circle",
  18895. "shape_attrs": {
  18896. "r": 15
  18897. },
  18898. "value": null,
  18899. "weight": 6,
  18900. "x": 255.0534755222213,
  18901. "y": 215.21941039448637
  18902. },
  18903. "value": 3
  18904. },
  18905. {
  18906. "source": {
  18907. "index": 2,
  18908. "label": "Jabba Desilijic Tiure",
  18909. "label_display": "center",
  18910. "px": 320.61436032143973,
  18911. "py": 245.1683506792368,
  18912. "shape": "circle",
  18913. "shape_attrs": {
  18914. "r": 15
  18915. },
  18916. "value": null,
  18917. "weight": 6,
  18918. "x": 320.6142100933348,
  18919. "y": 245.17477976780552
  18920. },
  18921. "target": {
  18922. "index": 5,
  18923. "label": "Beru Whitesun lars",
  18924. "label_display": "center",
  18925. "px": 304.5397543639683,
  18926. "py": 154.13716799833145,
  18927. "shape": "circle",
  18928. "shape_attrs": {
  18929. "r": 15
  18930. },
  18931. "value": null,
  18932. "weight": 5,
  18933. "x": 304.5178679959615,
  18934. "y": 154.01421249278243
  18935. },
  18936. "value": 1
  18937. },
  18938. {
  18939. "source": {
  18940. "index": 2,
  18941. "label": "Jabba Desilijic Tiure",
  18942. "label_display": "center",
  18943. "px": 320.61436032143973,
  18944. "py": 245.1683506792368,
  18945. "shape": "circle",
  18946. "shape_attrs": {
  18947. "r": 15
  18948. },
  18949. "value": null,
  18950. "weight": 6,
  18951. "x": 320.6142100933348,
  18952. "y": 245.17477976780552
  18953. },
  18954. "target": {
  18955. "fixed": 0,
  18956. "index": 6,
  18957. "label": "Mon Mothma",
  18958. "label_display": "center",
  18959. "px": 333.491395649751,
  18960. "py": 328.57247667441794,
  18961. "shape": "circle",
  18962. "shape_attrs": {
  18963. "r": 15
  18964. },
  18965. "value": null,
  18966. "weight": 5,
  18967. "x": 333.51290513682875,
  18968. "y": 328.69856904781966
  18969. },
  18970. "value": 1
  18971. },
  18972. {
  18973. "source": {
  18974. "index": 3,
  18975. "label": "Darth Vader",
  18976. "label_display": "center",
  18977. "px": 264.1951753711214,
  18978. "py": 284.7683016066135,
  18979. "shape": "circle",
  18980. "shape_attrs": {
  18981. "r": 15
  18982. },
  18983. "value": null,
  18984. "weight": 6,
  18985. "x": 264.0979611995474,
  18986. "y": 284.8480277143318
  18987. },
  18988. "target": {
  18989. "index": 4,
  18990. "label": "Obi-Wan Kenobi",
  18991. "label_display": "center",
  18992. "px": 255.16688899624128,
  18993. "py": 215.26574105978509,
  18994. "shape": "circle",
  18995. "shape_attrs": {
  18996. "r": 15
  18997. },
  18998. "value": null,
  18999. "weight": 6,
  19000. "x": 255.0534755222213,
  19001. "y": 215.21941039448637
  19002. },
  19003. "value": 4
  19004. },
  19005. {
  19006. "source": {
  19007. "index": 3,
  19008. "label": "Darth Vader",
  19009. "label_display": "center",
  19010. "px": 264.1951753711214,
  19011. "py": 284.7683016066135,
  19012. "shape": "circle",
  19013. "shape_attrs": {
  19014. "r": 15
  19015. },
  19016. "value": null,
  19017. "weight": 6,
  19018. "x": 264.0979611995474,
  19019. "y": 284.8480277143318
  19020. },
  19021. "target": {
  19022. "index": 5,
  19023. "label": "Beru Whitesun lars",
  19024. "label_display": "center",
  19025. "px": 304.5397543639683,
  19026. "py": 154.13716799833145,
  19027. "shape": "circle",
  19028. "shape_attrs": {
  19029. "r": 15
  19030. },
  19031. "value": null,
  19032. "weight": 5,
  19033. "x": 304.5178679959615,
  19034. "y": 154.01421249278243
  19035. },
  19036. "value": 2
  19037. },
  19038. {
  19039. "source": {
  19040. "index": 3,
  19041. "label": "Darth Vader",
  19042. "label_display": "center",
  19043. "px": 264.1951753711214,
  19044. "py": 284.7683016066135,
  19045. "shape": "circle",
  19046. "shape_attrs": {
  19047. "r": 15
  19048. },
  19049. "value": null,
  19050. "weight": 6,
  19051. "x": 264.0979611995474,
  19052. "y": 284.8480277143318
  19053. },
  19054. "target": {
  19055. "fixed": 0,
  19056. "index": 6,
  19057. "label": "Mon Mothma",
  19058. "label_display": "center",
  19059. "px": 333.491395649751,
  19060. "py": 328.57247667441794,
  19061. "shape": "circle",
  19062. "shape_attrs": {
  19063. "r": 15
  19064. },
  19065. "value": null,
  19066. "weight": 5,
  19067. "x": 333.51290513682875,
  19068. "y": 328.69856904781966
  19069. },
  19070. "value": 1
  19071. },
  19072. {
  19073. "source": {
  19074. "index": 4,
  19075. "label": "Obi-Wan Kenobi",
  19076. "label_display": "center",
  19077. "px": 255.16688899624128,
  19078. "py": 215.26574105978509,
  19079. "shape": "circle",
  19080. "shape_attrs": {
  19081. "r": 15
  19082. },
  19083. "value": null,
  19084. "weight": 6,
  19085. "x": 255.0534755222213,
  19086. "y": 215.21941039448637
  19087. },
  19088. "target": {
  19089. "index": 5,
  19090. "label": "Beru Whitesun lars",
  19091. "label_display": "center",
  19092. "px": 304.5397543639683,
  19093. "py": 154.13716799833145,
  19094. "shape": "circle",
  19095. "shape_attrs": {
  19096. "r": 15
  19097. },
  19098. "value": null,
  19099. "weight": 5,
  19100. "x": 304.5178679959615,
  19101. "y": 154.01421249278243
  19102. },
  19103. "value": 3
  19104. },
  19105. {
  19106. "source": {
  19107. "index": 4,
  19108. "label": "Obi-Wan Kenobi",
  19109. "label_display": "center",
  19110. "px": 255.16688899624128,
  19111. "py": 215.26574105978509,
  19112. "shape": "circle",
  19113. "shape_attrs": {
  19114. "r": 15
  19115. },
  19116. "value": null,
  19117. "weight": 6,
  19118. "x": 255.0534755222213,
  19119. "y": 215.21941039448637
  19120. },
  19121. "target": {
  19122. "fixed": 0,
  19123. "index": 6,
  19124. "label": "Mon Mothma",
  19125. "label_display": "center",
  19126. "px": 333.491395649751,
  19127. "py": 328.57247667441794,
  19128. "shape": "circle",
  19129. "shape_attrs": {
  19130. "r": 15
  19131. },
  19132. "value": null,
  19133. "weight": 5,
  19134. "x": 333.51290513682875,
  19135. "y": 328.69856904781966
  19136. },
  19137. "value": 1
  19138. }
  19139. ],
  19140. "link_distance": 100,
  19141. "link_matrix": {
  19142. "type": "float",
  19143. "values": []
  19144. },
  19145. "link_type": "arc",
  19146. "node_data": [
  19147. "Boba Fett",
  19148. "Yoda",
  19149. "Jabba Desilijic Tiure",
  19150. "Darth Vader",
  19151. "Obi-Wan Kenobi",
  19152. "Beru Whitesun lars",
  19153. "Mon Mothma"
  19154. ],
  19155. "preserve_domain": {},
  19156. "scales": {},
  19157. "scales_metadata": {
  19158. "color": {
  19159. "dimension": "color"
  19160. },
  19161. "link_color": {
  19162. "dimension": "link_color"
  19163. },
  19164. "x": {
  19165. "dimension": "x",
  19166. "orientation": "horizontal"
  19167. },
  19168. "y": {
  19169. "dimension": "y",
  19170. "orientation": "vertical"
  19171. }
  19172. },
  19173. "selected": [
  19174. 6
  19175. ],
  19176. "selected_style": {},
  19177. "tooltip": "IPY_MODEL_aad9d69b9d16464c8de928f95b774fc8",
  19178. "tooltip_location": "mouse",
  19179. "tooltip_style": {
  19180. "opacity": 0.9
  19181. },
  19182. "unhovered_style": {},
  19183. "unselected_style": {},
  19184. "visible": true,
  19185. "x": {
  19186. "type": "float",
  19187. "values": []
  19188. },
  19189. "y": {
  19190. "type": "float",
  19191. "values": []
  19192. }
  19193. }
  19194. },
  19195. "eeb05f7a5ba24d61b8addc14ab51f6b9": {
  19196. "model_module": "bqplot",
  19197. "model_module_version": "^0.4.1",
  19198. "model_name": "FigureModel",
  19199. "state": {
  19200. "_dom_classes": [],
  19201. "_model_module_version": "^0.4.1",
  19202. "_view_module_version": "^0.4.1",
  19203. "layout": "IPY_MODEL_70ee63e8415a42abb445f036df7b2a7a",
  19204. "marks": [
  19205. "IPY_MODEL_454291541061489ba9c9c75308b7be82"
  19206. ],
  19207. "scale_x": "IPY_MODEL_3286f5cd7fa7426094f410ab83b3938e",
  19208. "scale_y": "IPY_MODEL_b081a92dfaab4133a026ce7d8c7379f0"
  19209. }
  19210. },
  19211. "eec705e5838a4711b0e3fc414863317f": {
  19212. "model_module": "bqplot",
  19213. "model_module_version": "^0.4.1",
  19214. "model_name": "GraphModel",
  19215. "state": {
  19216. "_model_module": "bqplot",
  19217. "_model_module_version": "^0.4.1",
  19218. "_view_count": null,
  19219. "_view_module": "bqplot",
  19220. "_view_module_version": "^0.4.1",
  19221. "apply_clip": true,
  19222. "charge": -600,
  19223. "color": {
  19224. "type": null,
  19225. "values": null
  19226. },
  19227. "colors": [
  19228. "#1f77b4",
  19229. "#ff7f0e",
  19230. "#2ca02c",
  19231. "#d62728",
  19232. "#9467bd",
  19233. "#8c564b",
  19234. "#e377c2",
  19235. "#7f7f7f",
  19236. "#bcbd22",
  19237. "#17becf"
  19238. ],
  19239. "directed": true,
  19240. "display_legend": false,
  19241. "enable_hover": true,
  19242. "highlight_links": true,
  19243. "hovered_style": {},
  19244. "interactions": {
  19245. "click": "select",
  19246. "hover": "tooltip"
  19247. },
  19248. "labels": [],
  19249. "link_color": {
  19250. "type": "float",
  19251. "values": []
  19252. },
  19253. "link_data": [
  19254. {
  19255. "source": 3,
  19256. "target": 6,
  19257. "value": 1
  19258. }
  19259. ],
  19260. "link_distance": 100,
  19261. "link_matrix": {
  19262. "type": "float",
  19263. "values": []
  19264. },
  19265. "link_type": "arc",
  19266. "node_data": [
  19267. "Boba Fett",
  19268. "Yoda",
  19269. "Jabba Desilijic Tiure",
  19270. "Darth Vader",
  19271. "Obi-Wan Kenobi",
  19272. "Beru Whitesun lars",
  19273. "Mon Mothma"
  19274. ],
  19275. "preserve_domain": {},
  19276. "scales": {},
  19277. "scales_metadata": {
  19278. "color": {
  19279. "dimension": "color"
  19280. },
  19281. "link_color": {
  19282. "dimension": "link_color"
  19283. },
  19284. "x": {
  19285. "dimension": "x",
  19286. "orientation": "horizontal"
  19287. },
  19288. "y": {
  19289. "dimension": "y",
  19290. "orientation": "vertical"
  19291. }
  19292. },
  19293. "selected": [],
  19294. "selected_style": {},
  19295. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  19296. "tooltip_location": "mouse",
  19297. "tooltip_style": {
  19298. "opacity": 0.9
  19299. },
  19300. "unhovered_style": {},
  19301. "unselected_style": {},
  19302. "visible": true,
  19303. "x": {
  19304. "type": "float",
  19305. "values": []
  19306. },
  19307. "y": {
  19308. "type": "float",
  19309. "values": []
  19310. }
  19311. }
  19312. },
  19313. "f093458356414d469ca20d4dfd751169": {
  19314. "model_module": "@jupyter-widgets/base",
  19315. "model_module_version": "1.1.0",
  19316. "model_name": "LayoutModel",
  19317. "state": {}
  19318. },
  19319. "f3d38d272680415386dac22243c3491f": {
  19320. "model_module": "@jupyter-widgets/base",
  19321. "model_module_version": "1.1.0",
  19322. "model_name": "LayoutModel",
  19323. "state": {}
  19324. },
  19325. "f563665150cc42e3bf55f4b02fd6a92a": {
  19326. "model_module": "bqplot",
  19327. "model_module_version": "^0.4.1",
  19328. "model_name": "LinearScaleModel",
  19329. "state": {
  19330. "_model_module_version": "^0.4.1",
  19331. "_view_module_version": "^0.4.1",
  19332. "allow_padding": false,
  19333. "max": 1,
  19334. "min": 0,
  19335. "stabilized": false
  19336. }
  19337. },
  19338. "f56384a1c7b84e4eb89674aa1efe99e6": {
  19339. "model_module": "bqplot",
  19340. "model_module_version": "^0.4.1",
  19341. "model_name": "GraphModel",
  19342. "state": {
  19343. "_model_module": "bqplot",
  19344. "_model_module_version": "^0.4.1",
  19345. "_view_count": null,
  19346. "_view_module": "bqplot",
  19347. "_view_module_version": "^0.4.1",
  19348. "apply_clip": true,
  19349. "charge": -600,
  19350. "color": {
  19351. "type": null,
  19352. "values": null
  19353. },
  19354. "colors": [
  19355. "#1f77b4",
  19356. "#ff7f0e",
  19357. "#2ca02c",
  19358. "#d62728",
  19359. "#9467bd",
  19360. "#8c564b",
  19361. "#e377c2",
  19362. "#7f7f7f",
  19363. "#bcbd22",
  19364. "#17becf"
  19365. ],
  19366. "directed": true,
  19367. "display_legend": false,
  19368. "enable_hover": true,
  19369. "highlight_links": true,
  19370. "hovered_style": {},
  19371. "interactions": {
  19372. "click": "select",
  19373. "hover": "tooltip"
  19374. },
  19375. "labels": [],
  19376. "link_color": {
  19377. "type": "float",
  19378. "values": []
  19379. },
  19380. "link_data": [
  19381. {
  19382. "source": {
  19383. "index": 3,
  19384. "label": "Darth Vader",
  19385. "label_display": "center",
  19386. "px": 239.8808224610216,
  19387. "py": 137.09510320433554,
  19388. "shape": "circle",
  19389. "shape_attrs": {
  19390. "r": 15
  19391. },
  19392. "value": null,
  19393. "weight": 2,
  19394. "x": 239.85825355957147,
  19395. "y": 137.02656079508037
  19396. },
  19397. "target": {
  19398. "index": 6,
  19399. "label": "Mon Mothma",
  19400. "label_display": "center",
  19401. "px": 193.33236434315788,
  19402. "py": 227.73117661415574,
  19403. "shape": "circle",
  19404. "shape_attrs": {
  19405. "r": 15
  19406. },
  19407. "value": null,
  19408. "weight": 2,
  19409. "x": 193.26752831357908,
  19410. "y": 227.72004015407455
  19411. },
  19412. "value": 1
  19413. },
  19414. {
  19415. "source": {
  19416. "index": 3,
  19417. "label": "Darth Vader",
  19418. "label_display": "center",
  19419. "px": 239.8808224610216,
  19420. "py": 137.09510320433554,
  19421. "shape": "circle",
  19422. "shape_attrs": {
  19423. "r": 15
  19424. },
  19425. "value": null,
  19426. "weight": 2,
  19427. "x": 239.85825355957147,
  19428. "y": 137.02656079508037
  19429. },
  19430. "target": {
  19431. "index": 6,
  19432. "label": "Mon Mothma",
  19433. "label_display": "center",
  19434. "px": 193.33236434315788,
  19435. "py": 227.73117661415574,
  19436. "shape": "circle",
  19437. "shape_attrs": {
  19438. "r": 15
  19439. },
  19440. "value": null,
  19441. "weight": 2,
  19442. "x": 193.26752831357908,
  19443. "y": 227.72004015407455
  19444. },
  19445. "value": 1
  19446. }
  19447. ],
  19448. "link_distance": 100,
  19449. "link_matrix": {
  19450. "type": "float",
  19451. "values": []
  19452. },
  19453. "link_type": "arc",
  19454. "node_data": [
  19455. "Boba Fett",
  19456. "Yoda",
  19457. "Jabba Desilijic Tiure",
  19458. "Darth Vader",
  19459. "Obi-Wan Kenobi",
  19460. "Beru Whitesun lars",
  19461. "Mon Mothma"
  19462. ],
  19463. "preserve_domain": {},
  19464. "scales": {},
  19465. "scales_metadata": {
  19466. "color": {
  19467. "dimension": "color"
  19468. },
  19469. "link_color": {
  19470. "dimension": "link_color"
  19471. },
  19472. "x": {
  19473. "dimension": "x",
  19474. "orientation": "horizontal"
  19475. },
  19476. "y": {
  19477. "dimension": "y",
  19478. "orientation": "vertical"
  19479. }
  19480. },
  19481. "selected": [
  19482. 2
  19483. ],
  19484. "selected_style": {},
  19485. "tooltip": "IPY_MODEL_5c015943e09f4e5a9209581b48a4f15a",
  19486. "tooltip_location": "mouse",
  19487. "tooltip_style": {
  19488. "opacity": 0.9
  19489. },
  19490. "unhovered_style": {},
  19491. "unselected_style": {},
  19492. "visible": true,
  19493. "x": {
  19494. "type": "float",
  19495. "values": []
  19496. },
  19497. "y": {
  19498. "type": "float",
  19499. "values": []
  19500. }
  19501. }
  19502. },
  19503. "fbc4dda5b36b45359a698ec4850c2924": {
  19504. "model_module": "bqplot",
  19505. "model_module_version": "^0.4.1",
  19506. "model_name": "GraphModel",
  19507. "state": {
  19508. "_model_module": "bqplot",
  19509. "_model_module_version": "^0.4.1",
  19510. "_view_count": null,
  19511. "_view_module": "bqplot",
  19512. "_view_module_version": "^0.4.1",
  19513. "apply_clip": true,
  19514. "charge": -600,
  19515. "color": {
  19516. "type": null,
  19517. "values": null
  19518. },
  19519. "colors": [
  19520. "#1f77b4",
  19521. "#ff7f0e",
  19522. "#2ca02c",
  19523. "#d62728",
  19524. "#9467bd",
  19525. "#8c564b",
  19526. "#e377c2",
  19527. "#7f7f7f",
  19528. "#bcbd22",
  19529. "#17becf"
  19530. ],
  19531. "directed": true,
  19532. "display_legend": false,
  19533. "enable_hover": true,
  19534. "highlight_links": true,
  19535. "hovered_style": {},
  19536. "interactions": {
  19537. "click": "select",
  19538. "hover": "tooltip"
  19539. },
  19540. "labels": [],
  19541. "link_color": {
  19542. "type": "float",
  19543. "values": []
  19544. },
  19545. "link_data": [
  19546. {
  19547. "source": 3,
  19548. "target": 6,
  19549. "value": 1
  19550. }
  19551. ],
  19552. "link_distance": 100,
  19553. "link_matrix": {
  19554. "type": "float",
  19555. "values": []
  19556. },
  19557. "link_type": "arc",
  19558. "node_data": [
  19559. "Boba Fett",
  19560. "Yoda",
  19561. "Jabba Desilijic Tiure",
  19562. "Darth Vader",
  19563. "Obi-Wan Kenobi",
  19564. "Beru Whitesun lars",
  19565. "Mon Mothma"
  19566. ],
  19567. "preserve_domain": {},
  19568. "scales": {},
  19569. "scales_metadata": {
  19570. "color": {
  19571. "dimension": "color"
  19572. },
  19573. "link_color": {
  19574. "dimension": "link_color"
  19575. },
  19576. "x": {
  19577. "dimension": "x",
  19578. "orientation": "horizontal"
  19579. },
  19580. "y": {
  19581. "dimension": "y",
  19582. "orientation": "vertical"
  19583. }
  19584. },
  19585. "selected": [],
  19586. "selected_style": {},
  19587. "tooltip": "IPY_MODEL_9ba7a2d9c90346edaa1646c6143efbc4",
  19588. "tooltip_location": "mouse",
  19589. "tooltip_style": {
  19590. "opacity": 0.9
  19591. },
  19592. "unhovered_style": {},
  19593. "unselected_style": {},
  19594. "visible": true,
  19595. "x": {
  19596. "type": "float",
  19597. "values": []
  19598. },
  19599. "y": {
  19600. "type": "float",
  19601. "values": []
  19602. }
  19603. }
  19604. },
  19605. "fd3e381aab9a449cb9f015502973168f": {
  19606. "model_module": "bqplot",
  19607. "model_module_version": "^0.4.1",
  19608. "model_name": "TooltipModel",
  19609. "state": {
  19610. "_model_module_version": "^0.4.1",
  19611. "_view_module_version": "^0.4.1",
  19612. "fields": [
  19613. "label"
  19614. ],
  19615. "layout": "IPY_MODEL_12488db8ad4145288f0f2b8066d7469d"
  19616. }
  19617. },
  19618. "fd9bf8f64a654a0d92cf913562af3bde": {
  19619. "model_module": "bqplot",
  19620. "model_module_version": "^0.4.1",
  19621. "model_name": "GraphModel",
  19622. "state": {
  19623. "_model_module": "bqplot",
  19624. "_model_module_version": "^0.4.1",
  19625. "_view_count": null,
  19626. "_view_module": "bqplot",
  19627. "_view_module_version": "^0.4.1",
  19628. "apply_clip": true,
  19629. "charge": -600,
  19630. "color": {
  19631. "type": null,
  19632. "values": null
  19633. },
  19634. "colors": [
  19635. "#1f77b4",
  19636. "#ff7f0e",
  19637. "#2ca02c",
  19638. "#d62728",
  19639. "#9467bd",
  19640. "#8c564b",
  19641. "#e377c2",
  19642. "#7f7f7f",
  19643. "#bcbd22",
  19644. "#17becf"
  19645. ],
  19646. "directed": true,
  19647. "display_legend": false,
  19648. "enable_hover": true,
  19649. "highlight_links": true,
  19650. "hovered_style": {},
  19651. "interactions": {
  19652. "click": "select",
  19653. "hover": "tooltip"
  19654. },
  19655. "labels": [],
  19656. "link_color": {
  19657. "type": "float",
  19658. "values": []
  19659. },
  19660. "link_data": [
  19661. {
  19662. "source": 3,
  19663. "target": 6,
  19664. "value": 1
  19665. }
  19666. ],
  19667. "link_distance": 100,
  19668. "link_matrix": {
  19669. "type": "float",
  19670. "values": []
  19671. },
  19672. "link_type": "arc",
  19673. "node_data": [
  19674. "Boba Fett",
  19675. "Yoda",
  19676. "Jabba Desilijic Tiure",
  19677. "Darth Vader",
  19678. "Obi-Wan Kenobi",
  19679. "Beru Whitesun lars",
  19680. "Mon Mothma"
  19681. ],
  19682. "preserve_domain": {},
  19683. "scales": {},
  19684. "scales_metadata": {
  19685. "color": {
  19686. "dimension": "color"
  19687. },
  19688. "link_color": {
  19689. "dimension": "link_color"
  19690. },
  19691. "x": {
  19692. "dimension": "x",
  19693. "orientation": "horizontal"
  19694. },
  19695. "y": {
  19696. "dimension": "y",
  19697. "orientation": "vertical"
  19698. }
  19699. },
  19700. "selected": [],
  19701. "selected_style": {},
  19702. "tooltip": "IPY_MODEL_197e72274ba74de0bcaa52d9cc67c7f1",
  19703. "tooltip_location": "mouse",
  19704. "tooltip_style": {
  19705. "opacity": 0.9
  19706. },
  19707. "unhovered_style": {},
  19708. "unselected_style": {},
  19709. "visible": true,
  19710. "x": {
  19711. "type": "float",
  19712. "values": []
  19713. },
  19714. "y": {
  19715. "type": "float",
  19716. "values": []
  19717. }
  19718. }
  19719. },
  19720. "ffec3a1a1901426f94976e5d9214e2c3": {
  19721. "model_module": "@jupyter-widgets/base",
  19722. "model_module_version": "1.1.0",
  19723. "model_name": "LayoutModel",
  19724. "state": {}
  19725. }
  19726. },
  19727. "version_major": 2,
  19728. "version_minor": 0
  19729. }
  19730. }
  19731. },
  19732. "nbformat": 4,
  19733. "nbformat_minor": 2
  19734. }
Add Comment
Please, Sign In to add comment