Skip to content

Latest commit

 

History

History
115 lines (69 loc) · 5.76 KB

File metadata and controls

115 lines (69 loc) · 5.76 KB
graph LR
    Statistics_Expressions["Statistics Expressions"]
    Statistics_Abstract["Statistics Abstract"]
    Statistics_Grouping["Statistics Grouping"]
    Plot_Maps_Static["Plot Maps Static"]
    Plot_Statistics_Charts["Plot Statistics Charts"]
    Plot_Accessor["Plot Accessor"]
    Plot_Statistics_Plotter["Plot Statistics Plotter"]
    Plot_Statistics_Base["Plot Statistics Base"]
    Statistics_Expressions -- "utilizes" --> Statistics_Abstract
    Statistics_Expressions -- "provides data to" --> Plot_Maps_Static
    Statistics_Expressions -- "provides data to" --> Plot_Statistics_Charts
    Statistics_Abstract -- "supports" --> Statistics_Expressions
    Statistics_Abstract -- "provides data to" --> Plot_Maps_Static
    Statistics_Abstract -- "provides data to" --> Plot_Statistics_Charts
    Statistics_Abstract -- "calls" --> Statistics_Grouping
    Statistics_Expressions -- "calls" --> Statistics_Grouping
    Plot_Maps_Static -- "retrieves data from" --> Statistics_Abstract
    Plot_Maps_Static -- "retrieves data from" --> Statistics_Expressions
    Plot_Maps_Static -- "calls" --> Plot_Statistics_Base
    Plot_Statistics_Charts -- "calls" --> Statistics_Abstract
    Plot_Statistics_Charts -- "calls" --> Statistics_Expressions
    Plot_Statistics_Charts -- "utilizes" --> Plot_Statistics_Base
    Plot_Accessor -- "delegates to" --> Plot_Maps_Static
    Plot_Accessor -- "delegates to" --> Plot_Statistics_Charts
    Plot_Accessor -- "delegates to" --> Plot_Statistics_Plotter
    Plot_Statistics_Plotter -- "utilizes" --> Plot_Statistics_Charts
    Plot_Statistics_Plotter -- "relies on data from" --> Statistics_Abstract
    Plot_Statistics_Plotter -- "relies on data from" --> Statistics_Expressions
    Plot_Statistics_Base -- "provides utilities to" --> Plot_Statistics_Charts
    Plot_Statistics_Base -- "provides utilities to" --> Plot_Maps_Static
Loading

CodeBoardingDemoContact

Details

The Results & Visualization subsystem is responsible for processing simulation and optimization outputs into meaningful statistical metrics and visual representations. It acts as the final stage in the data analysis pipeline, transforming raw results into actionable insights through various charts and geographical maps.

Statistics Expressions

This component is the core engine for calculating statistical metrics and key performance indicators (KPIs) from the network data. It defines and evaluates expressions for various statistical computations.

Related Classes/Methods:

Statistics Abstract

Serves as a foundational layer for data aggregation, filtering, and general data preparation. It provides abstract methods and structures for handling data before statistical analysis or plotting.

Related Classes/Methods:

Statistics Grouping

Offers flexible mechanisms for grouping data, which is essential for performing detailed statistical analysis across different dimensions (e.g., by bus, by component type, by time).

Related Classes/Methods:

Plot Maps Static

Dedicated to generating static geographical maps of the network topology, showing components, connections, and potentially results overlaid on a geographical context.

Related Classes/Methods:

Plot Statistics Charts

Focuses on creating various statistical charts (e.g., bar charts, line plots, heatmaps) to visualize analysis results, input data, and statistical insights.

Related Classes/Methods:

Plot Accessor

Acts as the primary user-facing entry point for accessing plotting functionalities directly from the Network object, providing a convenient API for visualization.

Related Classes/Methods:

Plot Statistics Plotter

Orchestrates the setup and execution of statistical plotting operations, often acting as an intermediary between the Plot Accessor and the specific chart generation components.

Related Classes/Methods:

Plot Statistics Base

Provides fundamental utilities, common plotting functions, and consistent styling configurations to ensure a uniform look and feel across all generated plots and maps.

Related Classes/Methods: