A Derrida plot is a plot of the average c-sensitivity (#109) versus c.
Proposed API
class SensitivityMixin(object):
def derrida_plot(self, max_c=None, transitions=None):
if max_c is None:
max_c = self.size
pass
Example Usage
from neet.boolean.examples import s_pombe
plt = s_pombe.derrida_plot()
plt.savefig('s_pombe_derrida.png')
References
Fretter C, Szejka A, Drossel B. Perturbation propagation in random and evolved Boolean networks. New J Phys. 2009;11: 033005. doi:10.1088/1367-2630/11/3/033005.
Description
A Derrida plot is a plot of the average c-sensitivity (#109) versus
c
.Proposed API
Example Usage
References