We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's say you have a DAG representing a package and its dependencies, and their dependencies after them (and so forth).
What's the easiest way to hook into TreeView to plot that dependency graph? And is there a way to make the plot interactive with clicking on nodes?
Think it would be cool if you could keep clicking packages and the dag keeps switching root nodes.
// note that dependencies only appear once in a DAG (every other appearance is removed)
[update:] basically trying to replicate JuliaLang/julia#25951 (comment)
The text was updated successfully, but these errors were encountered:
Relatively simple example is:
- Dagger - Compat - MemPool - DataStructures - OrderedCollections - StatsBase - DataAPI - Missings - SortingAlgorithms
// note that DataStructures is also in StatsBase
DataStructures
StatsBase
Sorry, something went wrong.
I think you want to use TikzGraphs.jl for this directly, instead of TreeView
No branches or pull requests
Let's say you have a DAG representing a package and its dependencies, and their dependencies after them (and so forth).
What's the easiest way to hook into TreeView to plot that dependency graph? And is there a way to make the plot interactive with clicking on nodes?
Think it would be cool if you could keep clicking packages and the dag keeps switching root nodes.
// note that dependencies only appear once in a DAG (every other appearance is removed)
[update:] basically trying to replicate JuliaLang/julia#25951 (comment)
The text was updated successfully, but these errors were encountered: