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
Tried to test it with the dataset used in the documentation:
var data = {
packageNames: ['Main', 'A', 'B'],
matrix: [[0, 1, 1], // Main depends on A and B
[0, 0, 1], // A depends on B
[0, 0, 0]] // B doesn't depend on A or Main
};
DependencyWheel based on above data set still shows that A depends on Main - doesn't reflect the data. Seems something is wrong.
The text was updated successfully, but these errors were encountered:
Tried to test it with the dataset used in the documentation:
var data = {
packageNames: ['Main', 'A', 'B'],
matrix: [[0, 1, 1], // Main depends on A and B
[0, 0, 1], // A depends on B
[0, 0, 0]] // B doesn't depend on A or Main
};
DependencyWheel based on above data set still shows that A depends on Main - doesn't reflect the data. Seems something is wrong.
The text was updated successfully, but these errors were encountered: