Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions content/tskit.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@
" "
],
"text/plain": [
"<tskit.trees.TreeSequence at 0x1086799d0>"
"<tskit.trees.TreeSequence at 0x108f1ae40>"
]
},
"execution_count": 3,
Expand Down Expand Up @@ -965,16 +965,15 @@
"<IPython.core.display.SVG object>"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
"output_type": "display_data"
}
],
"source": [
"from IPython.display import SVG # only for starting up Jupyterlite: normally just bare tree.draw_svg() works\n",
"\n",
"first_tree = ts.first()\n",
"SVG(first_tree.draw_svg(size=(1000, 250), title=\"Tree at genome position 0\", node_labels={}))"
"display(SVG(first_tree.draw_svg(size=(1000, 250), title=\"Tree at genome position 0\", node_labels={})))"
]
},
{
Expand Down
Loading