3bdd46a595cc600c8b56c045530d1901639a7b2f,pyemma/plots/networks.py,,plot_flux,#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#,435
Before Change
n = _np.shape(F)[0]
state_labels = ["A"]
if n > 2:
state_labels += list(str(i - 1) for i in range(1, n - 1))
state_labels += ["B"]
fig = plot.plot_network(
state_sizes=state_sizes, state_scale=state_scale, state_colors=state_colors,
state_labels=state_labels, arrow_scale=arrow_scale, arrow_curvature=arrow_curvature,
After Change
state_labels = _np.array([str(i) for i in range(flux.nstates)])
state_labels[_np.array(flux.A)] = "A"
state_labels[_np.array(flux.B)] = "B"
elif isinstance (state_labels, (_np.ndarray, list, tuple)):
if len(state_labels) != flux.nstates:
raise ValueError("length of state_labels({}) has to match length of states({})."
.format(len(state_labels), flux.nstates))
fig = plot.plot_network(
state_sizes=state_sizes, state_scale=state_scale, state_colors=state_colors,
state_labels=state_labels, arrow_scale=arrow_scale, arrow_curvature=arrow_curvature,
arrow_labels=arrow_labels, arrow_label_format=arrow_label_format, max_width=max_width,
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 7
Instances Project Name: markovmodel/PyEMMA
Commit Name: 3bdd46a595cc600c8b56c045530d1901639a7b2f
Time: 2017-05-24
Author: m.scherer@fu-berlin.de
File Name: pyemma/plots/networks.py
Class Name:
Method Name: plot_flux
Project Name: cmu-db/ottertune
Commit Name: 01b4ec3f531e07b8c4a32a13288c963ad8b4b843
Time: 2019-10-14
Author: dvanaken@cs.cmu.edu
File Name: server/website/website/db/base/parser.py
Class Name: BaseParser
Method Name: convert_dbms_metrics
Project Name: TheAlgorithms/Python
Commit Name: 7dff214d9ba2bd178830d06422073022def49ba3
Time: 2016-07-29
Author: me@sergeytsaplin.com
File Name: BinarySeach.py
Class Name:
Method Name: