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
One can currently see the impact of different processes in the supply chain via a bar chart:
And via a Sankey graph:
Our client would like to have a more interactive contribution analysis based on an expanding tree. This would follow the standard "clickable triangle" pattern where clicking on the triangle expands impacts. The basic interface would look something like this:
Where Input A, etc., could be clicked to expand or contract.
To calculate the initial set of impacts, run graph traversal in the same way as the Sankey example. This graph traversal object should be kept in memory, so that further calculations can be done quickly. The initial calculation should use a shallow max_depth, either 1 or 2, and subsequent calculations (upon clicks) should do the same thing, but starting from the clicked node as the new functional unit.
If a tag system is chosen, then inputs should be grouped, so one would instead see something like:
┐ Reference flow├─ Tag A├─ Tag B└─ Input C
Specific tasks:
Create new NavigatorWidget class for contribution tree, and make it available in this row:
Design decision on tags system. Tags are a part of our fundamental data schema, and are designed to be categorical (quantitative values would normally be a property).
Add ability to add tags to processes, either in the existing edit interface or in a new pop-up. This interface should autocomplete against existing tag systems already in the data; we might want to cache these on the Database object instead of scanning the whole database when doing any initial load.
Implemented aggregation algorithm by tags system to the results. Handle missing tags elegantly.
Write initial graph traversal logic in new NavigatorWidget` class
Write click event handling logic in NavigatorWidget class
User acceptance and change requests
The text was updated successfully, but these errors were encountered:
Feature request
One can currently see the impact of different processes in the supply chain via a bar chart:
And via a Sankey graph:
Our client would like to have a more interactive contribution analysis based on an expanding tree. This would follow the standard "clickable triangle" pattern where clicking on the triangle expands impacts. The basic interface would look something like this:
Where
Input A
, etc., could be clicked to expand or contract.To calculate the initial set of impacts, run graph traversal in the same way as the Sankey example. This graph traversal object should be kept in memory, so that further calculations can be done quickly. The initial calculation should use a shallow
max_depth
, either 1 or 2, and subsequent calculations (upon clicks) should do the same thing, but starting from the clicked node as the new functional unit.If a
tag system
is chosen, then inputs should be grouped, so one would instead see something like:Specific tasks:
NavigatorWidget
class for contribution tree, and make it available in this row:tags
system. Tags are a part of our fundamental data schema, and are designed to be categorical (quantitative values would normally be aproperty
).Database
object instead of scanning the whole database when doing any initial load.tags
system to the results. Handle missingtags
elegantly.NavigatorWidget
classThe text was updated successfully, but these errors were encountered: