I'm trying to reproduce the drawing below
the network code I'm trying to draw is this:
import networkx as nx
import numpy as np
import matplotlib.pyplot as plt
def draw_graph():
fig, ax = plt.subplots(figsize = (8,6))
G=nx.waxman_graph(100,1,0.1)
nx.draw(G,node_size=20,node_color='r')
plt.show()
draw_graph()
How could I draw the axes like the one in the figure for the network in the code above