fig = plt.figure()
fig.suptitle("Multiplex Networks")
ax = fig.add_subplot(2,3,1)
ax.set_title("lunch")
G = nx.from_numpy_array(A[0,:,:])
pos = nx.circular_layout(G)
nx.draw(G,pos=pos,node_size=10)
ax2 = fig.add_subplot(2,3,2)
ax2.set_title("facebook")
G = nx.from_numpy_array(A[1,:,:])
pos = nx.circular_layout(G)
nx.draw(G,pos=pos,node_size=10)
ax3 = fig.add_subplot(2,3,3)
ax3.set_title("co-auther")
G = nx.from_numpy_array(A[2,:,:])
pos = nx.circular_layout(G)
nx.draw(G,pos=pos,node_size=10)
ax4 = fig.add_subplot(2,3,4)
ax4.set_title("leisure")
G = nx.from_numpy_array(A[3,:,:])
pos = nx.circular_layout(G)
nx.draw(G,pos=pos,node_size=10)
ax5 = fig.add_subplot(2,3,5)
ax5.set_title("work")
G = nx.from_numpy_array(A[4,:,:])
pos = nx.circular_layout(G)
nx.draw(G,pos=pos,node_size=10)
plt.show()