Undirected Graph
Explore how to create an undirected graph in Elixir using the Libgraph package. Learn to set graph types, inspect graph structure, and utilize module functions with IEx helpers. This lesson helps you understand undirected graphs and prepares you to manage and visualize graph data efficiently.
We'll cover the following...
We'll cover the following...
Let's create an undirected graph this time:
Workflow
Here’s the workflow:
Line 1: We start the IEx session.
Line 3: We explicitly set the type as undirected for undirected graphs.
Line 5: We ...