Created
September 26, 2024 15:59
-
-
Save RobertTalbert/6437b636386b421898dbb5ee56afdd47 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate a random tree | |
random_tree = nx.random_tree(n) | |
# Draw the tree | |
nx.draw(random_tree, with_labels=True, node_color="lightblue", font_weight="bold") | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment