######### Changelog ######### ********************* [1.17.0] - 2023-02-17 ********************* Added ===== - Genetic sequencing of node sequences built on `ratio-genetic-py`. See :obj:`~ragraph.analysis.sequence.genetic` and :obj:`~ragraph.analysis.sequence._genetic.genetic_sequencing` for more info. ********************* [1.16.1] - 2022-10-27 ********************* Added ===== - A convenient `all` extra to install all extras at once. ********************* [1.16.0] - 2022-07-27 ********************* Added ===== - Ways to highlight rows and/or columns in all PieMap plots. See :ref:`highlighting` in the usage documentation. ********************* [1.15.1] - 2022-06-14 ********************* Added ===== - Added an option to the :obj:`ragraph.analysis.compatibility.CompatibilityAnalysis` `interface_compatibility` that toggles whether interface checking should be a prerequisite for checking compatibility. The default is the current behavior (`True`), where compatibility is only checked for direct variant interfaces. Any two variants without a direct interface is then assumed to be compatible. Toggling that to `False` implies that any two variants should be compatible, regardless of the existence of an interface. ********************* [1.15.0] - 2022-06-08 ********************* Added ===== - New plot method to :obj:`ragraph.analysis.compatibility.CompatibilityAnalysis.plot`. - :obj:`~ragraph.plot.generic.LabelStyle` can now toggle the label shortening behavior with a `shorten` key that is `True`` by default. This is the current behavior where each label is shortened by only keeping everything after the last period `.`. You can provide a boolean toggle for this, or a custom method that takes a label string and returns the shortened label. Also available as `Style.labels.shorten`. - Updated compatibility tests to include new :obj:`~ragraph.analysis.compatibility.CompatibilityAnalysis` plot method. Fixed ===== - Fixed duplicate UUID field in Metadata. ****** 1.14.2 ****** * Hotfix to scaling. ****** 1.14.1 ****** * Added an extra ``scaling_weight`` field to the :obj:`~ragraph.plot.generic.PieMapStyle` object that scales the piecharts drawn in a piemap plot component according to a specified edge weight. Note that it stacks with every edge in a bundle between two displayed nodes by means of the product of the available values. ****** 1.14.0 ****** * Added :obj:`~ragraph.analysis.comparison.DeltaAnalysis` class for performing delta analysis on :obj:`~ragraph.graph.Graph` objects. * Added :obj:`~ragraph.analysis.comparison.SigmaAnalysis` class for performing sigma analysis on :obj:`~ragraph.graph.Graph` objects. ****** 1.13.1 ****** * Switch from a brute-force to a Binary Decision Diagram implementation as the backbone for the compatibility module. ****** 1.13.0 ****** * Added a compatibility analysis module: :obj:`ragraph.analysis.compatibility`. Usage documentation available at :ref:`compatibility`. ****** 1.12.1 ****** * Added :obj:`~ragraph.analysis.similarity.SimilarityAnalysis` class for performing a product portfolio similarity analysis. ****** 1.12.0 ****** * Updated and reorganized all dependencies into a more simplified structure. * Now, the only optional dependencies are RaESL (as extra ``esl``) and kaleido (as extra ``plot``). * Removed the obsolete API server with Connexion. It's currently unused and only burdens the package with higher maintenance. * If we'd ever need it again, we can look back at it later in the Git history. * Connexion's development is currently changing a lot as well, so we'd probably be better off starting over then. * Removed CLI as the only supported command was the API server. ****** 1.11.4 ****** * Fixup Canopy export schema key for "session" format. ****** 1.11.3 ****** * Fixup the export of labels in Canopy (de-duplicate, keep order). ****** 1.11.2 ****** * Fixup the export of weights in Canopy (force floats). ****** 1.11.1 ****** * Fixup the `$schema` key in Canopy export. ****** 1.11.0 ****** * Added methods to import and export graphs from and to https://canopy.ratio-case.nl and its corresponsing JSON schemas: :obj:`ragraph.io.canopy.from_canopy` and :obj:`ragraph.io.canopy.to_canopy`. ****** 1.10.6 ****** * Allow specification of a `symmetrize` parameter to the different Markov **clustering** algorithms that adds the transpose of a (potentially asymmetrical) matrix to create a guaranteed symmetrical matrix with respect to the diagonal. This should give more consistent clustering results while maintaining "stronger" connections between nodes that already had bi-directional edges between them. Influences :obj:`~ragraph.analysis.cluster.markov`, :obj:`~ragraph.analysis.cluster.hierarchical_markov`, and :obj:`~ragraph.analysis.heuristics.markov_gamma`. The Markov sequencing is not included, as that would not make sense at all. * Modified Markov sequencing with a `scale` toggle that modifies the inflow vector to contain the sum of the corresponding adjacency matrix's columns. To interpret this in a sequencing context: a node doesn't have to "split" its output and divide it over it's successors, but it rather delivers something that each target node should acquire fully. It is therefore the new default option (scale = True). Clustering algorithms have not been adjusted to incorporate this as that would stray too far off the original Markov clustering implementation. * Added rudimentary debugging output to analysis. The output is rather verbose and is sent on a :obj:`~ragraph.analysis.logger` named `"ragraph.analysis"`. ****** 1.10.5 ****** * Tiny bugfix when axis sort should neither sort by width or bus status (only hierarchy). ****** 1.10.4 ****** * Make :obj:`ragraph.analysis.sequence.utils.branchsort` actually respect the inplace argument. ****** 1.10.3 ****** * Add `inherit` option to the :obj:`~ragraph.plot.generic.PieMapStyle` options to display edges between descendants of nodes in the figures using PieMap components such as :obj:`~ragraph.plot.mdm` and friends. ****** 1.10.2 ****** * Add `inherit` and `loops` boolean toggles to any applicable Analysis class and therefore to all methods where applicable. ****** 1.10.1 ****** * Add an `inherit` option to the SCC algorithm. By default, it is set to `True` and makes sure any edges between descendants are taken into account, too. ****** 1.10.0 ****** * Added better control of the default sorting behavior in RaGraph MDM plots. See :ref:`axis_sort`. * Updated documentation to reflect color overrides, see :ref:`plotting`. * Improved graph slicing to include edge filtering or leaving everything blank for a full deepcopy. See :obj:`ragraph.graph.Graph.get_graph_slice`. ***** 1.9.0 ***** * Allow combined color palette overrides, e.g. both a categorical color override for a field as well as a numerical color palette. ***** 1.8.9 ***** * Add a SCC tearing sequencing algorithm. See :ref:`scc_tearing` for usage. ***** 1.8.8 ***** * Add `leafs` argument to :obj:`ragraph.sequence.utils.branchsort`. The nodes given to this argument are treated as leaf nodes and their descendants are therefore exempt from being reordered. ***** 1.8.7 ***** * Fixup a plotting issue where subplots didn't receive the plotting style options. ***** 1.8.6 ***** * Fixup a pre-processing step in branchsort analyses where root lists of length 1 were treated as cases where nothing had to be sorted. ***** 1.8.4 ***** * Add option to allow CORS. ***** 1.8.3 ***** * Refactored :obj:`ragraph.colors.get_swatchplot` into :obj:`ragraph.plot.utils.get_swatchplot`. ***** 1.8.2 ***** * Fixup cyclic import troubles. Getting a color from a palette in the plot :obj:`~ragraph.plot.generic.Style` is now available under the :obj:`style.palettes.get_categorical_color` and :obj:`style.palettes.get_numerical_color` methods. ***** 1.8.1 ***** * Refactor :obj:`ragraph.plot.colors` into :obj:`ragraph.colors`. This allows it to be used even if the plotting dependencies aren't present. ***** 1.8.0 ***** * Initial merge of API v2. ***** 1.7.4 ***** * Added more DSM datasets. ***** 1.7.3 ***** * Pipeline and versioning updates. ***** 1.7.2 ***** * Dependency updates. ***** 1.7.1 ***** * Addition of the `ragraph.generic.PieMapStyle.customhoverkeys` attribute. This attribute allows a user to provide a list of keys that indicate which information stored within the `ragraph.Edge.annotations`] object is to be displayed on hover within a `ragraph.plot.PieMap` plot. ***** 1.7.0 ***** * Addition of the `ragraph.plot.dmm` plot function for visualizing mapping matrices. * Addition of the `row_col_numbers` argument to the `ragraph.plot.mdm` and `ragraph.plot.dsm` plot functions for adding row and column numbers to the figures. ***** 1.6.1 ***** * Several small bug fixes regarding the scaling of figures when adding custom plot components. * Added usage docs for `ragraph.plot`. ***** 1.6.0 ***** * Added a `ragraph.analysis.sequencing.axis` sequencing 'algorithm' that sorts nodes like we typically want them to on matrix axis as a replacement for the utils floating around. That means, they get sorted by node kind first (and hierarchy) primarily, followed by a sorting of "sibling" nodes where buses and larger clusters (in terms of displayed leaf nodes) are put first. ***** 1.5.0 ***** * Added UUID generation to the Metadata class. This means that we tag every :obj:`~ragraph.node.Node`, :obj:`~ragraph.edge.Edge`, or :obj:`~ragraph.graph.Graph` instance with a unique code to track them over time. This is especially useful for the API and future referencing of identical objects. * This change affects the ``.json_dict`` property of these objects to work with these UUIDs (as strings) instead of the object names to reference them. * UUIDs are now generated as an incrementing integer during test runs such that we generate the same identical (and easily identifiable) in each run. Note that they are very much random in "real-life" situations. * Removed soon-to-be-deprecated API v1 tests as bringing them up-to-par would be a waste of time. ***** 1.4.5 ***** * Improved scaling of large MDM plots. ***** 1.4.4 ***** * Bug fix. :obj:`ragraph.plot.mdm` now supports plotting graphs with more than ten edge labels out of the box. * Bug fix. :obj:`ragraph.plot.mdm` legend plotting no longer crashes on empty list of edges. ***** 1.4.3 ***** * Some convenience fixups to the :obj:`ragraph.api` module. * The CLI now supports arguments via environment variables. They are of the form of ``RAGRAPH_{COMMAND}_{OPTION}``. ***** 1.4.2 ***** * Bug fix of :obj:`ragraph.plot.components.piemap.PieMap` regarding the visualization of matrices that contain one or more busareas. * Additon of the ``sort`` keyword to :obj:`ragraph.plot.mdm` which defines whether the provided leaf list should be sorted according to the hierarchical node structure and different node domains. Defaults to ``True``. * Changed the default value of the keyword ``show`` of :obj:`ragraph.plot.mdm` to ``False``. ***** 1.4.1 ***** * Bug fix. The type of :obj:`ragraph.plot.generic.Palettes.fields` is updated to ``Dict[str, Union[str, List[str]]]``. As such, one can providing a mapping of field names to a hex-colorcodes or to a lists of hex-colorcodes: * A single colorcode is to be used when one wants to set the color of an edge label. * A list of colorcodes is to be used when one wants to provide a colormap for an edge weight. ***** 1.4.0 ***** * Added a rudimentary plotting module under :obj:`ragraph.plot`. The only currently built-in plot type is the :obj:`ragraph.plot.mdm`, but groundwork is in place with re-usable plot components under :obj:`ragraph.plot.components` and the color palette management under :obj:`ragraph.plot.colors`. The usage manual should follow soon. ***** 1.3.2 ***** * Changed internal backend of :obj:`ragraph.io.esl.from_esl` to :obj:`raesl.compile.to_graph`. This changes calls to :obj:`~ragraph.io.esl.from_esl` slightly since it now requires positional arguments ``*paths`` instead of a list of paths. ***** 1.3.1 ***** * Fixed an issue where the ``ruamel.yaml`` dependency is installed as ``ruamel_yaml``. ***** 1.3.0 ***** * New :obj:`ragraph.generic.Metadata` model for generic classes * Metadata standardizes name, kind, labels, weights, and annotations. * Applied to :obj:`ragraph.node.Node`, :obj:`ragraph.edge.Edge` and :obj:`ragraph.graph.Graph` classes. * Annotations is now a derived Mapping class. * Updated all IO classes to support this. * Applied a workaround to the API to support this, too. ***** 1.2.2 ***** * Fixups to the :obj:`ragraph.generic.Mapping` class and its usage in the plot module. ***** 1.2.1 ***** * Added :obj:`ragraph.graph.Graph.get_edge_selection` and :obj:`ragraph.graph.Graph.get_node_and_edge_selection` methods to select nodes and edges for plotting purposes. ***** 1.2.0 ***** * Added a :obj:`ragraph.generic.Mapping` class that will mainly be featured in future endeavours featuring plotting functionality. Works as a dictionary whose keys are also properties of the object. Moreover, you can include default values and optional validators for certain keys/properties of the object. It's intended as a base class to derive mappings from for a specific purpose. ***** 1.1.0 ***** * Simplified the use of the :obj:`ragraph.analysis._classes.Analysis` classes and their corresponding wrappers by moving the latter into the former. The publicly available methods are now the wrapped ones that check the parameter input. ***** 1.0.1 ***** * Added better analysis descriptions through their ``repr`` and ``str`` representations. For help regarding an analysis, simply look at its repr or string how to call it. * Made branchsort more convenient by allowing supplying Analysis instances, too. ***** 1.0.0 ***** * Apply new Python project template. * Set algorithm specific modules as private modules. Regular usage should refer to the category specific imported ones. This means that :obj:`from ragraph.analyis.bus import gamma` from now on undeniably imports the function and not the submodule (which is now named :obj:`ragraph.analysis.bus._gamma`.) ***** 0.3.1 ***** * Fix the Climate Control case to correspond to the reference document by Pimmler. Make sure to use it with an edge weight filter set to ``"adjacency"`` for algorithms that require nonnegative input. * Tests are updated accordingly and an additional test checks whether relevant datasets are actually symmetric. ***** 0.3.0 ***** * More sophisticated Archimate3.0 export via an ``archimate`` dictionary in our Annotations object. You can now set the element type and documentation of each element using :obj:`Annotations.archimate["type"]` and :obj:`Annotations.archimate["documentation"]`. For all possible types, please refer to https://www.opengroup.org/xsd/archimate/. ***** 0.2.0 ***** * Added an Archimate3.0 XML compatible export for Graph objects. See https://www.opengroup.org/xsd/archimate/ for more info. ***** 0.1.2 ***** * Fixed loading JSON files with set edge IDs. It now sets the last used edge ID number correctly. ***** 0.1.1 ***** * Minor bug fix for edge ID generation. ***** 0.1.0 ***** * Added XML I/O support using the XML Metadata Interchange format (XMI) in :obj:`ragraph.io.xml`. ***** 0.0.1 ***** Initial version from preceding projects ``graph_io``, ``graph_analysis``, ``ratio_datasets``, ``architecture`` and ``ratio_backend``.