Skip to content

Commit

Permalink
Merge pull request #110 from funkelab/105-remove-plotly-plotting
Browse files Browse the repository at this point in the history
105 remove plotly plotting
  • Loading branch information
cmalinmayor authored Aug 13, 2024
2 parents f76a5f6 + 9b995a8 commit 825a461
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 393 deletions.
4 changes: 2 additions & 2 deletions docs/source/extending.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ object and each edge a potential link of objects between frames:

.. jupyter-execute::

from motile.plot import draw_track_graph
from motile_toolbox.visualization import draw_track_graph

draw_track_graph(graph, alpha_attribute="score", label_attribute="score")

Expand Down Expand Up @@ -94,7 +94,7 @@ model is:

.. jupyter-execute::

from motile.plot import draw_solution
from motile_toolbox.visualization import draw_solution

draw_solution(graph, solver, label_attribute="score")

Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object and each edge a potential link of objects between frames:

import motile
from motile.variables import NodeSelected, EdgeSelected
from motile.plot import draw_track_graph, draw_solution
from motile_toolbox.visualization import draw_track_graph, draw_solution


.. jupyter-execute::
Expand Down
4 changes: 2 additions & 2 deletions docs/source/learning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ object and each edge a potential link of objects between frames:

.. jupyter-execute::

from motile.plot import draw_track_graph
from motile_toolbox.visualization import draw_track_graph

draw_track_graph(graph, alpha_attribute="score", label_attribute="score")

Expand Down Expand Up @@ -144,7 +144,7 @@ Our initial weights are just a guess, let's solve...
:hide-output:

from motile.variables import NodeSelected, EdgeSelected
from motile.plot import draw_solution
from motile_toolbox.visualization import draw_solution

solver.solve()

Expand Down
2 changes: 1 addition & 1 deletion docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object and each edge a potential link of objects between frames:
.. jupyter-execute::

import motile
from motile.plot import draw_track_graph, draw_solution
from motile_toolbox.visualization import draw_track_graph, draw_solution

draw_track_graph(graph, alpha_attribute='score', label_attribute='score')

Expand Down
342 changes: 0 additions & 342 deletions motile/plot.py

This file was deleted.

Loading

0 comments on commit 825a461

Please sign in to comment.