You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a tableaux reasoner and wanted to plot graphs of the internal state. This library looks ideal, but it is not clear from the documentation what methods I need to provide so that graphplot can plot my data structures. I'm hesitant to solve this by exporting my data model into a third-party API for rendering, and would prefer to simply implement the necessary methods to hook it in directly.
The text was updated successfully, but these errors were encountered:
As long as your matrix implements the AbstractArray interface and behaves like a matrix it should work as far as I understood the documentation.
Though I haven't tested it.
Thanks @BeastyBlacksmith . My underlying data isn't at all like a matrix. It is a list of binary relations over data points. I ended up writing a helper method that converted that into a graph, built node and edge lables, and then wrapped a call to graphplot.
I am developing a tableaux reasoner and wanted to plot graphs of the internal state. This library looks ideal, but it is not clear from the documentation what methods I need to provide so that
graphplot
can plot my data structures. I'm hesitant to solve this by exporting my data model into a third-party API for rendering, and would prefer to simply implement the necessary methods to hook it in directly.The text was updated successfully, but these errors were encountered: