Plot a NeurEco network#

The following method allows to plot the network of Tabular model:

model.plot_network(save_address=None, show=True, f_size=16)
plot_network

plots the tabular network, and optionally saves it to a png image. Requires matplotlib installed

save_address

if string (with .png extension), the network plot will be saved to the specified path

show

bool, default is True: if True, will show the plot on screen (equivalent to matplotlib.pyplot.show() called with this parameter).

f_size

int, default is 16: size of the font in the plot

An example of the plot of a NeurEco model is given in the following figure:

NeurEco network plot example

NeurEco network plot example#