Macaulay2 » Documentation
Packages » Visualize :: visualize(Poset)
next | previous | forward | backward | up | index | toc

visualize(Poset) -- visualizes a poset in the browser

Synopsis

Description

Using JavaScript, this method creates an interactive visualization of a poset in a modern browser. While viewing the poset, the user has the ability to manipulate and run various tests. Once finished, the user can export the finished result back to the Macaulay2 session.

The workflow for this package is as follows. Once we have loaded the package, we first open a port with openPort for Macaulay2 to communicate with the browser. Once a port is established, define an object to visualize. In this example we could use the command openPort"8080" before or after we define the following poset.

i1 : P = poset {{1,2},{2,3},{3,4},{5,6},{6,7},{3,6}}

o1 = P

o1 : Poset

At this point we wish to visualize P. To do this simply execute H = visualize P and browser will open with interactive image. You can view this image in the link below.

Visualize Posets example

Once finished with a session, you can keep visualizing. For example if you were to say H = visualize P, once you ended the session, the last poset on the screen would be assigned to H. After running various computations on this poset, you can then visualize it once more with the visualize method. You can keep using this method until the port is closed with closePort or Macaulay2 is restarted.

Browser Menu Options

On the side of the browser will be several options to interact with the poset using the Posets package. Below is a brief overview of the options.

Caveat

When the poset is exported back to Macaulay2 after ending the visualization session, all vertices are represented as strings. To recover the values of these labels (for example, if they have numeric values or represent ring variables), use the command poset(value toString vertices P,value toString coveringRelations P).

See also

Ways to use this method: