-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Visualize case + ensemble members #49
Comments
I concur! This would be neat. My question is "how do we accomplish this" :) ? |
The visualization part is simple (via py-graphviz) once we have the graph. So, how do we construct the graph and what level of granularity should we aim for? |
I think to start, it would be helpful to have a "default" of case --> member_id --> stream --> list of variables maybe? What is required for py-graphviz to construct the "graph"? A dictionary? |
A dict of dicts is the simplest interface but you could use the built-in Graph object, too. Here are some examples: https://pygraphviz.github.io/documentation/latest/auto_examples/index.html |
It would be neat to have something similar to a dask task graph, similar to this
for the catalog building (helping to visualize experiments and their branches) - example would be the CESM-LE, where we could have the experiment, number of ensemble members, components within each, and streams. This be helpful when visualizing what is all in the catalog.
The text was updated successfully, but these errors were encountered: