Even newer stat scripts - #457
Merged
Merged
Conversation
Contributor
Author
|
DCO Summary |
sschleemilch
reviewed
Jul 8, 2025
| write_csv(types_rows, types_output) | ||
|
|
||
| # Generate statistics if requested | ||
| if stats_sankey or stats_piechart: |
Collaborator
There was a problem hiding this comment.
Suggested change
| if stats_sankey or stats_piechart: | |
| if stats_requested: |
| add_rows(types_rows, datatype_tree, with_instance_column) | ||
| write_csv(types_rows, types_output) | ||
|
|
||
| # Generate statistics if requested |
Collaborator
There was a problem hiding this comment.
Suggested change
| # Generate statistics if requested |
Collaborator
|
MoM:
|
Giaccomole
force-pushed
the
even-newer-stat-scripts
branch
6 times, most recently
from
July 22, 2025 09:07
141d389 to
e24e8e2
Compare
Add comprehensive statistics export capabilities including: - Pie chart statistics generation - Sankey diagram data export - Radial tree visualization support - CLI options for statistics file outputs - Integration with existing CSV export workflow This enables advanced data visualization and analysis of VSS data structures. Signed-off-by: Orhun Ucak <orhunucak@gmail.com>
Giaccomole
force-pushed
the
even-newer-stat-scripts
branch
from
July 22, 2025 09:16
e24e8e2 to
41bc45b
Compare
sschleemilch
approved these changes
Jul 22, 2025
Collaborator
|
MoM:
|
Collaborator
|
Anything more that needs to be done before merge @Giaccomole ? |
Contributor
Author
|
I think we are set. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Now i carried the stat generation to stats_utils.py and created --stats-sankey --stats-radial and --stats-piechart to the CLI options.