-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
Now we have plot data and plot templates, the plot itself is a result of some command line call and defined by its options. To have some sensible plot by default we need to hardcode some things like axes in the default plot template, which is awkward.
So I propose that we should have those concepts separated codified and documented:
- plot data,
- plot templates,
- plots itself, as an application of some template to some data properly parameterized.
The issue with the first two is that they are intermixed both conceptually and codewise, I created #3818 to track that. The issue with the plot itself is that it's ephemeral - only exists as a cli command.
Providing a concept of plot, somehow saved alongside repo, will helps us show more sensible plots by default, by name, share them within a team or reuse in external tools, i.e. CI or Viewer.
This issue is open for discussion.